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.
- contentctl/actions/deploy_acs.py +5 -3
- contentctl/actions/detection_testing/DetectionTestingManager.py +3 -3
- contentctl/actions/detection_testing/GitService.py +4 -4
- contentctl/actions/detection_testing/generate_detection_coverage_badge.py +3 -3
- contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructure.py +15 -17
- contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructureContainer.py +9 -8
- contentctl/actions/detection_testing/progress_bar.py +2 -1
- contentctl/actions/detection_testing/views/DetectionTestingViewCLI.py +4 -3
- contentctl/actions/detection_testing/views/DetectionTestingViewFile.py +4 -2
- contentctl/actions/detection_testing/views/DetectionTestingViewWeb.py +7 -7
- contentctl/actions/doc_gen.py +1 -2
- contentctl/actions/release_notes.py +2 -2
- contentctl/actions/reporting.py +3 -3
- contentctl/actions/test.py +2 -3
- contentctl/actions/validate.py +1 -1
- contentctl/api.py +7 -6
- contentctl/contentctl.py +1 -1
- contentctl/enrichments/attack_enrichment.py +1 -1
- contentctl/enrichments/cve_enrichment.py +9 -6
- contentctl/enrichments/splunk_app_enrichment.py +5 -4
- contentctl/helper/link_validator.py +7 -7
- contentctl/helper/splunk_app.py +6 -6
- contentctl/helper/utils.py +8 -8
- contentctl/input/director.py +3 -2
- contentctl/input/new_content_questions.py +1 -0
- contentctl/input/yml_reader.py +2 -2
- contentctl/objects/abstract_security_content_objects/detection_abstract.py +1 -1
- contentctl/objects/alert_action.py +4 -2
- contentctl/objects/atomic.py +8 -5
- contentctl/objects/base_test.py +1 -1
- contentctl/objects/base_test_result.py +2 -2
- contentctl/objects/baseline_tags.py +7 -6
- contentctl/objects/config.py +5 -5
- contentctl/objects/correlation_search.py +156 -139
- contentctl/objects/dashboard.py +1 -1
- contentctl/objects/deployment_email.py +1 -0
- contentctl/objects/deployment_notable.py +3 -1
- contentctl/objects/deployment_phantom.py +1 -0
- contentctl/objects/deployment_rba.py +1 -0
- contentctl/objects/deployment_scheduling.py +1 -0
- contentctl/objects/deployment_slack.py +1 -0
- contentctl/objects/detection_stanza.py +1 -1
- contentctl/objects/integration_test.py +2 -2
- contentctl/objects/investigation_tags.py +6 -3
- contentctl/objects/manual_test.py +2 -2
- contentctl/objects/playbook_tags.py +5 -2
- contentctl/objects/risk_analysis_action.py +1 -1
- contentctl/objects/savedsearches_conf.py +3 -3
- contentctl/objects/story_tags.py +1 -1
- contentctl/objects/test_group.py +2 -2
- contentctl/objects/throttling.py +2 -1
- contentctl/objects/unit_test.py +2 -2
- contentctl/objects/unit_test_baseline.py +2 -1
- contentctl/objects/unit_test_result.py +4 -2
- contentctl/output/conf_output.py +2 -2
- contentctl/output/conf_writer.py +5 -5
- contentctl/output/doc_md_output.py +0 -1
- contentctl/output/jinja_writer.py +1 -0
- contentctl/output/json_writer.py +1 -1
- contentctl/output/yml_writer.py +3 -2
- {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/METADATA +3 -3
- {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/RECORD +65 -65
- {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/LICENSE.md +0 -0
- {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/WHEEL +0 -0
- {contentctl-5.5.7.dist-info → contentctl-5.5.8.dist-info}/entry_points.txt +0 -0
contentctl/output/conf_writer.py
CHANGED
|
@@ -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: {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
412
|
+
f"Failed to validate .manifest file {path!s} (Note that .manifest files should contain only valid JSON-formatted data): {e!s}"
|
|
413
413
|
)
|
contentctl/output/json_writer.py
CHANGED
contentctl/output/yml_writer.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: contentctl
|
|
3
|
-
Version: 5.5.
|
|
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.
|
|
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 (>=
|
|
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=
|
|
4
|
-
contentctl/actions/detection_testing/DetectionTestingManager.py,sha256=
|
|
5
|
-
contentctl/actions/detection_testing/GitService.py,sha256=
|
|
6
|
-
contentctl/actions/detection_testing/generate_detection_coverage_badge.py,sha256=
|
|
7
|
-
contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructure.py,sha256=
|
|
8
|
-
contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructureContainer.py,sha256=
|
|
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=
|
|
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=
|
|
13
|
-
contentctl/actions/detection_testing/views/DetectionTestingViewFile.py,sha256=
|
|
14
|
-
contentctl/actions/detection_testing/views/DetectionTestingViewWeb.py,sha256=
|
|
15
|
-
contentctl/actions/doc_gen.py,sha256=
|
|
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=
|
|
20
|
-
contentctl/actions/reporting.py,sha256=
|
|
21
|
-
contentctl/actions/test.py,sha256=
|
|
22
|
-
contentctl/actions/validate.py,sha256=
|
|
23
|
-
contentctl/api.py,sha256=
|
|
24
|
-
contentctl/contentctl.py,sha256=
|
|
25
|
-
contentctl/enrichments/attack_enrichment.py,sha256=
|
|
26
|
-
contentctl/enrichments/cve_enrichment.py,sha256=
|
|
27
|
-
contentctl/enrichments/splunk_app_enrichment.py,sha256=
|
|
28
|
-
contentctl/helper/link_validator.py,sha256=
|
|
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=
|
|
31
|
-
contentctl/helper/utils.py,sha256=
|
|
32
|
-
contentctl/input/director.py,sha256=
|
|
33
|
-
contentctl/input/new_content_questions.py,sha256=
|
|
34
|
-
contentctl/input/yml_reader.py,sha256=
|
|
35
|
-
contentctl/objects/abstract_security_content_objects/detection_abstract.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
42
|
-
contentctl/objects/base_test_result.py,sha256=
|
|
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=
|
|
45
|
-
contentctl/objects/config.py,sha256=
|
|
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=
|
|
49
|
-
contentctl/objects/dashboard.py,sha256=
|
|
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=
|
|
53
|
-
contentctl/objects/deployment_notable.py,sha256=
|
|
54
|
-
contentctl/objects/deployment_phantom.py,sha256=
|
|
55
|
-
contentctl/objects/deployment_rba.py,sha256=
|
|
56
|
-
contentctl/objects/deployment_scheduling.py,sha256=
|
|
57
|
-
contentctl/objects/deployment_slack.py,sha256=
|
|
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
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
91
|
-
contentctl/objects/unit_test.py,sha256
|
|
92
|
-
contentctl/objects/unit_test_baseline.py,sha256=
|
|
93
|
-
contentctl/objects/unit_test_result.py,sha256=
|
|
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=
|
|
98
|
-
contentctl/output/conf_writer.py,sha256=
|
|
99
|
-
contentctl/output/doc_md_output.py,sha256=
|
|
100
|
-
contentctl/output/jinja_writer.py,sha256=
|
|
101
|
-
contentctl/output/json_writer.py,sha256=
|
|
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=
|
|
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.
|
|
168
|
-
contentctl-5.5.
|
|
169
|
-
contentctl-5.5.
|
|
170
|
-
contentctl-5.5.
|
|
171
|
-
contentctl-5.5.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|