howler-sentinel-plugin 0.2.0.151__tar.gz → 0.2.0.169__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/PKG-INFO +4 -2
  2. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/pyproject.toml +1 -1
  3. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/utils/tenant_utils.py +1 -1
  4. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/LICENSE +0 -0
  5. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/README.md +0 -0
  6. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/__init__.py +0 -0
  7. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/actions/azure_emit_hash.py +0 -0
  8. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/actions/send_to_sentinel.py +0 -0
  9. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/actions/update_defender_xdr_alert.py +0 -0
  10. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/actions/update_defender_xdr_incident.py +0 -0
  11. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/config.py +0 -0
  12. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/manifest.yml +0 -0
  13. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/mapping/sentinel_incident.py +0 -0
  14. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/mapping/xdr_alert.py +0 -0
  15. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/mapping/xdr_alert_evidence.py +0 -0
  16. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/odm/__init__.py +0 -0
  17. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/odm/hit.py +0 -0
  18. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/odm/models/sentinel.py +0 -0
  19. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/routes/__init__.py +0 -0
  20. {howler_sentinel_plugin-0.2.0.151 → howler_sentinel_plugin-0.2.0.169}/sentinel/routes/ingest.py +0 -0
@@ -1,8 +1,9 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: howler-sentinel-plugin
3
- Version: 0.2.0.151
3
+ Version: 0.2.0.169
4
4
  Summary: A howler plugin for integration with Microsoft's Sentinel API
5
5
  License: MIT
6
+ License-File: LICENSE
6
7
  Author: CCCS
7
8
  Author-email: analysis-development@cyber.gc.ca
8
9
  Requires-Python: >=3.9.17, <4.0
@@ -12,6 +13,7 @@ Classifier: Programming Language :: Python :: 3.10
12
13
  Classifier: Programming Language :: Python :: 3.11
13
14
  Classifier: Programming Language :: Python :: 3.12
14
15
  Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
15
17
  Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
16
18
  Description-Content-Type: text/markdown
17
19
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "howler-sentinel-plugin"
3
- version = "0.2.0.151"
3
+ version = "0.2.0.169"
4
4
  description = "A howler plugin for integration with Microsoft's Sentinel API"
5
5
  authors = [{ name = "CCCS", email = "analysis-development@cyber.gc.ca" }]
6
6
  license = { text = "MIT" }
@@ -16,7 +16,7 @@ def skip_cache(*args):
16
16
 
17
17
  @cache.memoize(15 * 60, unless=skip_cache)
18
18
  def get_token(tenant_id: str, scope: str) -> Optional[str]:
19
- """Get a borealis token based on the current howler token"""
19
+ """Get a sentinel token based on the current howler token"""
20
20
  from sentinel.config import config
21
21
 
22
22
  token = None