pycti 6.7.17__py3-none-any.whl → 6.7.19__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.
Potentially problematic release.
This version of pycti might be problematic. Click here for more details.
- pycti/__init__.py +1 -1
- pycti/entities/opencti_case_rfi.py +14 -0
- pycti/entities/opencti_case_rft.py +14 -0
- pycti/entities/opencti_external_reference.py +4 -2
- pycti/entities/opencti_grouping.py +14 -0
- pycti/entities/opencti_stix_cyber_observable.py +4 -2
- pycti/entities/opencti_stix_domain_object.py +4 -2
- pycti/utils/opencti_stix2.py +7 -0
- {pycti-6.7.17.dist-info → pycti-6.7.19.dist-info}/METADATA +1 -1
- {pycti-6.7.17.dist-info → pycti-6.7.19.dist-info}/RECORD +13 -13
- {pycti-6.7.17.dist-info → pycti-6.7.19.dist-info}/WHEEL +0 -0
- {pycti-6.7.17.dist-info → pycti-6.7.19.dist-info}/licenses/LICENSE +0 -0
- {pycti-6.7.17.dist-info → pycti-6.7.19.dist-info}/top_level.txt +0 -0
pycti/__init__.py
CHANGED
|
@@ -701,6 +701,7 @@ class CaseRfi:
|
|
|
701
701
|
created = kwargs.get("created", None)
|
|
702
702
|
modified = kwargs.get("modified", None)
|
|
703
703
|
name = kwargs.get("name", None)
|
|
704
|
+
content = kwargs.get("content", None)
|
|
704
705
|
description = kwargs.get("description", None)
|
|
705
706
|
x_opencti_stix_ids = kwargs.get("x_opencti_stix_ids", None)
|
|
706
707
|
granted_refs = kwargs.get("objectOrganization", None)
|
|
@@ -742,6 +743,7 @@ class CaseRfi:
|
|
|
742
743
|
"modified": modified,
|
|
743
744
|
"name": name,
|
|
744
745
|
"description": description,
|
|
746
|
+
"content": content,
|
|
745
747
|
"x_opencti_stix_ids": x_opencti_stix_ids,
|
|
746
748
|
"x_opencti_workflow_id": x_opencti_workflow_id,
|
|
747
749
|
"update": update,
|
|
@@ -874,6 +876,13 @@ class CaseRfi:
|
|
|
874
876
|
stix_object["x_opencti_assignee_ids"] = (
|
|
875
877
|
self.opencti.get_attribute_in_extension("assignee_ids", stix_object)
|
|
876
878
|
)
|
|
879
|
+
if "x_opencti_content" not in stix_object or "content" not in stix_object:
|
|
880
|
+
stix_object["content"] = self.opencti.get_attribute_in_extension(
|
|
881
|
+
"content", stix_object
|
|
882
|
+
)
|
|
883
|
+
if "x_opencti_content" in stix_object:
|
|
884
|
+
stix_object["content"] = stix_object["x_opencti_content"]
|
|
885
|
+
|
|
877
886
|
if "x_opencti_participant_ids" not in stix_object:
|
|
878
887
|
stix_object["x_opencti_participant_ids"] = (
|
|
879
888
|
self.opencti.get_attribute_in_extension(
|
|
@@ -900,6 +909,11 @@ class CaseRfi:
|
|
|
900
909
|
if "external_references_ids" in extras
|
|
901
910
|
else None
|
|
902
911
|
),
|
|
912
|
+
content=(
|
|
913
|
+
self.opencti.stix2.convert_markdown(stix_object["content"])
|
|
914
|
+
if "content" in stix_object
|
|
915
|
+
else None
|
|
916
|
+
),
|
|
903
917
|
revoked=stix_object["revoked"] if "revoked" in stix_object else None,
|
|
904
918
|
severity=stix_object["severity"] if "severity" in stix_object else None,
|
|
905
919
|
priority=stix_object["priority"] if "priority" in stix_object else None,
|
|
@@ -697,6 +697,7 @@ class CaseRft:
|
|
|
697
697
|
priority = kwargs.get("priority", None)
|
|
698
698
|
confidence = kwargs.get("confidence", None)
|
|
699
699
|
lang = kwargs.get("lang", None)
|
|
700
|
+
content = kwargs.get("content", None)
|
|
700
701
|
created = kwargs.get("created", None)
|
|
701
702
|
modified = kwargs.get("modified", None)
|
|
702
703
|
name = kwargs.get("name", None)
|
|
@@ -735,6 +736,7 @@ class CaseRft:
|
|
|
735
736
|
"revoked": revoked,
|
|
736
737
|
"severity": severity,
|
|
737
738
|
"priority": priority,
|
|
739
|
+
"content": content,
|
|
738
740
|
"confidence": confidence,
|
|
739
741
|
"lang": lang,
|
|
740
742
|
"created": created,
|
|
@@ -865,6 +867,13 @@ class CaseRft:
|
|
|
865
867
|
stix_object["x_opencti_granted_refs"] = (
|
|
866
868
|
self.opencti.get_attribute_in_extension("granted_refs", stix_object)
|
|
867
869
|
)
|
|
870
|
+
if "x_opencti_content" not in stix_object or "content" not in stix_object:
|
|
871
|
+
stix_object["content"] = self.opencti.get_attribute_in_extension(
|
|
872
|
+
"content", stix_object
|
|
873
|
+
)
|
|
874
|
+
if "x_opencti_content" in stix_object:
|
|
875
|
+
stix_object["content"] = stix_object["x_opencti_content"]
|
|
876
|
+
|
|
868
877
|
if "x_opencti_workflow_id" not in stix_object:
|
|
869
878
|
stix_object["x_opencti_workflow_id"] = (
|
|
870
879
|
self.opencti.get_attribute_in_extension("workflow_id", stix_object)
|
|
@@ -904,6 +913,11 @@ class CaseRft:
|
|
|
904
913
|
confidence=(
|
|
905
914
|
stix_object["confidence"] if "confidence" in stix_object else None
|
|
906
915
|
),
|
|
916
|
+
content=(
|
|
917
|
+
self.opencti.stix2.convert_markdown(stix_object["content"])
|
|
918
|
+
if "content" in stix_object
|
|
919
|
+
else None
|
|
920
|
+
),
|
|
907
921
|
lang=stix_object["lang"] if "lang" in stix_object else None,
|
|
908
922
|
created=stix_object["created"] if "created" in stix_object else None,
|
|
909
923
|
modified=stix_object["modified"] if "modified" in stix_object else None,
|
|
@@ -276,12 +276,13 @@ class ExternalReference:
|
|
|
276
276
|
file_markings = kwargs.get("fileMarkings", None)
|
|
277
277
|
mime_type = kwargs.get("mime_type", "text/plain")
|
|
278
278
|
no_trigger_import = kwargs.get("no_trigger_import", False)
|
|
279
|
+
embedded = kwargs.get("embedded", False)
|
|
279
280
|
if id is not None and file_name is not None:
|
|
280
281
|
final_file_name = os.path.basename(file_name)
|
|
281
282
|
query = """
|
|
282
|
-
mutation ExternalReferenceEdit($id: ID!, $file: Upload!, $fileMarkings: [String], $version: DateTime, $noTriggerImport: Boolean) {
|
|
283
|
+
mutation ExternalReferenceEdit($id: ID!, $file: Upload!, $fileMarkings: [String], $version: DateTime, $noTriggerImport: Boolean, $embedded: Boolean) {
|
|
283
284
|
externalReferenceEdit(id: $id) {
|
|
284
|
-
importPush(file: $file, fileMarkings: $fileMarkings, version: $version, noTriggerImport: $noTriggerImport) {
|
|
285
|
+
importPush(file: $file, fileMarkings: $fileMarkings, version: $version, noTriggerImport: $noTriggerImport, embedded: $embedded) {
|
|
285
286
|
id
|
|
286
287
|
name
|
|
287
288
|
}
|
|
@@ -310,6 +311,7 @@ class ExternalReference:
|
|
|
310
311
|
if isinstance(no_trigger_import, bool)
|
|
311
312
|
else no_trigger_import == "True"
|
|
312
313
|
),
|
|
314
|
+
"embedded": embedded,
|
|
313
315
|
},
|
|
314
316
|
)
|
|
315
317
|
else:
|
|
@@ -644,6 +644,7 @@ class Grouping:
|
|
|
644
644
|
modified = kwargs.get("modified", None)
|
|
645
645
|
name = kwargs.get("name", None)
|
|
646
646
|
context = kwargs.get("context", None)
|
|
647
|
+
content = kwargs.get("content", None)
|
|
647
648
|
description = kwargs.get("description", None)
|
|
648
649
|
x_opencti_aliases = kwargs.get("x_opencti_aliases", None)
|
|
649
650
|
x_opencti_stix_ids = kwargs.get("x_opencti_stix_ids", None)
|
|
@@ -681,6 +682,7 @@ class Grouping:
|
|
|
681
682
|
"modified": modified,
|
|
682
683
|
"name": name,
|
|
683
684
|
"context": context,
|
|
685
|
+
"content": content,
|
|
684
686
|
"description": description,
|
|
685
687
|
"x_opencti_aliases": x_opencti_aliases,
|
|
686
688
|
"x_opencti_stix_ids": x_opencti_stix_ids,
|
|
@@ -802,6 +804,13 @@ class Grouping:
|
|
|
802
804
|
stix_object["x_opencti_granted_refs"] = (
|
|
803
805
|
self.opencti.get_attribute_in_extension("granted_refs", stix_object)
|
|
804
806
|
)
|
|
807
|
+
if "x_opencti_content" not in stix_object or "content" not in stix_object:
|
|
808
|
+
stix_object["content"] = self.opencti.get_attribute_in_extension(
|
|
809
|
+
"content", stix_object
|
|
810
|
+
)
|
|
811
|
+
if "x_opencti_content" in stix_object:
|
|
812
|
+
stix_object["content"] = stix_object["x_opencti_content"]
|
|
813
|
+
|
|
805
814
|
if "x_opencti_workflow_id" not in stix_object:
|
|
806
815
|
stix_object["x_opencti_workflow_id"] = (
|
|
807
816
|
self.opencti.get_attribute_in_extension("workflow_id", stix_object)
|
|
@@ -826,6 +835,11 @@ class Grouping:
|
|
|
826
835
|
if "external_references_ids" in extras
|
|
827
836
|
else None
|
|
828
837
|
),
|
|
838
|
+
content=(
|
|
839
|
+
self.opencti.stix2.convert_markdown(stix_object["content"])
|
|
840
|
+
if "content" in stix_object
|
|
841
|
+
else None
|
|
842
|
+
),
|
|
829
843
|
revoked=stix_object["revoked"] if "revoked" in stix_object else None,
|
|
830
844
|
confidence=(
|
|
831
845
|
stix_object["confidence"] if "confidence" in stix_object else None
|
|
@@ -185,12 +185,13 @@ class StixCyberObservable(StixCyberObservableDeprecatedMixin):
|
|
|
185
185
|
version = kwargs.get("version", None)
|
|
186
186
|
mime_type = kwargs.get("mime_type", "text/plain")
|
|
187
187
|
no_trigger_import = kwargs.get("no_trigger_import", False)
|
|
188
|
+
embedded = kwargs.get("embedded", False)
|
|
188
189
|
if id is not None and file_name is not None:
|
|
189
190
|
final_file_name = os.path.basename(file_name)
|
|
190
191
|
query = """
|
|
191
|
-
mutation StixCyberObservableEdit($id: ID!, $file: Upload!, $fileMarkings: [String], $version: DateTime, $noTriggerImport: Boolean) {
|
|
192
|
+
mutation StixCyberObservableEdit($id: ID!, $file: Upload!, $fileMarkings: [String], $version: DateTime, $noTriggerImport: Boolean, $embedded: Boolean) {
|
|
192
193
|
stixCyberObservableEdit(id: $id) {
|
|
193
|
-
importPush(file: $file, version: $version, fileMarkings: $fileMarkings, noTriggerImport: $noTriggerImport) {
|
|
194
|
+
importPush(file: $file, version: $version, fileMarkings: $fileMarkings, noTriggerImport: $noTriggerImport, embedded: $embedded) {
|
|
194
195
|
id
|
|
195
196
|
name
|
|
196
197
|
}
|
|
@@ -219,6 +220,7 @@ class StixCyberObservable(StixCyberObservableDeprecatedMixin):
|
|
|
219
220
|
if isinstance(no_trigger_import, bool)
|
|
220
221
|
else no_trigger_import == "True"
|
|
221
222
|
),
|
|
223
|
+
"embedded": embedded,
|
|
222
224
|
},
|
|
223
225
|
)
|
|
224
226
|
else:
|
|
@@ -1368,12 +1368,13 @@ class StixDomainObject:
|
|
|
1368
1368
|
version = kwargs.get("version", None)
|
|
1369
1369
|
mime_type = kwargs.get("mime_type", "text/plain")
|
|
1370
1370
|
no_trigger_import = kwargs.get("no_trigger_import", False)
|
|
1371
|
+
embedded = kwargs.get("embedded", False)
|
|
1371
1372
|
if id is not None and file_name is not None:
|
|
1372
1373
|
final_file_name = os.path.basename(file_name)
|
|
1373
1374
|
query = """
|
|
1374
|
-
mutation StixDomainObjectEdit($id: ID!, $file: Upload!, $fileMarkings: [String], $version: DateTime, $noTriggerImport: Boolean) {
|
|
1375
|
+
mutation StixDomainObjectEdit($id: ID!, $file: Upload!, $fileMarkings: [String], $version: DateTime, $noTriggerImport: Boolean, $embedded: Boolean) {
|
|
1375
1376
|
stixDomainObjectEdit(id: $id) {
|
|
1376
|
-
importPush(file: $file, version: $version, fileMarkings: $fileMarkings, noTriggerImport: $noTriggerImport) {
|
|
1377
|
+
importPush(file: $file, version: $version, fileMarkings: $fileMarkings, noTriggerImport: $noTriggerImport, embedded: $embedded) {
|
|
1377
1378
|
id
|
|
1378
1379
|
name
|
|
1379
1380
|
}
|
|
@@ -1402,6 +1403,7 @@ class StixDomainObject:
|
|
|
1402
1403
|
if isinstance(no_trigger_import, bool)
|
|
1403
1404
|
else no_trigger_import == "True"
|
|
1404
1405
|
),
|
|
1406
|
+
"embedded": embedded,
|
|
1405
1407
|
},
|
|
1406
1408
|
)
|
|
1407
1409
|
else:
|
pycti/utils/opencti_stix2.py
CHANGED
|
@@ -758,6 +758,7 @@ class OpenCTIStix2:
|
|
|
758
758
|
fileMarkings=file.get("object_marking_refs", None),
|
|
759
759
|
mime_type=file["mime_type"],
|
|
760
760
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
761
|
+
embedded=file.get("embedded", False),
|
|
761
762
|
)
|
|
762
763
|
if (
|
|
763
764
|
self.opencti.get_attribute_in_extension("files", external_reference)
|
|
@@ -775,6 +776,7 @@ class OpenCTIStix2:
|
|
|
775
776
|
fileMarkings=file.get("object_marking_refs", None),
|
|
776
777
|
mime_type=file["mime_type"],
|
|
777
778
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
779
|
+
embedded=file.get("embedded", False),
|
|
778
780
|
)
|
|
779
781
|
external_references_ids.append(external_reference_id)
|
|
780
782
|
# Granted refs
|
|
@@ -1050,6 +1052,7 @@ class OpenCTIStix2:
|
|
|
1050
1052
|
fileMarkings=file.get("object_marking_refs", None),
|
|
1051
1053
|
mime_type=file["mime_type"],
|
|
1052
1054
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
1055
|
+
embedded=file.get("embedded", False),
|
|
1053
1056
|
)
|
|
1054
1057
|
if (
|
|
1055
1058
|
self.opencti.get_attribute_in_extension("files", stix_object)
|
|
@@ -1067,6 +1070,7 @@ class OpenCTIStix2:
|
|
|
1067
1070
|
fileMarkings=file.get("object_marking_refs", None),
|
|
1068
1071
|
mime_type=file["mime_type"],
|
|
1069
1072
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
1073
|
+
embedded=file.get("embedded", False),
|
|
1070
1074
|
)
|
|
1071
1075
|
return stix_object_results
|
|
1072
1076
|
|
|
@@ -1179,6 +1183,7 @@ class OpenCTIStix2:
|
|
|
1179
1183
|
fileMarkings=file.get("object_marking_refs", None),
|
|
1180
1184
|
mime_type=file["mime_type"],
|
|
1181
1185
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
1186
|
+
embedded=file.get("embedded", False),
|
|
1182
1187
|
)
|
|
1183
1188
|
if (
|
|
1184
1189
|
self.opencti.get_attribute_in_extension("files", stix_object)
|
|
@@ -1196,6 +1201,7 @@ class OpenCTIStix2:
|
|
|
1196
1201
|
fileMarkings=file.get("object_marking_refs", None),
|
|
1197
1202
|
mime_type=file["mime_type"],
|
|
1198
1203
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
1204
|
+
embedded=file.get("embedded", False),
|
|
1199
1205
|
)
|
|
1200
1206
|
if "id" in stix_object:
|
|
1201
1207
|
self.mapping_cache[stix_object["id"]] = {
|
|
@@ -2472,6 +2478,7 @@ class OpenCTIStix2:
|
|
|
2472
2478
|
fileMarkings=file.get("object_marking_refs", None),
|
|
2473
2479
|
mime_type=file.get("mime_type", None),
|
|
2474
2480
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
2481
|
+
embedded=file.get("embedded", False),
|
|
2475
2482
|
)
|
|
2476
2483
|
|
|
2477
2484
|
def apply_patch(self, item):
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pycti/__init__.py,sha256=
|
|
1
|
+
pycti/__init__.py,sha256=1ixsJJHSPs3eAD9q1R5nLJBZFHFqkJtSw_XccMOI7VQ,5677
|
|
2
2
|
pycti/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
pycti/api/opencti_api_client.py,sha256=lbygp2fOsmTKIrM-8Y7GxFzCZzdFStC0dhxyKYs0Wzo,35368
|
|
4
4
|
pycti/api/opencti_api_connector.py,sha256=8xwHuLINP3ZCImzE9_K_iCR9QEA3K6aHpK4bJhcZf20,5582
|
|
@@ -20,17 +20,17 @@ pycti/entities/opencti_attack_pattern.py,sha256=HVfLhtd8rlT42xutRS8qOkDsG5_Ws4Eo
|
|
|
20
20
|
pycti/entities/opencti_campaign.py,sha256=FIweLdt2oL70m2meamV-9NDheihL8EofjQ6G1oLLqfY,18079
|
|
21
21
|
pycti/entities/opencti_capability.py,sha256=mAR3AT__w6ULuAgc4T_QYxDwW9Jz8bsXQ8SDKF2BCL4,1515
|
|
22
22
|
pycti/entities/opencti_case_incident.py,sha256=N-9fSJawE7cK-AW2mE1wvB3oXjzJrim6G_UIioIAI7M,34731
|
|
23
|
-
pycti/entities/opencti_case_rfi.py,sha256=
|
|
24
|
-
pycti/entities/opencti_case_rft.py,sha256=
|
|
23
|
+
pycti/entities/opencti_case_rfi.py,sha256=nbiqptmdf2W8UsYfqrbZOXMcRg1ldzB0TTgCHkhzcrg,35038
|
|
24
|
+
pycti/entities/opencti_case_rft.py,sha256=qrZReo83dSmMvJhsOQDHGZk065D5sNWW9CiMZZt5IBo,35961
|
|
25
25
|
pycti/entities/opencti_channel.py,sha256=JPVy-DYcQnyxpySaX9xP8LkXmD6WZxEEnbJDfYVTlWY,16669
|
|
26
26
|
pycti/entities/opencti_course_of_action.py,sha256=dVIJDF8GmuAZFchoC9EHZbyRbcEhoehOHEnUq5areME,18987
|
|
27
27
|
pycti/entities/opencti_data_component.py,sha256=C8FHkEmeywlZJWpU4lz9C5DFmTQC3i0Zbg6SishfM5U,19559
|
|
28
28
|
pycti/entities/opencti_data_source.py,sha256=OqgeOkQl463aREDb8CkFwVrYngKTNYnUTyghi8hmr8o,18444
|
|
29
29
|
pycti/entities/opencti_event.py,sha256=lGqxCnurlcbIXDMdKIFI2gaxjq2LNJoj8k8HGQnKHXo,17099
|
|
30
|
-
pycti/entities/opencti_external_reference.py,sha256=
|
|
30
|
+
pycti/entities/opencti_external_reference.py,sha256=K7tyTCH5LPxCPE_uS16OcB5fbVHGGkOeoGyYUb1d5zQ,13656
|
|
31
31
|
pycti/entities/opencti_feedback.py,sha256=nhOZrhM87_RaHgMZrhiosRJ_Ly0d1wxN6YyrlbdSSGg,32710
|
|
32
32
|
pycti/entities/opencti_group.py,sha256=GgtA1zZunjXjxPdXc3wOV8Veitte0IGmRF1WwFYWs80,26390
|
|
33
|
-
pycti/entities/opencti_grouping.py,sha256=
|
|
33
|
+
pycti/entities/opencti_grouping.py,sha256=SzvVQnxb7Xz7_EulW7wDj99Lpa5xx9_AqxeYC3NqBFU,31218
|
|
34
34
|
pycti/entities/opencti_identity.py,sha256=Ih2LvYrDKXXFoQOjcsFv0ipTW3PBCtNtrBkyGWU-__8,26703
|
|
35
35
|
pycti/entities/opencti_incident.py,sha256=mQn2PN2enf9CYoM2vFD3f8S2hIZj8pbiBUZOQ4cMT7Q,18966
|
|
36
36
|
pycti/entities/opencti_indicator.py,sha256=DX-erowuSw3yfAGacIK5CGKUsIhiUfoTER8NwVH7myI,22732
|
|
@@ -53,8 +53,8 @@ pycti/entities/opencti_settings.py,sha256=3dArFaPPdcFTV44uGRffjHpnDE-MKIXgd496QZ
|
|
|
53
53
|
pycti/entities/opencti_stix.py,sha256=9jVg21hXXaKMl5U8Mh6Df3U8IIjP7k9py5VGzn1qFzk,2410
|
|
54
54
|
pycti/entities/opencti_stix_core_object.py,sha256=EMu3Vh72ALcHE4O5hk_2viP6VnBL-obsR_zhIxslzjs,63456
|
|
55
55
|
pycti/entities/opencti_stix_core_relationship.py,sha256=aqguOR9n9jyL7Ez7xRoAO5EQ3wA6XcgTXxrYDGjw3cI,47786
|
|
56
|
-
pycti/entities/opencti_stix_cyber_observable.py,sha256=
|
|
57
|
-
pycti/entities/opencti_stix_domain_object.py,sha256=
|
|
56
|
+
pycti/entities/opencti_stix_cyber_observable.py,sha256=7OS_bvZpdgtdAvF8CMmJyJsdJKoIJSCzWhXtqMyCfUs,93330
|
|
57
|
+
pycti/entities/opencti_stix_domain_object.py,sha256=Di4dNbnJnUlpEBfetU8iPcf-H4VqOPY_oXeN3W3ps9U,82922
|
|
58
58
|
pycti/entities/opencti_stix_nested_ref_relationship.py,sha256=7USJlfTanPFY16aFIH2YONdRakrfoBuIbB0d0I52PSM,12479
|
|
59
59
|
pycti/entities/opencti_stix_object_or_stix_relationship.py,sha256=djQ1-2tghFc_mxxuBo2IVAuUNsR08bQZtq_04hGEBIo,20019
|
|
60
60
|
pycti/entities/opencti_stix_sighting_relationship.py,sha256=Unih_8vUzR2i_1cFJ73j4dzogxLis4hrOiMwFeoCu1Q,31838
|
|
@@ -74,13 +74,13 @@ pycti/entities/stix_cyber_observable/opencti_stix_cyber_observable_properties.py
|
|
|
74
74
|
pycti/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
75
|
pycti/utils/constants.py,sha256=VRYRvDm6hkTR0ZcHHWMzQBwqlPRskYnusBpgoX0S05A,12854
|
|
76
76
|
pycti/utils/opencti_logger.py,sha256=BHNy9fJuTUTn_JEYSCmyvVwd6y-9ZJKxO40mY4iZ0bc,2226
|
|
77
|
-
pycti/utils/opencti_stix2.py,sha256=
|
|
77
|
+
pycti/utils/opencti_stix2.py,sha256=OKwp95ierTnh0p0j_aRZhuNk2ArbNYGVdBjGq2tYtME,134131
|
|
78
78
|
pycti/utils/opencti_stix2_identifier.py,sha256=k8L1z4q1xdCBfxqUba4YS_kT-MmbJFxYh0RvfGOmrOs,837
|
|
79
79
|
pycti/utils/opencti_stix2_splitter.py,sha256=sjD9mN6jEea7Zr1k17rNiYaozLcDU4qg0HgIixXRHt4,11371
|
|
80
80
|
pycti/utils/opencti_stix2_update.py,sha256=CnMyqkeVA0jgyxEcgqna8sABU4YPMjkEJ228GVurIn4,14658
|
|
81
81
|
pycti/utils/opencti_stix2_utils.py,sha256=4vu-j3weP9IS3Ky31exOIw4t3fBg00emCTRlVpevrTU,5582
|
|
82
|
-
pycti-6.7.
|
|
83
|
-
pycti-6.7.
|
|
84
|
-
pycti-6.7.
|
|
85
|
-
pycti-6.7.
|
|
86
|
-
pycti-6.7.
|
|
82
|
+
pycti-6.7.19.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
83
|
+
pycti-6.7.19.dist-info/METADATA,sha256=gSpCU7Zp4coqtQKcFfoWmoTkXyGyaCINH1K-sMoNDUw,5536
|
|
84
|
+
pycti-6.7.19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
85
|
+
pycti-6.7.19.dist-info/top_level.txt,sha256=cqEpxitAhHP4VgSA6xmrak6Yk9MeBkwoMTB6k7d2ZnE,6
|
|
86
|
+
pycti-6.7.19.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|