contentctl 5.5.7__py3-none-any.whl → 5.5.8__py3-none-any.whl

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 (65) hide show
  1. contentctl/actions/deploy_acs.py +5 -3
  2. contentctl/actions/detection_testing/DetectionTestingManager.py +3 -3
  3. contentctl/actions/detection_testing/GitService.py +4 -4
  4. contentctl/actions/detection_testing/generate_detection_coverage_badge.py +3 -3
  5. contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructure.py +15 -17
  6. contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructureContainer.py +9 -8
  7. contentctl/actions/detection_testing/progress_bar.py +2 -1
  8. contentctl/actions/detection_testing/views/DetectionTestingViewCLI.py +4 -3
  9. contentctl/actions/detection_testing/views/DetectionTestingViewFile.py +4 -2
  10. contentctl/actions/detection_testing/views/DetectionTestingViewWeb.py +7 -7
  11. contentctl/actions/doc_gen.py +1 -2
  12. contentctl/actions/release_notes.py +2 -2
  13. contentctl/actions/reporting.py +3 -3
  14. contentctl/actions/test.py +2 -3
  15. contentctl/actions/validate.py +1 -1
  16. contentctl/api.py +7 -6
  17. contentctl/contentctl.py +1 -1
  18. contentctl/enrichments/attack_enrichment.py +1 -1
  19. contentctl/enrichments/cve_enrichment.py +9 -6
  20. contentctl/enrichments/splunk_app_enrichment.py +5 -4
  21. contentctl/helper/link_validator.py +7 -7
  22. contentctl/helper/splunk_app.py +6 -6
  23. contentctl/helper/utils.py +8 -8
  24. contentctl/input/director.py +3 -2
  25. contentctl/input/new_content_questions.py +1 -0
  26. contentctl/input/yml_reader.py +2 -2
  27. contentctl/objects/abstract_security_content_objects/detection_abstract.py +1 -1
  28. contentctl/objects/alert_action.py +4 -2
  29. contentctl/objects/atomic.py +8 -5
  30. contentctl/objects/base_test.py +1 -1
  31. contentctl/objects/base_test_result.py +2 -2
  32. contentctl/objects/baseline_tags.py +7 -6
  33. contentctl/objects/config.py +5 -5
  34. contentctl/objects/correlation_search.py +156 -139
  35. contentctl/objects/dashboard.py +1 -1
  36. contentctl/objects/deployment_email.py +1 -0
  37. contentctl/objects/deployment_notable.py +3 -1
  38. contentctl/objects/deployment_phantom.py +1 -0
  39. contentctl/objects/deployment_rba.py +1 -0
  40. contentctl/objects/deployment_scheduling.py +1 -0
  41. contentctl/objects/deployment_slack.py +1 -0
  42. contentctl/objects/detection_stanza.py +1 -1
  43. contentctl/objects/integration_test.py +2 -2
  44. contentctl/objects/investigation_tags.py +6 -3
  45. contentctl/objects/manual_test.py +2 -2
  46. contentctl/objects/playbook_tags.py +5 -2
  47. contentctl/objects/risk_analysis_action.py +1 -1
  48. contentctl/objects/savedsearches_conf.py +3 -3
  49. contentctl/objects/story_tags.py +1 -1
  50. contentctl/objects/test_group.py +2 -2
  51. contentctl/objects/throttling.py +2 -1
  52. contentctl/objects/unit_test.py +2 -2
  53. contentctl/objects/unit_test_baseline.py +2 -1
  54. contentctl/objects/unit_test_result.py +4 -2
  55. contentctl/output/conf_output.py +2 -2
  56. contentctl/output/conf_writer.py +5 -5
  57. contentctl/output/doc_md_output.py +0 -1
  58. contentctl/output/jinja_writer.py +1 -0
  59. contentctl/output/json_writer.py +1 -1
  60. contentctl/output/yml_writer.py +3 -2
  61. {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/METADATA +3 -3
  62. {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/RECORD +65 -65
  63. {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/LICENSE.md +0 -0
  64. {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/WHEEL +0 -0
  65. {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/entry_points.txt +0 -0
@@ -339,7 +339,7 @@ class ConfWriter:
339
339
  f"Name:{obj.name if not isinstance(obj, CustomApp) else obj.title}\n"
340
340
  f"Type {type(obj)}: \n"
341
341
  f"Output File: {app_output_path}\n"
342
- f"Error: {str(e)}\n"
342
+ f"Error: {e!s}\n"
343
343
  )
344
344
 
345
345
  output_path.parent.mkdir(parents=True, exist_ok=True)
@@ -376,7 +376,7 @@ class ConfWriter:
376
376
  try:
377
377
  _ = configparser.RawConfigParser().read(path)
378
378
  except Exception as e:
379
- raise Exception(f"Failed to validate .conf file {str(path)}: {str(e)}")
379
+ raise Exception(f"Failed to validate .conf file {path!s}: {e!s}")
380
380
 
381
381
  @staticmethod
382
382
  def validateXmlFile(path: pathlib.Path):
@@ -390,7 +390,7 @@ class ConfWriter:
390
390
  with open(path, "r") as xmlFile:
391
391
  _ = ET.fromstring(xmlFile.read())
392
392
  except Exception as e:
393
- raise Exception(f"Failed to validate .xml file {str(path)}: {str(e)}")
393
+ raise Exception(f"Failed to validate .xml file {path!s}: {e!s}")
394
394
 
395
395
  @staticmethod
396
396
  def validateManifestFile(path: pathlib.Path):
@@ -405,9 +405,9 @@ class ConfWriter:
405
405
  _ = json.load(manifestFile)
406
406
  except Exception as e:
407
407
  raise Exception(
408
- f"Failed to validate .manifest file {str(path)} (Note that .manifest files should contain only valid JSON-formatted data): {str(e)}"
408
+ f"Failed to validate .manifest file {path!s} (Note that .manifest files should contain only valid JSON-formatted data): {e!s}"
409
409
  )
410
410
  except Exception as e:
411
411
  raise Exception(
412
- f"Failed to validate .manifest file {str(path)} (Note that .manifest files should contain only valid JSON-formatted data): {str(e)}"
412
+ f"Failed to validate .manifest file {path!s} (Note that .manifest files should contain only valid JSON-formatted data): {e!s}"
413
413
  )
@@ -1,6 +1,5 @@
1
1
  import os
2
2
  import sys
3
-
4
3
  from pathlib import Path
5
4
 
6
5
  from contentctl.output.jinja_writer import JinjaWriter
@@ -1,5 +1,6 @@
1
1
  import os
2
2
  from typing import Any
3
+
3
4
  from jinja2 import Environment, FileSystemLoader
4
5
 
5
6
 
@@ -27,5 +27,5 @@ class JsonWriter:
27
27
 
28
28
  except Exception as e:
29
29
  raise Exception(
30
- f"Error serializing object to Json File '{file_path}': {str(e)}"
30
+ f"Error serializing object to Json File '{file_path}': {e!s}"
31
31
  )
@@ -1,6 +1,7 @@
1
- import yaml
1
+ from enum import IntEnum, StrEnum
2
2
  from typing import Any
3
- from enum import StrEnum, IntEnum
3
+
4
+ import yaml
4
5
 
5
6
  # Set the following so that we can write StrEnum and IntEnum
6
7
  # to files. Otherwise, we will get the following errors when trying
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: contentctl
3
- Version: 5.5.7
3
+ Version: 5.5.8
4
4
  Summary: Splunk Content Control Tool
5
5
  License: Apache 2.0
6
6
  Author: STRT
@@ -21,10 +21,10 @@ Requires-Dist: pycvesearch (>=1.2,<2.0)
21
21
  Requires-Dist: pydantic (>=2.9.2,<2.10.0)
22
22
  Requires-Dist: pygit2 (>=1.15.1,<2.0.0)
23
23
  Requires-Dist: questionary (>=2.0.1,<3.0.0)
24
- Requires-Dist: requests (>=2.32.3,<2.33.0)
24
+ Requires-Dist: requests (>=2.32.4)
25
25
  Requires-Dist: rich (>=14.0.0,<15.0.0)
26
26
  Requires-Dist: semantic-version (>=2.10.0,<3.0.0)
27
- Requires-Dist: setuptools (>=69.5.1,<81.0.0)
27
+ Requires-Dist: setuptools (>=80.9.0)
28
28
  Requires-Dist: splunk-sdk (>=2.0.2,<3.0.0)
29
29
  Requires-Dist: tqdm (>=4.66.5,<5.0.0)
30
30
  Requires-Dist: tyro (>=0.9.2,<0.9.23)
@@ -1,104 +1,104 @@
1
1
  contentctl/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
2
2
  contentctl/actions/build.py,sha256=C95i2MhxHkNJb9IdVp_MnRtuoowXxc5Gu-0xK24JEeU,4036
3
- contentctl/actions/deploy_acs.py,sha256=w3OqO8GXzB_5zHrE8lDYbadAy4Etw7F2o84Gze74RY0,3264
4
- contentctl/actions/detection_testing/DetectionTestingManager.py,sha256=94apBwLkXWsgdLSvE9f_KqCfQSdmDChMncMcsEdY1A8,10974
5
- contentctl/actions/detection_testing/GitService.py,sha256=HU1fKkb5463weqSZ3LrTVHtNrzBH_f5pE99-zD2j1A8,11345
6
- contentctl/actions/detection_testing/generate_detection_coverage_badge.py,sha256=bGUVKjKv96lTw1GZ4Kw1JX-Yicu4aOJWm-IL524e9HI,2302
7
- contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructure.py,sha256=Th2QFQeGL3a-aUp83fUCm0aApQIcXjspetNj920fd34,60776
8
- contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructureContainer.py,sha256=qYWgRW7uc-15jzwv5xSUF2xyLDmtyGyMfuXkQK9j-aM,7221
3
+ contentctl/actions/deploy_acs.py,sha256=TtDIrpZm3mMNpbs8yaritnS-kLPnOtJ2T2M9r2QwKL0,3263
4
+ contentctl/actions/detection_testing/DetectionTestingManager.py,sha256=zdJM_4LP31PlexLdoaKLf_XBrVFoGBwpVm566uAO1d4,10965
5
+ contentctl/actions/detection_testing/GitService.py,sha256=sp2ZyV_gpyTjonh48obNzbCC1LDni8F2nN7ZPn2LqnY,11333
6
+ contentctl/actions/detection_testing/generate_detection_coverage_badge.py,sha256=fCxnVfbOl0yuwPBzbUwMyNHxMuIcZnWBmcvMLqQ8cMM,2293
7
+ contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructure.py,sha256=VlfleRWBD5GD3s9xSKfUjSqaSpP8w_12mmJ7fZJ58tg,60693
8
+ contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructureContainer.py,sha256=1xE4ucsdpmU7MfeTrep9bZWvyTHr6q6F1YaUPvmv1QE,7210
9
9
  contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructureServer.py,sha256=Q1ZfCYOp54O39bgTScZMInkmZiU-bGAM9Hiwr2mq5ms,370
10
- contentctl/actions/detection_testing/progress_bar.py,sha256=UrpNCqxTmQ4hfoRZgxPJ1xvDVwMrTq0UnotdryHN0gM,3232
10
+ contentctl/actions/detection_testing/progress_bar.py,sha256=JaZ3Q8oaD61rUAN1QoBJujwf49iPbw8dysQmf1mp1qY,3233
11
11
  contentctl/actions/detection_testing/views/DetectionTestingView.py,sha256=gSrLNR8Nz-YYsXunWLRn53UH7TeQugDKjnDLXy4cL6M,7466
12
- contentctl/actions/detection_testing/views/DetectionTestingViewCLI.py,sha256=kvMP4G2tLUZPM6AFHO6KrlkjWBNaHmEoke5qxS7XBws,2238
13
- contentctl/actions/detection_testing/views/DetectionTestingViewFile.py,sha256=G-6YqBtj0R1A9eiPrgHP2yvUMm7H8wopTBYjxIEIl8g,1090
14
- contentctl/actions/detection_testing/views/DetectionTestingViewWeb.py,sha256=CXV1fByf3J-Jc4D9U6jgWSaUhNzjcMpvEgRMuusF2vU,4740
15
- contentctl/actions/doc_gen.py,sha256=P2-RYsJoW-QuhAkSpOQespDLJBC-4Cq3-XGTmadK8Ys,936
12
+ contentctl/actions/detection_testing/views/DetectionTestingViewCLI.py,sha256=yTZwqhOyqEzn9KYSnllSRZouiOWpu8iw_7nSrkw9YQQ,2239
13
+ contentctl/actions/detection_testing/views/DetectionTestingViewFile.py,sha256=H0gjjnBoeFecZfy-pcwgkhkdjTcG25QwF7CyBzTkMoE,1092
14
+ contentctl/actions/detection_testing/views/DetectionTestingViewWeb.py,sha256=UY1cbXC1-CR2ZUNuQ-c2sU-epvCmZs0NH6DeZxSzDzA,4717
15
+ contentctl/actions/doc_gen.py,sha256=617GF3R7HrRJzLZ1L2h8MYli41pWIgYuXkHRDm8kH-M,935
16
16
  contentctl/actions/initialize.py,sha256=KXVUyjLMS7yE34wd2odyj5pVXyc_eOlvH_d7LzgR_Bc,4238
17
17
  contentctl/actions/inspect.py,sha256=ER1CJZk5ls4bithhDimXmBJepQ6ha1Ns-D2z-AZUdcQ,19991
18
18
  contentctl/actions/new_content.py,sha256=xs0QvHzlrf0g-EgdUJTkdDdFaA-uEGmzMTixDt6NcTY,8212
19
- contentctl/actions/release_notes.py,sha256=rrloomsLBfl53xpjqDez6RgHU5AE4Gb9ASrivGbYYVs,17122
20
- contentctl/actions/reporting.py,sha256=GF32i7sHdc47bw-VWSW-nZ1QBaUl6Ni1JjV5_SOyiAU,1660
21
- contentctl/actions/test.py,sha256=ftZazqoqv7bLNhyW23aRnDpetG9zltS8wr4Xq9Hls0k,6268
22
- contentctl/actions/validate.py,sha256=teqRVxNlUgzDvKQm-sXb05TST05duA2-NhJOzNxlBTw,6152
23
- contentctl/api.py,sha256=6s17vNOW1E1EzQqOCXAa5uWuhwwShu-JkGSgrsOFEMs,6329
24
- contentctl/contentctl.py,sha256=Wpy5GmgQIVoWs9PBDDKS0E1U2810J8WEfzfxckMGB-c,11791
25
- contentctl/enrichments/attack_enrichment.py,sha256=z9OCqtvkaIOZ0tgvUD6-1vlrlZ0itMPbFPLwSlxXDl4,6919
26
- contentctl/enrichments/cve_enrichment.py,sha256=TsZ52ef2njt19lPf_VyclY_-5Z5iQ1boVOAxFbjGdSQ,2431
27
- contentctl/enrichments/splunk_app_enrichment.py,sha256=Xynxjjkqlw0_RtQ1thGSFwy1I3HdmPAJmNKZezyqniU,3419
28
- contentctl/helper/link_validator.py,sha256=kzEi2GdncPWSi-UKNerXm2jtTJfFQ5goS9pqyAz5U5c,7427
19
+ contentctl/actions/release_notes.py,sha256=JTQWAxAzGCa1sWR7TR_TfvqHfenjuR7NSNqFogDDowk,17118
20
+ contentctl/actions/reporting.py,sha256=zTh9RvqSZk8MmY2UaK3Hen3R7xCnmkHxmYoOzheQ-rk,1657
21
+ contentctl/actions/test.py,sha256=bt6iE8NSP9Dr9uUrk8XATKktTqCUGX7bitMFgAp63eg,6228
22
+ contentctl/actions/validate.py,sha256=tsUxfss_3p8Qr9G5YS42bxZD0-_1IQPCDZ6bd1vn6QI,6149
23
+ contentctl/api.py,sha256=HycPkicd5CMAesZP35-F69rcwxiuiXJfXqsoIqoqc9k,6321
24
+ contentctl/contentctl.py,sha256=lgGF2RU_EOuoxH49W07JuRjzlcyAfDQW546wRZ3YBjg,11788
25
+ contentctl/enrichments/attack_enrichment.py,sha256=8SSsA4OyOkG9yX5PSowWDHsv4Umao2phMwDPqkc5SYI,6916
26
+ contentctl/enrichments/cve_enrichment.py,sha256=aOnqoj0xbzAk5yPo6L54pWqTQEfEGfYMgOOxKwQj6Vk,2435
27
+ contentctl/enrichments/splunk_app_enrichment.py,sha256=aPXgWr6xDh7kkaWrTiZWH7Jaf761WPwhmA5PnQogTxw,3417
28
+ contentctl/helper/link_validator.py,sha256=pfPzgU3tB_xyXI-Xv9UoOzbYirFNSTx-ALOTJ390f3g,7427
29
29
  contentctl/helper/logger.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- contentctl/helper/splunk_app.py,sha256=Zq_C9rjNVqCjBNgm-5CWdBpXyeX5jSpbE-QTGptEZlk,14571
31
- contentctl/helper/utils.py,sha256=1_6cbvvbPXWxym3ZhRhL18ttmXLXiHbavpXAkROtGcg,21154
32
- contentctl/input/director.py,sha256=Em7ZwYdIapgr7Qd--uX6UxkeSyT1oxwyY0pius2Wbqc,17431
33
- contentctl/input/new_content_questions.py,sha256=z2C4Mg7-EyxtiF2z9m4SnSbi6QO4CUPB3wg__JeMXIQ,4067
34
- contentctl/input/yml_reader.py,sha256=L27b14_xXQYypUV1eAzZrfMtwtkzAZx--6nRo3RNZnE,2729
35
- contentctl/objects/abstract_security_content_objects/detection_abstract.py,sha256=bvX3iDQvR7BI1KIgKFBbyX7QkijhPANo9GzBCMVwtm8,46905
30
+ contentctl/helper/splunk_app.py,sha256=S2Awzgh2OBYOUs7zj0_GsMtpuREzL5f0YvV-6czi5BA,14559
31
+ contentctl/helper/utils.py,sha256=rmVglMLYz0hzoUT2vW7-HKJlOy7XVSn0Nrll7svE-Pk,21130
32
+ contentctl/input/director.py,sha256=NB1uUbQaWl_4iSHiQ4nKc_TcTsj4wyrPBLk2KpKUdqM,17466
33
+ contentctl/input/new_content_questions.py,sha256=uAQhNFFuOv94iTfmOCcQUipCA6cDC2C-zuL-5oMqGBU,4068
34
+ contentctl/input/yml_reader.py,sha256=WBzjKvVfEe-6GTBm7W4EpOfHxtFoDzB2Ntu6NO-xOLk,2723
35
+ contentctl/objects/abstract_security_content_objects/detection_abstract.py,sha256=XHI-NuctTVP3k1LsdWaa_3oRLlJvlRLuxC-n-H-5cqM,46904
36
36
  contentctl/objects/abstract_security_content_objects/security_content_object_abstract.py,sha256=99SVqm5IAUlrcUim-Psc7wPgzQsL37zoBpD7m1nfBwM,34552
37
- contentctl/objects/alert_action.py,sha256=iEvdEOT4TrTXT0z4rQ_W5v79hPJpPhFPSzo7TuHDxwA,1376
37
+ contentctl/objects/alert_action.py,sha256=nvZbIs4WPvPzwswchDm9IiDOCVdeXG-eAesM8PU1gRQ,1378
38
38
  contentctl/objects/annotated_types.py,sha256=xR4EKvdOpNDEt0doGs8XjxCzKK99J2NHZgHFAmt7p2c,424
39
- contentctl/objects/atomic.py,sha256=5nl-JhZnymadi8B8ZEJ8l80DnpvjG-OlRxUjVKR6ffY,7341
39
+ contentctl/objects/atomic.py,sha256=iokNUkAzNsH4bqDh2yrm09nLmhsJL4wcmy1He0gfWwI,7341
40
40
  contentctl/objects/base_security_event.py,sha256=VxfsMuu1IV0uKutEkqowEZRbXORmu51VKCjHC-KUbeo,890
41
- contentctl/objects/base_test.py,sha256=JG6qlr7xe9P71n3CzKOro8_bsmDQGYDfTG9YooHQSIE,1105
42
- contentctl/objects/base_test_result.py,sha256=TYYzTPKWqp9rHTebWoid50uxAp_iALZouril4sFwIcA,5197
41
+ contentctl/objects/base_test.py,sha256=rvMH9F_Hjfb-8Y3aM2SmIZTS-uuPEU8UN6EmoEnxSnc,1105
42
+ contentctl/objects/base_test_result.py,sha256=_C-1p2FxzKKIyPvI94LY1oFJiGaSNJYkhx-yyBV823Q,5197
43
43
  contentctl/objects/baseline.py,sha256=EMcuz_9sVgOFh3YCj871GSAA6v3FIkRTf90-LAHq-J0,3700
44
- contentctl/objects/baseline_tags.py,sha256=Eomy8y3HV-E6Lym5B5ZZTtsmQJYi6Jd4y8GZpTWGYgQ,1643
45
- contentctl/objects/config.py,sha256=3sJN48BuWXsCRjrdYyHTjZnUmVHGt9aW3_QaMBaghRw,57953
44
+ contentctl/objects/baseline_tags.py,sha256=SkGlsfigaARss3itHOgWnKhRDEB6NX8bMhfovrBUmhk,1609
45
+ contentctl/objects/config.py,sha256=la0mUk1183ZD0gav7bGekhJxj4AOjn8hF5p7jwNqdhM,57938
46
46
  contentctl/objects/constants.py,sha256=VwwQtJBGC_zb3ukjb3A7P0CwAlyhacWiXczwAW5Jiog,5466
47
47
  contentctl/objects/content_versioning_service.py,sha256=BDk_TV1PTVoXpPcUxqTLa5_bjkfOs9PFYgqTuzOS9UI,20566
48
- contentctl/objects/correlation_search.py,sha256=tvcFeHGFRyZso50KHsEVCjTmHh3rHDegcfqaD-TjCFg,51473
49
- contentctl/objects/dashboard.py,sha256=owp-bYVagmSHUpVyOHgGtAEaKFSHAXN7kDhYqs09H_g,4998
48
+ contentctl/objects/correlation_search.py,sha256=rcgO0jIJgSFFOR3JXeQLwab4RZuChQOYhoGDurcHXkQ,51062
49
+ contentctl/objects/dashboard.py,sha256=wdNCIC1MExvpsB_EyPY9ZDo9Xu9V5WDI6wkunW0fTdk,4995
50
50
  contentctl/objects/data_source.py,sha256=O58GArXVlflz3dCtVOn96Ubyi5_ekSC1N9LuveQNws4,2019
51
51
  contentctl/objects/deployment.py,sha256=OctNayxFPRvrQtTklAKgfjCXFKOspD19swLj0hi6dWE,3323
52
- contentctl/objects/deployment_email.py,sha256=_Sdr_BNjvXECiFonRHLkiOrIQp3slnUaERbptqRbD0Q,206
53
- contentctl/objects/deployment_notable.py,sha256=j5AniTRDcw32El5H91qKOXDVZvUYxnIuM4Zzlhrm9cM,258
54
- contentctl/objects/deployment_phantom.py,sha256=Qs9UH3pYe2M3evLLgn5FblTe28QH1QojVaBGM_Ydvjw,261
55
- contentctl/objects/deployment_rba.py,sha256=n_v79NhcLYHyABceKsI_iEziWhp3uNrqxIUrC8tdjD4,184
56
- contentctl/objects/deployment_scheduling.py,sha256=PbyAeIEV6ShHuwfzF4LtGrv6tNt1cwNdl-VDQLj0rE8,257
57
- contentctl/objects/deployment_slack.py,sha256=pC8-BB4qOD5fUqUi7Oj2Tre7-kKVqW2xEvCF7tZENQ4,194
52
+ contentctl/objects/deployment_email.py,sha256=pn3t_bhttL9A7lmMm0j_uQ4tP_evj8b3unB75kOiG2U,207
53
+ contentctl/objects/deployment_notable.py,sha256=ug-hEX6QLr-pQ53-g3e-wJUOnW6_GrmwTAGKyNnI9y8,260
54
+ contentctl/objects/deployment_phantom.py,sha256=s28mdWEwXiK4ue9u4P3bIB7Txouh36pim44l0REXp8A,262
55
+ contentctl/objects/deployment_rba.py,sha256=coDPPdd-lE4UAHEgy4T0D_--O2sP9eAxXUUnxv6Po0M,185
56
+ contentctl/objects/deployment_scheduling.py,sha256=eeYUh8VrslRuCPEspMMFaBjWcBOOEBniw9X0qamSQ1s,258
57
+ contentctl/objects/deployment_slack.py,sha256=ApNt4O5E6m2vftboeclJzgVXZHBa_uzQp9WBWeH9rnI,195
58
58
  contentctl/objects/detection.py,sha256=i-BCxTrP11fmxHLI1zv3XESF4R-f9BScl6FFOdUlHxY,641
59
59
  contentctl/objects/detection_metadata.py,sha256=JMz8rtcn5HfeEoaAx34kw2wXa35qsRIap_mXoY0Vbss,2237
60
- contentctl/objects/detection_stanza.py,sha256=-BRQNib5NNhY7Z2fILS5xkpjNkGSLF7qBciTmgOgLV8,3112
60
+ contentctl/objects/detection_stanza.py,sha256=SkhmX01RKpgZnNDRP18FJOkahYQEtUIubLbjutXFijM,3112
61
61
  contentctl/objects/detection_tags.py,sha256=j92t4TWlNNVdFi4_DoHvEyvJuURlBp5_o1xv2w2pAVk,10699
62
62
  contentctl/objects/drilldown.py,sha256=Vinw6UYlOl0YzoRA_0oBCfHA5Gvgu5p-rEsfBIgMCdI,4186
63
63
  contentctl/objects/enums.py,sha256=nWufu5YgzllBfDQBneIe_Hf_erNXouERciqU_di5DNo,13754
64
64
  contentctl/objects/errors.py,sha256=7ebvjAR9W2Wj0a4ihdOakGPZRNr7rDDZe0X3rvhh_dE,6367
65
- contentctl/objects/integration_test.py,sha256=TYjKyH4YinUnYXOse5BQGCa4-ez_5mtoMwvh1JJcb0o,1254
65
+ contentctl/objects/integration_test.py,sha256=CudAhS5wcn29kK4awqj_7rPKG7jq3hh-nR1xSlx2Nto,1254
66
66
  contentctl/objects/integration_test_result.py,sha256=_uUSgqgjFhEZM8UwOJI6Q9K-ekIrbKU6OPdqHZycl-s,279
67
67
  contentctl/objects/investigation.py,sha256=GZsvhSZO7ZSmhg2ZeT-kPMqDG-GYpTXIvGBgV1H2lwQ,4030
68
- contentctl/objects/investigation_tags.py,sha256=qDGNusrWDvCX_GcBEzag2MydSV0LIhGxoXZGgxDXfHA,1317
68
+ contentctl/objects/investigation_tags.py,sha256=qVXvb9eN6Hv2KReVvjvRJFkm7f6RrZNhjuc_08X9ImQ,1320
69
69
  contentctl/objects/lookup.py,sha256=zIfPwzWNObn78wreTYw6078dhqu6T7vnYgdxXgfQ1MU,15869
70
70
  contentctl/objects/macro.py,sha256=0moVvTFUvApwoT1WI4lcwElXQqay9mwsN33_Amy_MzI,4138
71
- contentctl/objects/manual_test.py,sha256=cx_XAtQ8VG8Ui_F553Xnut75vFEOtRwm1dDIIWNpOaM,952
71
+ contentctl/objects/manual_test.py,sha256=WUQ9pjbfRqqEpYAbeN3XYRA82IIjtp1gGnhHT1kQnGA,952
72
72
  contentctl/objects/manual_test_result.py,sha256=FyCVVf-f1DKs-qBkM4tbKfY6mkrW25NcIEBqyaDC2rE,156
73
73
  contentctl/objects/mitre_attack_enrichment.py,sha256=PCakRksW5qrTENIZ7JirEZplE9xpmvSvX2GKv7N8j_k,3683
74
74
  contentctl/objects/notable_action.py,sha256=sW5XlpGznMHqyBmGXtXrl22hWLiCoKkfGCasGtK3rGo,1607
75
75
  contentctl/objects/notable_event.py,sha256=jMmD1sGtTvOFNfjAfienWD2-sVL67axzdLrLZSGQ8Sw,421
76
76
  contentctl/objects/playbook.py,sha256=veG2luPfFrOMdzl99D8gsO85HYSJ8kZMYWj3GG64HKk,2879
77
- contentctl/objects/playbook_tags.py,sha256=J9sBP54mXW2e3X9EtIhL6vZ3kqDPFnvBkJB-zcj0XFA,6777
77
+ contentctl/objects/playbook_tags.py,sha256=WhFRKmy3XD4lr65yk82_0TCfLgbSWGD22GPT_f0wruo,6780
78
78
  contentctl/objects/rba.py,sha256=2xE_DXhQvG6tVLJTXYaFEBm9owePE4QG0NVgdcVgoiY,3547
79
79
  contentctl/objects/removed_security_content_object.py,sha256=bx-gVCqzT81E5jKncMD3-yKawTnl3tWsuzRBmsAqeqQ,1852
80
- contentctl/objects/risk_analysis_action.py,sha256=v-TQktXEEzbGzmTtqwEykXoSKdGnIlK_JojnqvvAE1s,4370
80
+ contentctl/objects/risk_analysis_action.py,sha256=8hE8-0YdMXJslxTGNGUN0DAQONwOsyhf5vPP3whZQ2o,4370
81
81
  contentctl/objects/risk_event.py,sha256=p3WJQrDNuhoXBMOxCX5x8P7xKr2XwROcog_pPpb653A,12219
82
82
  contentctl/objects/risk_object.py,sha256=5iUKW_UwQLjjLWiD_vlE78uwH9bkaMNCHRNmKM25W1Q,905
83
- contentctl/objects/savedsearches_conf.py,sha256=Dn_Pxd9i3RT6DwNh6JrgmfxjsO3q15xzMksYr3wIGwQ,8624
83
+ contentctl/objects/savedsearches_conf.py,sha256=YGkj0btNqNhXz7IH3uUmqkMz09TEys26iXGQEug2dWI,8624
84
84
  contentctl/objects/security_content_object.py,sha256=2mEf-wt3hMsLEyo4yatyK66jKjgUOVjJHIN9fgQB5nA,246
85
85
  contentctl/objects/story.py,sha256=1JCiF9D1EZeVcoMXXDoWkOqHXQn4TsQgl8EtUN59a2E,5796
86
- contentctl/objects/story_tags.py,sha256=IYumFuBF2Bt7HtW4lBfCRo2EUpjMYlnNjpx24jBErs4,2365
86
+ contentctl/objects/story_tags.py,sha256=p17i3ptWIYdu2w-CDAQari8QgxBd0z71KcML7xtcF-k,2368
87
87
  contentctl/objects/test_attack_data.py,sha256=jXpaThVBntzKkRm1CPjTpaXDbKPu8xNghwuQ1pcGkoo,1513
88
- contentctl/objects/test_group.py,sha256=r-dXyddok4yslv8SIjwOpqylbN1rdjsRi-HIijvpWD0,2602
88
+ contentctl/objects/test_group.py,sha256=XH-21zQFd_Ky9VIpMiuc4Ce3cc6LF_pp_pHpMvEuozs,2602
89
89
  contentctl/objects/threat_object.py,sha256=CB3igcmiq06lqnEh7h-btxFrBfgZbHaA9p8kFDKY6lQ,712
90
- contentctl/objects/throttling.py,sha256=oupWmdtvwAXzLmD3MBJyAU18SD2L2ciEZWUcnL8MuGk,2309
91
- contentctl/objects/unit_test.py,sha256=-rtSmZ8N2UZ4NkDsfzNXzXiF6dTDwt_jsQ_14xp0hjs,1005
92
- contentctl/objects/unit_test_baseline.py,sha256=ezg8Ctih_3che2ln2tuVCAtRPHaf5tDMR3dGb34MqaA,287
93
- contentctl/objects/unit_test_result.py,sha256=gqHqYN5XGBKdV-mdKhAdwfOw4_PpN3i9z_b6ciByDSc,2928
90
+ contentctl/objects/throttling.py,sha256=ANGX8bgIyE3HvZ306Ih99z7GyVHi--n0Fxp0_CX_9Kw,2310
91
+ contentctl/objects/unit_test.py,sha256=PMdwm-FY8by3R7v67nAaySc6i6lZEko2ZDjfnFtJhng,1005
92
+ contentctl/objects/unit_test_baseline.py,sha256=X9ftx7rpj-uUqi6xkYqt6i2coy6Pu39gts-yRalmMLg,288
93
+ contentctl/objects/unit_test_result.py,sha256=69VEAmajeRnWIdl6Xc90LU6hboEjJI9szF8gPa6uBgI,2927
94
94
  contentctl/output/api_json_output.py,sha256=AwuXFVzg3bY0DUsYaEGM73LAr9mJ5nxkOmUdVJgTzRs,8563
95
95
  contentctl/output/attack_nav_output.py,sha256=-zK9zxBFWQooLjfLeCJaKARemA1BhoiEYLYYT2Or9PQ,7088
96
96
  contentctl/output/attack_nav_writer.py,sha256=AiQU3q8hzz_lJECI-sjyqOsWx64HUugg3aAHEeZl-qM,2750
97
- contentctl/output/conf_output.py,sha256=OJ4u38FEkuBHvIiK_57HoxUJasWV2rkX2abVamKh3Qg,11045
98
- contentctl/output/conf_writer.py,sha256=9eqt2tm1xjs397pwWLz5oPJcMHbs62ejRG7KghGQQCI,15137
99
- contentctl/output/doc_md_output.py,sha256=wlgbzBD2hUbQNIW2zv5sdrq2UdAKhOZJUYSObnpWQfY,3552
100
- contentctl/output/jinja_writer.py,sha256=5PbFrc8KuLWrlNIHDvMTyvJ18u_mtjd5Led6-9sn2Eo,1204
101
- contentctl/output/json_writer.py,sha256=waw73wOmalSrUFcr2K1CWR-xz5oW8il10zDAn56mtMg,1041
97
+ contentctl/output/conf_output.py,sha256=eoDbqadndEnURr0IpY7cYVsEAkKPaaxg6cuHvn3I0Nw,11039
98
+ contentctl/output/conf_writer.py,sha256=3bo_VIFH3Qd96LLaYFJ1uwYQQW0UFPB0Rf3Bs9_N2W4,15110
99
+ contentctl/output/doc_md_output.py,sha256=jHOiuO8IWQ4adR0ekj-Af0JI9XhOGI-zYfKqV34f5Vw,3551
100
+ contentctl/output/jinja_writer.py,sha256=k3yVRnz8KnboodME09oTHkP_54uF-YUGiKuJHZ9XTxo,1205
101
+ contentctl/output/json_writer.py,sha256=C8oBPTqavStI91RLBfulnMfTwMyUSP9ljQEwT_nijj0,1038
102
102
  contentctl/output/runtime_csv_writer.py,sha256=ZlK3kDg6YwfR4Sj4xgJIhTHZ_GDVfDnQDHS0PqAnpt0,4336
103
103
  contentctl/output/svg_output.py,sha256=8KClwfUIoLXnns-jYFzvv5OMs0-uwTFI0oZw9DWjTg4,2948
104
104
  contentctl/output/templates/analyticstories_detections.j2,sha256=6ZiQO8np6KkX8skVoIB0BN9_s8SBW3qeo8IBA8r8GQk,923
@@ -129,7 +129,7 @@ contentctl/output/templates/savedsearches_investigations.j2,sha256=KH2r8SgyAMiet
129
129
  contentctl/output/templates/server.conf.j2,sha256=sPZUkiuJNGm9R8rpjfRKyuAvmmQb0C4w9Q6hpmvmPeU,127
130
130
  contentctl/output/templates/transforms.j2,sha256=TEKZi8DWpcCysRTNvuLEgAwx-g1SZ2E0CkLiu6v6AlU,1339
131
131
  contentctl/output/templates/workflow_actions.j2,sha256=DFoZVnCa8dMRHjW2AdpoydBC0THgiH_W-Nx7WI4-uR4,925
132
- contentctl/output/yml_writer.py,sha256=gGgbamHWunHKjj47TcqB04k0xliX6w3H7iajZtUZRSU,2124
132
+ contentctl/output/yml_writer.py,sha256=aMs5wZajErk0G61KV0Z5UpQQLurdD_8kahvsXT18BZ0,2125
133
133
  contentctl/templates/README.md,sha256=GoRmywUqwnjaehY_GLmGqxsFXCLP9plpDYwB6W6nVPs,428
134
134
  contentctl/templates/app_default.yml,sha256=kDeYdJbfMADQPcho8iH1nqgTFrHNt4EXnIJjPHc2unI,6390
135
135
  contentctl/templates/app_template/README/essoc_story_detail.txt,sha256=7hFPBfPpRH28TFl7QchKceZLewQqgFjRWDlmxZzwpmo,897
@@ -164,8 +164,8 @@ contentctl/templates/detections/web/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
164
164
  contentctl/templates/macros/security_content_ctime.yml,sha256=Gg1YNllHVsX_YB716H1SJLWzxXZEfuJlnsgB2fuyoHU,159
165
165
  contentctl/templates/macros/security_content_summariesonly.yml,sha256=9BYUxAl2E4Nwh8K19F3AJS8Ka7ceO6ZDBjFiO3l3LY0,162
166
166
  contentctl/templates/stories/cobalt_strike.yml,sha256=uj8idtDNOAIqpZ9p8usQg6mop1CQkJ5TlB4Q7CJdTIE,3082
167
- contentctl-5.5.7.dist-info/LICENSE.md,sha256=hQWUayRk-pAiOZbZnuy8djmoZkjKBx8MrCFpW-JiOgo,11344
168
- contentctl-5.5.7.dist-info/METADATA,sha256=aLnpJb80CX7LeslFcm27e93UDgwHybfEsoF_o0x2VRw,5134
169
- contentctl-5.5.7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
170
- contentctl-5.5.7.dist-info/entry_points.txt,sha256=5bjZ2NkbQfSwK47uOnA77yCtjgXhvgxnmCQiynRF_-U,57
171
- contentctl-5.5.7.dist-info/RECORD,,
167
+ contentctl-5.5.8.dist-info/LICENSE.md,sha256=hQWUayRk-pAiOZbZnuy8djmoZkjKBx8MrCFpW-JiOgo,11344
168
+ contentctl-5.5.8.dist-info/METADATA,sha256=-wZ5fGI53MKadmkGjzXH97NP65v47RneZA5jrO7ywXw,5118
169
+ contentctl-5.5.8.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
170
+ contentctl-5.5.8.dist-info/entry_points.txt,sha256=5bjZ2NkbQfSwK47uOnA77yCtjgXhvgxnmCQiynRF_-U,57
171
+ contentctl-5.5.8.dist-info/RECORD,,