pycti 5.12.33__py3-none-any.whl → 6.0.0__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/connector/opencti_connector_helper.py +163 -44
- pycti/entities/opencti_campaign.py +10 -0
- pycti/entities/opencti_case_incident.py +13 -3
- pycti/entities/opencti_case_rfi.py +12 -0
- pycti/entities/opencti_case_rft.py +12 -0
- pycti/entities/opencti_channel.py +10 -0
- pycti/entities/opencti_data_component.py +10 -0
- pycti/entities/opencti_event.py +10 -0
- pycti/entities/opencti_external_reference.py +4 -2
- pycti/entities/opencti_grouping.py +10 -0
- pycti/entities/opencti_incident.py +10 -0
- pycti/entities/opencti_indicator.py +10 -0
- pycti/entities/opencti_infrastructure.py +10 -0
- pycti/entities/opencti_intrusion_set.py +10 -0
- pycti/entities/opencti_malware.py +10 -0
- pycti/entities/opencti_malware_analysis.py +11 -1
- pycti/entities/opencti_note.py +5 -0
- pycti/entities/opencti_observed_data.py +10 -0
- pycti/entities/opencti_report.py +27 -3
- pycti/entities/opencti_stix_core_object.py +127 -117
- pycti/entities/opencti_stix_core_relationship.py +12 -5
- pycti/entities/opencti_stix_cyber_observable.py +14 -2
- pycti/entities/opencti_stix_domain_object.py +14 -2
- pycti/entities/opencti_stix_object_or_stix_relationship.py +5 -0
- pycti/entities/opencti_stix_sighting_relationship.py +5 -0
- pycti/entities/opencti_threat_actor.py +5 -0
- pycti/entities/opencti_threat_actor_group.py +5 -0
- pycti/entities/opencti_threat_actor_individual.py +5 -0
- pycti/utils/opencti_stix2.py +83 -73
- {pycti-5.12.33.dist-info → pycti-6.0.0.dist-info}/METADATA +4 -3
- pycti-6.0.0.dist-info/RECORD +68 -0
- pycti-5.12.33.dist-info/RECORD +0 -68
- {pycti-5.12.33.dist-info → pycti-6.0.0.dist-info}/LICENSE +0 -0
- {pycti-5.12.33.dist-info → pycti-6.0.0.dist-info}/WHEEL +0 -0
- {pycti-5.12.33.dist-info → pycti-6.0.0.dist-info}/top_level.txt +0 -0
pycti/utils/opencti_stix2.py
CHANGED
|
@@ -557,6 +557,7 @@ class OpenCTIStix2:
|
|
|
557
557
|
self.opencti.external_reference.add_file(
|
|
558
558
|
id=external_reference_id,
|
|
559
559
|
file_name=file["name"],
|
|
560
|
+
version=file["version"],
|
|
560
561
|
data=base64.b64decode(file["data"]),
|
|
561
562
|
mime_type=file["mime_type"],
|
|
562
563
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
@@ -573,6 +574,7 @@ class OpenCTIStix2:
|
|
|
573
574
|
self.opencti.external_reference.add_file(
|
|
574
575
|
id=external_reference_id,
|
|
575
576
|
file_name=file["name"],
|
|
577
|
+
version=file["version"],
|
|
576
578
|
data=base64.b64decode(file["data"]),
|
|
577
579
|
mime_type=file["mime_type"],
|
|
578
580
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
@@ -723,6 +725,7 @@ class OpenCTIStix2:
|
|
|
723
725
|
self.opencti.external_reference.add_file(
|
|
724
726
|
id=external_reference_id,
|
|
725
727
|
file_name=file["name"],
|
|
728
|
+
version=file["version"],
|
|
726
729
|
data=base64.b64decode(file["data"]),
|
|
727
730
|
mime_type=file["mime_type"],
|
|
728
731
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
@@ -737,6 +740,7 @@ class OpenCTIStix2:
|
|
|
737
740
|
self.opencti.external_reference.add_file(
|
|
738
741
|
id=external_reference_id,
|
|
739
742
|
file_name=file["name"],
|
|
743
|
+
version=file["version"],
|
|
740
744
|
data=base64.b64decode(file["data"]),
|
|
741
745
|
mime_type=file["mime_type"],
|
|
742
746
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
@@ -746,13 +750,15 @@ class OpenCTIStix2:
|
|
|
746
750
|
# Granted refs
|
|
747
751
|
granted_refs_ids = []
|
|
748
752
|
if (
|
|
749
|
-
"
|
|
753
|
+
"x_opencti_granted_refs" not in stix_object
|
|
750
754
|
and self.opencti.get_attribute_in_extension("granted_refs", stix_object)
|
|
751
755
|
is not None
|
|
752
756
|
):
|
|
753
757
|
granted_refs_ids = self.opencti.get_attribute_in_extension(
|
|
754
758
|
"granted_refs", stix_object
|
|
755
759
|
)
|
|
760
|
+
elif "x_opencti_granted_refs" in stix_object:
|
|
761
|
+
granted_refs_ids = stix_object["x_opencti_granted_refs"]
|
|
756
762
|
|
|
757
763
|
return {
|
|
758
764
|
"created_by": created_by_id,
|
|
@@ -766,6 +772,53 @@ class OpenCTIStix2:
|
|
|
766
772
|
"reports": reports,
|
|
767
773
|
}
|
|
768
774
|
|
|
775
|
+
def get_readers(self):
|
|
776
|
+
return {
|
|
777
|
+
"Attack-Pattern": self.opencti.attack_pattern.read,
|
|
778
|
+
"Campaign": self.opencti.campaign.read,
|
|
779
|
+
"Case-Incident": self.opencti.case_incident.read,
|
|
780
|
+
"Case-Rfi": self.opencti.case_rfi.read,
|
|
781
|
+
"Case-Rft": self.opencti.case_rft.read,
|
|
782
|
+
"Channel": self.opencti.channel.read,
|
|
783
|
+
"Course-Of-Action": self.opencti.course_of_action.read,
|
|
784
|
+
"Data-Component": self.opencti.data_component.read,
|
|
785
|
+
"Data-Source": self.opencti.data_source.read,
|
|
786
|
+
"Event": self.opencti.event.read,
|
|
787
|
+
"External-Reference": self.opencti.external_reference.read,
|
|
788
|
+
"Feedback": self.opencti.feedback.read,
|
|
789
|
+
"Grouping": self.opencti.grouping.read,
|
|
790
|
+
"Incident": self.opencti.incident.read,
|
|
791
|
+
"Identity": self.opencti.identity.read,
|
|
792
|
+
"Indicator": self.opencti.indicator.read,
|
|
793
|
+
"Infrastructure": self.opencti.infrastructure.read,
|
|
794
|
+
"Intrusion-Set": self.opencti.intrusion_set.read,
|
|
795
|
+
"Kill-Chain-Phase": self.opencti.kill_chain_phase.read,
|
|
796
|
+
"Label": self.opencti.label.read,
|
|
797
|
+
"Location": self.opencti.location.read,
|
|
798
|
+
"Language": self.opencti.language.read,
|
|
799
|
+
"Malware": self.opencti.malware.read,
|
|
800
|
+
"Malware-Analysis": self.opencti.malware_analysis.read,
|
|
801
|
+
"Marking-Definition": self.opencti.marking_definition.read,
|
|
802
|
+
"Narrative": self.opencti.narrative.read,
|
|
803
|
+
"Note": self.opencti.note.read,
|
|
804
|
+
"Observed-Data": self.opencti.observed_data.read,
|
|
805
|
+
"Opinion": self.opencti.opinion.read,
|
|
806
|
+
"Report": self.opencti.report.read,
|
|
807
|
+
"Stix-Core-Object": self.opencti.stix_core_object.read,
|
|
808
|
+
"Stix-Cyber-Observable": self.opencti.stix_cyber_observable.read,
|
|
809
|
+
"Stix-Domain-Object": self.opencti.stix_domain_object.read,
|
|
810
|
+
"stix-core-relationship": self.opencti.stix_core_relationship.read,
|
|
811
|
+
"stix-sighting-relationship": self.opencti.stix_sighting_relationship.read,
|
|
812
|
+
"stix-nested-relationship": self.opencti.stix_nested_ref_relationship.read,
|
|
813
|
+
"Task": self.opencti.task.read,
|
|
814
|
+
"Threat-Actor": self.opencti.threat_actor.read,
|
|
815
|
+
"Threat-Actor-Group": self.opencti.threat_actor_group.read,
|
|
816
|
+
"Threat-Actor-Individual": self.opencti.threat_actor_individual.read,
|
|
817
|
+
"Tool": self.opencti.tool.read,
|
|
818
|
+
"Vocabulary": self.opencti.vocabulary.read,
|
|
819
|
+
"Vulnerability": self.opencti.vulnerability.read,
|
|
820
|
+
}
|
|
821
|
+
|
|
769
822
|
# endregion
|
|
770
823
|
|
|
771
824
|
# region import
|
|
@@ -898,6 +951,7 @@ class OpenCTIStix2:
|
|
|
898
951
|
self.opencti.stix_domain_object.add_file(
|
|
899
952
|
id=stix_object_result["id"],
|
|
900
953
|
file_name=file["name"],
|
|
954
|
+
version=file["version"],
|
|
901
955
|
data=base64.b64decode(file["data"]),
|
|
902
956
|
mime_type=file["mime_type"],
|
|
903
957
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
@@ -912,6 +966,7 @@ class OpenCTIStix2:
|
|
|
912
966
|
self.opencti.stix_domain_object.add_file(
|
|
913
967
|
id=stix_object_result["id"],
|
|
914
968
|
file_name=file["name"],
|
|
969
|
+
version=file["version"],
|
|
915
970
|
data=base64.b64decode(file["data"]),
|
|
916
971
|
mime_type=file["mime_type"],
|
|
917
972
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
@@ -1019,6 +1074,7 @@ class OpenCTIStix2:
|
|
|
1019
1074
|
self.opencti.stix_cyber_observable.add_file(
|
|
1020
1075
|
id=stix_observable_result["id"],
|
|
1021
1076
|
file_name=file["name"],
|
|
1077
|
+
version=file["version"],
|
|
1022
1078
|
data=base64.b64decode(file["data"]),
|
|
1023
1079
|
mime_type=file["mime_type"],
|
|
1024
1080
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
@@ -1033,6 +1089,7 @@ class OpenCTIStix2:
|
|
|
1033
1089
|
self.opencti.stix_cyber_observable.add_file(
|
|
1034
1090
|
id=stix_observable_result["id"],
|
|
1035
1091
|
file_name=file["name"],
|
|
1092
|
+
version=file["version"],
|
|
1036
1093
|
data=base64.b64decode(file["data"]),
|
|
1037
1094
|
mime_type=file["mime_type"],
|
|
1038
1095
|
no_trigger_import=file.get("no_trigger_import", False),
|
|
@@ -1052,6 +1109,7 @@ class OpenCTIStix2:
|
|
|
1052
1109
|
"created_by_ref",
|
|
1053
1110
|
"object_marking_refs",
|
|
1054
1111
|
"x_opencti_created_by_ref",
|
|
1112
|
+
"x_opencti_granted_refs",
|
|
1055
1113
|
]:
|
|
1056
1114
|
if key.endswith("_ref"):
|
|
1057
1115
|
relationship_type = key.replace("_ref", "")
|
|
@@ -1408,6 +1466,14 @@ class OpenCTIStix2:
|
|
|
1408
1466
|
del entity["valid_from"]
|
|
1409
1467
|
|
|
1410
1468
|
# Flatten
|
|
1469
|
+
if "tasks" in entity:
|
|
1470
|
+
del entity["tasks"]
|
|
1471
|
+
|
|
1472
|
+
if "status" in entity:
|
|
1473
|
+
entity["x_opencti_workflow_id"] = entity["status"].get("id")
|
|
1474
|
+
if "status" in entity:
|
|
1475
|
+
del entity["status"]
|
|
1476
|
+
|
|
1411
1477
|
if "objectLabel" in entity and len(entity["objectLabel"]) > 0:
|
|
1412
1478
|
entity["labels"] = []
|
|
1413
1479
|
for object_label in entity["objectLabel"]:
|
|
@@ -1584,6 +1650,20 @@ class OpenCTIStix2:
|
|
|
1584
1650
|
if key.startswith("x_"):
|
|
1585
1651
|
del entity[key]
|
|
1586
1652
|
entity["x_opencti_id"] = entity_copy["x_opencti_id"]
|
|
1653
|
+
# ObjectOrganization
|
|
1654
|
+
if (
|
|
1655
|
+
not no_custom_attributes
|
|
1656
|
+
and "objectOrganization" in entity
|
|
1657
|
+
and len(entity["objectOrganization"]) > 0
|
|
1658
|
+
):
|
|
1659
|
+
entity["x_opencti_granted_refs"] = []
|
|
1660
|
+
for entity_organization in entity["objectOrganization"]:
|
|
1661
|
+
entity["x_opencti_granted_refs"].append(
|
|
1662
|
+
entity_organization["standard_id"]
|
|
1663
|
+
)
|
|
1664
|
+
if "objectOrganization" in entity:
|
|
1665
|
+
del entity["objectOrganization"]
|
|
1666
|
+
|
|
1587
1667
|
# ObjectMarkingRefs
|
|
1588
1668
|
if (
|
|
1589
1669
|
not no_custom_attributes
|
|
@@ -1918,42 +1998,7 @@ class OpenCTIStix2:
|
|
|
1918
1998
|
if no_custom_attributes:
|
|
1919
1999
|
del entity["x_opencti_id"]
|
|
1920
2000
|
# Export
|
|
1921
|
-
reader =
|
|
1922
|
-
"Attack-Pattern": self.opencti.attack_pattern.read,
|
|
1923
|
-
"Campaign": self.opencti.campaign.read,
|
|
1924
|
-
"Channel": self.opencti.channel.read,
|
|
1925
|
-
"Note": self.opencti.note.read,
|
|
1926
|
-
"Observed-Data": self.opencti.observed_data.read,
|
|
1927
|
-
"Opinion": self.opencti.opinion.read,
|
|
1928
|
-
"Report": self.opencti.report.read,
|
|
1929
|
-
"Case-Incident": self.opencti.case_incident.read,
|
|
1930
|
-
"Feedback": self.opencti.feedback.read,
|
|
1931
|
-
"Case-Rfi": self.opencti.case_rfi.read,
|
|
1932
|
-
"Case-Rft": self.opencti.case_rft.read,
|
|
1933
|
-
"Task": self.opencti.task.read,
|
|
1934
|
-
"Course-Of-Action": self.opencti.course_of_action.read,
|
|
1935
|
-
"Data-Component": self.opencti.data_component.read,
|
|
1936
|
-
"Data-Source": self.opencti.data_source.read,
|
|
1937
|
-
"Identity": self.opencti.identity.read,
|
|
1938
|
-
"Indicator": self.opencti.indicator.read,
|
|
1939
|
-
"Infrastructure": self.opencti.infrastructure.read,
|
|
1940
|
-
"Intrusion-Set": self.opencti.intrusion_set.read,
|
|
1941
|
-
"Location": self.opencti.location.read,
|
|
1942
|
-
"Language": self.opencti.language.read,
|
|
1943
|
-
"Malware": self.opencti.malware.read,
|
|
1944
|
-
"Malware-Analysis": self.opencti.malware_analysis.read,
|
|
1945
|
-
"Threat-Actor": self.opencti.threat_actor.read,
|
|
1946
|
-
"Threat-Actor-Group": self.opencti.threat_actor_group.read,
|
|
1947
|
-
"Threat-Actor-Individual": self.opencti.threat_actor_individual.read,
|
|
1948
|
-
"Tool": self.opencti.tool.read,
|
|
1949
|
-
"Vulnerability": self.opencti.vulnerability.read,
|
|
1950
|
-
"Incident": self.opencti.incident.read,
|
|
1951
|
-
"Stix-Core-Object": self.opencti.stix_core_object.read,
|
|
1952
|
-
"Stix-Cyber-Observable": self.opencti.stix_cyber_observable.read,
|
|
1953
|
-
"Stix-Domain-Object": self.opencti.stix_domain_object.read,
|
|
1954
|
-
"stix-core-relationship": self.opencti.stix_core_relationship.read,
|
|
1955
|
-
"stix-sighting-relationship": self.opencti.stix_sighting_relationship.read,
|
|
1956
|
-
}
|
|
2001
|
+
reader = self.get_readers()
|
|
1957
2002
|
# Get extra objects
|
|
1958
2003
|
for entity_object in objects_to_get:
|
|
1959
2004
|
# Map types
|
|
@@ -2087,42 +2132,7 @@ class OpenCTIStix2:
|
|
|
2087
2132
|
entity_type = "Location"
|
|
2088
2133
|
|
|
2089
2134
|
# Reader
|
|
2090
|
-
reader =
|
|
2091
|
-
"Attack-Pattern": self.opencti.attack_pattern.read,
|
|
2092
|
-
"Campaign": self.opencti.campaign.read,
|
|
2093
|
-
"Channel": self.opencti.channel.read,
|
|
2094
|
-
"Event": self.opencti.campaign.read,
|
|
2095
|
-
"Note": self.opencti.note.read,
|
|
2096
|
-
"Observed-Data": self.opencti.observed_data.read,
|
|
2097
|
-
"Opinion": self.opencti.opinion.read,
|
|
2098
|
-
"Report": self.opencti.report.read,
|
|
2099
|
-
"Grouping": self.opencti.grouping.read,
|
|
2100
|
-
"Case-Incident": self.opencti.case_incident.read,
|
|
2101
|
-
"Feedback": self.opencti.feedback.read,
|
|
2102
|
-
"Case-Rfi": self.opencti.case_rfi.read,
|
|
2103
|
-
"Case-Rft": self.opencti.case_rft.read,
|
|
2104
|
-
"Task": self.opencti.task.read,
|
|
2105
|
-
"Course-Of-Action": self.opencti.course_of_action.read,
|
|
2106
|
-
"Data-Component": self.opencti.data_component.read,
|
|
2107
|
-
"Data-Source": self.opencti.data_source.read,
|
|
2108
|
-
"Identity": self.opencti.identity.read,
|
|
2109
|
-
"Indicator": self.opencti.indicator.read,
|
|
2110
|
-
"Infrastructure": self.opencti.infrastructure.read,
|
|
2111
|
-
"Intrusion-Set": self.opencti.intrusion_set.read,
|
|
2112
|
-
"Location": self.opencti.location.read,
|
|
2113
|
-
"Language": self.opencti.language.read,
|
|
2114
|
-
"Malware": self.opencti.malware.read,
|
|
2115
|
-
"Malware-Analysis": self.opencti.malware_analysis.read,
|
|
2116
|
-
"Threat-Actor": self.opencti.threat_actor.read,
|
|
2117
|
-
"Threat-Actor-Group": self.opencti.threat_actor_group.read,
|
|
2118
|
-
"Threat-Actor-Individual": self.opencti.threat_actor_individual.read,
|
|
2119
|
-
"Tool": self.opencti.tool.read,
|
|
2120
|
-
"Narrative": self.opencti.narrative.read,
|
|
2121
|
-
"Vulnerability": self.opencti.vulnerability.read,
|
|
2122
|
-
"Incident": self.opencti.incident.read,
|
|
2123
|
-
"Stix-Cyber-Observable": self.opencti.stix_cyber_observable.read,
|
|
2124
|
-
"stix-core-relationship": self.opencti.stix_core_relationship.read,
|
|
2125
|
-
}
|
|
2135
|
+
reader = self.get_readers()
|
|
2126
2136
|
if StixCyberObservableTypes.has_value(entity_type):
|
|
2127
2137
|
entity_type = "Stix-Cyber-Observable"
|
|
2128
2138
|
do_read = reader.get(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pycti
|
|
3
|
-
Version:
|
|
3
|
+
Version: 6.0.0
|
|
4
4
|
Summary: Python API client for OpenCTI.
|
|
5
5
|
Home-page: https://github.com/OpenCTI-Platform/client-python
|
|
6
6
|
Author: Filigran
|
|
@@ -47,7 +47,7 @@ Requires-Dist: types-python-dateutil ~=2.8.19 ; extra == 'dev'
|
|
|
47
47
|
Requires-Dist: wheel ~=0.42.0 ; extra == 'dev'
|
|
48
48
|
Provides-Extra: doc
|
|
49
49
|
Requires-Dist: autoapi ~=2.0.1 ; extra == 'doc'
|
|
50
|
-
Requires-Dist: sphinx-autodoc-typehints ~=
|
|
50
|
+
Requires-Dist: sphinx-autodoc-typehints ~=2.0.0 ; extra == 'doc'
|
|
51
51
|
Requires-Dist: sphinx-rtd-theme ~=2.0.0 ; extra == 'doc'
|
|
52
52
|
|
|
53
53
|
# OpenCTI client for Python
|
|
@@ -145,4 +145,5 @@ $ pytest ./tests/02-integration/
|
|
|
145
145
|
|
|
146
146
|
OpenCTI is a product designed and developed by the company [Filigran](https://filigran.io).
|
|
147
147
|
|
|
148
|
-
|
|
148
|
+

|
|
149
|
+

|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
pycti/__init__.py,sha256=yfEC42eJ_u-42le1cDNoyHMfgYcJQ8MHrT1EcPuZc-0,4691
|
|
2
|
+
pycti/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
pycti/api/opencti_api_client.py,sha256=Kydofv47L-YyNHhRjx2e_E6nn0vI-5Pb7WZjH9hb-YM,28846
|
|
4
|
+
pycti/api/opencti_api_connector.py,sha256=fYF0Jy9KIMFNt1RC_A1rpWomVJ-oj5HiSsBem4W0J5U,3549
|
|
5
|
+
pycti/api/opencti_api_playbook.py,sha256=Wcf-G__IHmR7LwtUFVUVx4Skg9e2mcb89n_HyfWC9YM,1383
|
|
6
|
+
pycti/api/opencti_api_work.py,sha256=ow30gswv4k5zLlZGlvLAn47ZM07RLsYvEV-KwtwedQg,7109
|
|
7
|
+
pycti/connector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
pycti/connector/opencti_connector.py,sha256=0vrZ8Y8ecbxegAP1YhpX6ybOZahYjjOkcId51D1oBi4,2449
|
|
9
|
+
pycti/connector/opencti_connector_helper.py,sha256=GexhITraTCNxLhy84n2jVHx8EOJU02qljeuj9vaxh8k,55822
|
|
10
|
+
pycti/connector/opencti_metric_handler.py,sha256=4jXHeJflomtHjuQ_YU0b36TG7o26vOWbY_jvU8Ezobs,3725
|
|
11
|
+
pycti/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
pycti/entities/opencti_attack_pattern.py,sha256=j3rhNrlg_SScb_b-t0vnUltE22R7iKu6d9yGcQS54v4,21847
|
|
13
|
+
pycti/entities/opencti_campaign.py,sha256=YHEN7hdY-E-1uVNyaZHCv9QPLALvOY08ErOzUKcvr6c,17107
|
|
14
|
+
pycti/entities/opencti_case_incident.py,sha256=aoV-uj9VSvAczQot5_wao_07JomllLHjO76_deWAhUg,33699
|
|
15
|
+
pycti/entities/opencti_case_rfi.py,sha256=wboFfQQnE7qjnqnLsw2nxmGAjH1eYjVgayKKAk7a8pI,31876
|
|
16
|
+
pycti/entities/opencti_case_rft.py,sha256=RIefvKibRZ_Qrk4uybEGxnwJ2SAquPXYm4-uJ8RUskg,32760
|
|
17
|
+
pycti/entities/opencti_channel.py,sha256=cA8ltYJpB43rUSKvCPyLUJvtdb_RSJ4tuuUdi_EMF2Q,16608
|
|
18
|
+
pycti/entities/opencti_course_of_action.py,sha256=hHjMj8V7Shx275bdvXWAomzsGOz8muco36jTC6GgeHw,18001
|
|
19
|
+
pycti/entities/opencti_data_component.py,sha256=sysuoh_blUlP1ZKzD6VqHkWZW09-gWVl1Wh8y9vG9Uc,18582
|
|
20
|
+
pycti/entities/opencti_data_source.py,sha256=YXhwvacEZCkHBUkW3eRaCwcGRKw1ZRgAjL4C1o-gbKU,17470
|
|
21
|
+
pycti/entities/opencti_event.py,sha256=Pam3eeR_Ytl_the-kV9IxXcfJKs2vRqN61igyDAlVE4,16706
|
|
22
|
+
pycti/entities/opencti_external_reference.py,sha256=IMyPTDjIygmxaMjE7rTHBjUwchmYtI7Jwss3TGcHdKY,13208
|
|
23
|
+
pycti/entities/opencti_feedback.py,sha256=cWfrMkIz_hj34ndVvty5YhDvuIDqmazgFVIGPtX7Zao,31738
|
|
24
|
+
pycti/entities/opencti_grouping.py,sha256=ESHKhmziy3pCNwPRKYStZi5p-TBE_u2D5j-v-4isYhQ,29320
|
|
25
|
+
pycti/entities/opencti_identity.py,sha256=YKTQugOSwyxSoMRWSdMWZkagidTbYQzi-Q1aEWO1a_8,22879
|
|
26
|
+
pycti/entities/opencti_incident.py,sha256=iKtqBMtS9_j9v-uqsXdWEF3KPYteOvdCa8wR1eSdXpo,18331
|
|
27
|
+
pycti/entities/opencti_indicator.py,sha256=m7UM_I1TMS_601w5zUIRM7SvqtEh_-8zYR-y1lf_z08,27005
|
|
28
|
+
pycti/entities/opencti_infrastructure.py,sha256=hpzlSP8yQCSjYyOvX_oynBJq0YMp-Uq7PRhP_L6j9wk,19353
|
|
29
|
+
pycti/entities/opencti_intrusion_set.py,sha256=E0nSfc2pestsFmHVaZz3y3LFp_uR4tHxswFQsx7OvX8,17392
|
|
30
|
+
pycti/entities/opencti_kill_chain_phase.py,sha256=a509rFeIchPRlO5rMHPVxrxfUuTbV4znh6e_NJHC66I,8062
|
|
31
|
+
pycti/entities/opencti_label.py,sha256=6RZJPIa_dXf_YNNU4xXKghfBnpNjhU5YXOaSIcB4YrM,8800
|
|
32
|
+
pycti/entities/opencti_language.py,sha256=eHB7qzf_l2Mno_Wy9kF0QUdcBktWgr4kRHhb9AxT0c0,16176
|
|
33
|
+
pycti/entities/opencti_location.py,sha256=uet-YxkvTvcD2rh2VbQM2hS7F9Uj-dwmXixSJOKN5zs,16970
|
|
34
|
+
pycti/entities/opencti_malware.py,sha256=h5RyScDFwbYaJtTxH9gUVBwJG4fAvcnoUpuI9HeT254,20127
|
|
35
|
+
pycti/entities/opencti_malware_analysis.py,sha256=grOJTiuZfCU464AgnF-VDO97geFfKNCR-SW40SiewNQ,20904
|
|
36
|
+
pycti/entities/opencti_marking_definition.py,sha256=2HkU58XWOZHuEFXrscshQIHW-KVyZSr02JRzBQYZirI,12862
|
|
37
|
+
pycti/entities/opencti_narrative.py,sha256=qiuFQub04pvArYf5hHJEgZtneR7p-VQq5YywiN-rlRM,16468
|
|
38
|
+
pycti/entities/opencti_note.py,sha256=tGxOzSJiiHYZNrCpiVnvwY_qiBYURQ0G5wgL9dSWmhE,29938
|
|
39
|
+
pycti/entities/opencti_observed_data.py,sha256=1WFOJLxOh3k-3cWvnyIiEk0hF92tpk5ohvPHeR2zVG4,30550
|
|
40
|
+
pycti/entities/opencti_opinion.py,sha256=SPcY8-0zRJCMle-eDLka-CFPyAqU3CnVVBtfVYhzyJE,21837
|
|
41
|
+
pycti/entities/opencti_report.py,sha256=tSMSCsAGgZny94EjFtidEws7Uf0gBI-nPHwkqPg2Elc,33037
|
|
42
|
+
pycti/entities/opencti_stix.py,sha256=uMheSg8i1f2Ozx2Mk0iShWzHHjj6MMWDtV5nDjVxKEE,2275
|
|
43
|
+
pycti/entities/opencti_stix_core_object.py,sha256=QRiAk5_loi4JLJN4aXSq8DTwFFzOLhbA7Y-2R3aO8kw,48728
|
|
44
|
+
pycti/entities/opencti_stix_core_relationship.py,sha256=cD825areOn2quv06M28YGE7A3bTQ8_Pxx1QW6JyoQBs,42895
|
|
45
|
+
pycti/entities/opencti_stix_cyber_observable.py,sha256=nIBRwRzRyQ8pMUfMW7lsqPrqfmMFltWr6aRCeB9M5rc,104708
|
|
46
|
+
pycti/entities/opencti_stix_domain_object.py,sha256=f8h0Mw0hje4W-3_wBBxhfSpqAibjr7y5usbTBJAs9_A,78735
|
|
47
|
+
pycti/entities/opencti_stix_nested_ref_relationship.py,sha256=2r1i7cUl-WWictlnC_MJrm9sTIt_yJe2uqTpQm-yo6o,12330
|
|
48
|
+
pycti/entities/opencti_stix_object_or_stix_relationship.py,sha256=NOJdUU9cm_gMBne13EZPb8cfxOhTfgVVmv8A0yasQeI,14610
|
|
49
|
+
pycti/entities/opencti_stix_sighting_relationship.py,sha256=AmX1LBS8cW5a_dlik_sx-nBDvUcqb193gs4m3pB9C5U,27584
|
|
50
|
+
pycti/entities/opencti_task.py,sha256=y4Q2vC-eLccX-yna85GnnCFEKWFJAWQcflNbkr9BClo,24668
|
|
51
|
+
pycti/entities/opencti_threat_actor.py,sha256=lRdPhXX_HsNSE5rTwkke_U5T_FAPGD22ow2-YeZdaYc,9950
|
|
52
|
+
pycti/entities/opencti_threat_actor_group.py,sha256=QQMt7D3RucIRczeVgcqAf3SurmkQLmK6QVI-M3d08p0,18996
|
|
53
|
+
pycti/entities/opencti_threat_actor_individual.py,sha256=Woa0ArlqD8L2MaoBXIsQzT0xwXQkjpR_r2EPszNB1Fs,19238
|
|
54
|
+
pycti/entities/opencti_tool.py,sha256=RJrBywXI7TfWvgga6M9hH4YBl32dsvro2z42V_EgzGY,14661
|
|
55
|
+
pycti/entities/opencti_vocabulary.py,sha256=6JfOByggvSxvkfIXk1b60T7fyWOhxZ6YFkGbSeV8F-4,5988
|
|
56
|
+
pycti/entities/opencti_vulnerability.py,sha256=dzJ0fZB2XrkPwT-cANr6atzYOWXF5nk0al86X7o2ZTo,20094
|
|
57
|
+
pycti/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
+
pycti/utils/constants.py,sha256=mAAeNGXyHU89yp8lihXBKF9fKncQCKwyxD2PVz5D2wI,7915
|
|
59
|
+
pycti/utils/opencti_logger.py,sha256=0dvB75V0SuPFGxL539dAQrxTt1N5Acx0A3Ogwl5WMJ8,2199
|
|
60
|
+
pycti/utils/opencti_stix2.py,sha256=t54-0w0NvhJ-mG-kN5IANpBiE6YZCPjz2Y1puTqk5TI,110632
|
|
61
|
+
pycti/utils/opencti_stix2_splitter.py,sha256=Ht9Mp-W3gbwxIKEr7i_5NYpcDr3TA2gYdC4TzOz0G4c,4496
|
|
62
|
+
pycti/utils/opencti_stix2_update.py,sha256=CnMyqkeVA0jgyxEcgqna8sABU4YPMjkEJ228GVurIn4,14658
|
|
63
|
+
pycti/utils/opencti_stix2_utils.py,sha256=_ijIz6SRP2OeIaWJcXJt8go510MUEGfWE3KY-I_9QZc,3725
|
|
64
|
+
pycti-6.0.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
65
|
+
pycti-6.0.0.dist-info/METADATA,sha256=l4mFHi7dcpkwSFBHTO7oMjTyl8TlyicrUKWI_VIEEVk,5398
|
|
66
|
+
pycti-6.0.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
67
|
+
pycti-6.0.0.dist-info/top_level.txt,sha256=cqEpxitAhHP4VgSA6xmrak6Yk9MeBkwoMTB6k7d2ZnE,6
|
|
68
|
+
pycti-6.0.0.dist-info/RECORD,,
|
pycti-5.12.33.dist-info/RECORD
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
pycti/__init__.py,sha256=FeOELu6mMo3ydJv38jl8ebypJNXcNP1iCoj8PM0ylKk,4693
|
|
2
|
-
pycti/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
pycti/api/opencti_api_client.py,sha256=Kydofv47L-YyNHhRjx2e_E6nn0vI-5Pb7WZjH9hb-YM,28846
|
|
4
|
-
pycti/api/opencti_api_connector.py,sha256=fYF0Jy9KIMFNt1RC_A1rpWomVJ-oj5HiSsBem4W0J5U,3549
|
|
5
|
-
pycti/api/opencti_api_playbook.py,sha256=Wcf-G__IHmR7LwtUFVUVx4Skg9e2mcb89n_HyfWC9YM,1383
|
|
6
|
-
pycti/api/opencti_api_work.py,sha256=ow30gswv4k5zLlZGlvLAn47ZM07RLsYvEV-KwtwedQg,7109
|
|
7
|
-
pycti/connector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
pycti/connector/opencti_connector.py,sha256=0vrZ8Y8ecbxegAP1YhpX6ybOZahYjjOkcId51D1oBi4,2449
|
|
9
|
-
pycti/connector/opencti_connector_helper.py,sha256=0de0p4kIDBbBCrbXDAXfGATBxYYlYvV_W6c0TiIAj6Y,50183
|
|
10
|
-
pycti/connector/opencti_metric_handler.py,sha256=4jXHeJflomtHjuQ_YU0b36TG7o26vOWbY_jvU8Ezobs,3725
|
|
11
|
-
pycti/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
pycti/entities/opencti_attack_pattern.py,sha256=j3rhNrlg_SScb_b-t0vnUltE22R7iKu6d9yGcQS54v4,21847
|
|
13
|
-
pycti/entities/opencti_campaign.py,sha256=sCHHMb7Id8eUGpyELGivEHXJXUwtUCSDy6xsl1KboCI,16877
|
|
14
|
-
pycti/entities/opencti_case_incident.py,sha256=cvljUwy2xkRIiBI-mrxLLwKqv4FpB7ovitCIFL9Ol2o,33465
|
|
15
|
-
pycti/entities/opencti_case_rfi.py,sha256=QBLGkxYveE4C5S-eIRxdy-dF51sALCH04yJd4YxiDhA,31586
|
|
16
|
-
pycti/entities/opencti_case_rft.py,sha256=QHqaE20XhFmKGLkCuMcSt8e1kNU82sKKh6Dbgxc5Jsg,32450
|
|
17
|
-
pycti/entities/opencti_channel.py,sha256=q8yeWR9r4q9RaqTvYMqUDZZjrn1WmswmVI8bRr1Cn-I,16378
|
|
18
|
-
pycti/entities/opencti_course_of_action.py,sha256=hHjMj8V7Shx275bdvXWAomzsGOz8muco36jTC6GgeHw,18001
|
|
19
|
-
pycti/entities/opencti_data_component.py,sha256=nq4DoMSb6S0MpuAl-GvUroDawdwYVS_bUQ-DHXavw08,18352
|
|
20
|
-
pycti/entities/opencti_data_source.py,sha256=YXhwvacEZCkHBUkW3eRaCwcGRKw1ZRgAjL4C1o-gbKU,17470
|
|
21
|
-
pycti/entities/opencti_event.py,sha256=GfRn1zeeKtrznOzRm6EgOKeUX43sUUnUfIF_bBFifNU,16476
|
|
22
|
-
pycti/entities/opencti_external_reference.py,sha256=JN6QPb7hQUarVOdydpPH73hBZR6qn5togpyoPZ7Iqw8,13091
|
|
23
|
-
pycti/entities/opencti_feedback.py,sha256=cWfrMkIz_hj34ndVvty5YhDvuIDqmazgFVIGPtX7Zao,31738
|
|
24
|
-
pycti/entities/opencti_grouping.py,sha256=Vq6Xn6ZcFZTGVCWnVe_gfPJkY4RezKjmsekHjHO8Wlc,29090
|
|
25
|
-
pycti/entities/opencti_identity.py,sha256=YKTQugOSwyxSoMRWSdMWZkagidTbYQzi-Q1aEWO1a_8,22879
|
|
26
|
-
pycti/entities/opencti_incident.py,sha256=dri1LB0yDNX9U9fwCKmOAa4m2Zkm09sddhCy9Mcrs8U,18101
|
|
27
|
-
pycti/entities/opencti_indicator.py,sha256=77XBeG8eVD-jmrC7tQl3bu2sLaD5GbhTnRHxiB6YNjQ,26775
|
|
28
|
-
pycti/entities/opencti_infrastructure.py,sha256=8MUMLUVexjJZxww8i4C_KB0mrJJMn-q3oXcOQqul7ew,19123
|
|
29
|
-
pycti/entities/opencti_intrusion_set.py,sha256=Ans4raXGxcE3mgDpMoC1z5dg3KeJmr_ce3Ypq-p4hic,17162
|
|
30
|
-
pycti/entities/opencti_kill_chain_phase.py,sha256=a509rFeIchPRlO5rMHPVxrxfUuTbV4znh6e_NJHC66I,8062
|
|
31
|
-
pycti/entities/opencti_label.py,sha256=6RZJPIa_dXf_YNNU4xXKghfBnpNjhU5YXOaSIcB4YrM,8800
|
|
32
|
-
pycti/entities/opencti_language.py,sha256=eHB7qzf_l2Mno_Wy9kF0QUdcBktWgr4kRHhb9AxT0c0,16176
|
|
33
|
-
pycti/entities/opencti_location.py,sha256=uet-YxkvTvcD2rh2VbQM2hS7F9Uj-dwmXixSJOKN5zs,16970
|
|
34
|
-
pycti/entities/opencti_malware.py,sha256=kj9YB53tYdpOug-shbflfHjvVcsmHnZXJ72hYQNJXao,19897
|
|
35
|
-
pycti/entities/opencti_malware_analysis.py,sha256=47b2HCsRLpm1gxAyrihZ_SQxvli-PqkJog_LaGB6QZE,20666
|
|
36
|
-
pycti/entities/opencti_marking_definition.py,sha256=2HkU58XWOZHuEFXrscshQIHW-KVyZSr02JRzBQYZirI,12862
|
|
37
|
-
pycti/entities/opencti_narrative.py,sha256=qiuFQub04pvArYf5hHJEgZtneR7p-VQq5YywiN-rlRM,16468
|
|
38
|
-
pycti/entities/opencti_note.py,sha256=8eg-PWOl8KudoTulR-0F7Op093DTC51MxW7ACOlQ6Io,29823
|
|
39
|
-
pycti/entities/opencti_observed_data.py,sha256=KBmShOrKiD_-gvDKBzp0dpV766pJnagVbTxb8XjgTLs,30320
|
|
40
|
-
pycti/entities/opencti_opinion.py,sha256=SPcY8-0zRJCMle-eDLka-CFPyAqU3CnVVBtfVYhzyJE,21837
|
|
41
|
-
pycti/entities/opencti_report.py,sha256=YiE0cAAGoPfSDRcARbBmvADFr5hkNil8lu_iHxKobHk,32529
|
|
42
|
-
pycti/entities/opencti_stix.py,sha256=uMheSg8i1f2Ozx2Mk0iShWzHHjj6MMWDtV5nDjVxKEE,2275
|
|
43
|
-
pycti/entities/opencti_stix_core_object.py,sha256=TmHkUWJND0eoo2W5UAMSdAorJv5XqtRf9VkFQ4Mn14s,49046
|
|
44
|
-
pycti/entities/opencti_stix_core_relationship.py,sha256=UrM1cuUz-fdaYS4aeoEyTL1wmXd9hg3RUqpgGFIih0k,42692
|
|
45
|
-
pycti/entities/opencti_stix_cyber_observable.py,sha256=6n6I-p-ZaXoQWtv44Zzi4MmfjRH7TuRB0yEuXsnbtus,104361
|
|
46
|
-
pycti/entities/opencti_stix_domain_object.py,sha256=gyHH2m7wZmjnm9B1p-kSB5LrMhatiOP1AWxw2uKCxzM,78388
|
|
47
|
-
pycti/entities/opencti_stix_nested_ref_relationship.py,sha256=2r1i7cUl-WWictlnC_MJrm9sTIt_yJe2uqTpQm-yo6o,12330
|
|
48
|
-
pycti/entities/opencti_stix_object_or_stix_relationship.py,sha256=n75UR0v2kKUj5wgJWKfU_DRaPBBgf5eoyG_ce80erV0,14475
|
|
49
|
-
pycti/entities/opencti_stix_sighting_relationship.py,sha256=jQfb1KQlm2yKWDVXfqsFk8qU_iv1QS9wMrAOS1cS6Cg,27469
|
|
50
|
-
pycti/entities/opencti_task.py,sha256=y4Q2vC-eLccX-yna85GnnCFEKWFJAWQcflNbkr9BClo,24668
|
|
51
|
-
pycti/entities/opencti_threat_actor.py,sha256=gY_8lH0XnoE025ICGCZaSGKWWrcT2bJ85UkT2KSuFJ4,9835
|
|
52
|
-
pycti/entities/opencti_threat_actor_group.py,sha256=R2NjsMeaje9KmyVHjWH-b6h_d6Tjt3IuO4JTB1qIRP0,18881
|
|
53
|
-
pycti/entities/opencti_threat_actor_individual.py,sha256=9iDld_HAEJVe3bkJ2NOWCqoSjrAnEZNCm1XFRRDUjEM,19123
|
|
54
|
-
pycti/entities/opencti_tool.py,sha256=RJrBywXI7TfWvgga6M9hH4YBl32dsvro2z42V_EgzGY,14661
|
|
55
|
-
pycti/entities/opencti_vocabulary.py,sha256=6JfOByggvSxvkfIXk1b60T7fyWOhxZ6YFkGbSeV8F-4,5988
|
|
56
|
-
pycti/entities/opencti_vulnerability.py,sha256=dzJ0fZB2XrkPwT-cANr6atzYOWXF5nk0al86X7o2ZTo,20094
|
|
57
|
-
pycti/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
-
pycti/utils/constants.py,sha256=mAAeNGXyHU89yp8lihXBKF9fKncQCKwyxD2PVz5D2wI,7915
|
|
59
|
-
pycti/utils/opencti_logger.py,sha256=0dvB75V0SuPFGxL539dAQrxTt1N5Acx0A3Ogwl5WMJ8,2199
|
|
60
|
-
pycti/utils/opencti_stix2.py,sha256=VsPlUBed3YGmd2eTBpD3r8p-aYZFFwgruKNmsV_KYqQ,110754
|
|
61
|
-
pycti/utils/opencti_stix2_splitter.py,sha256=Ht9Mp-W3gbwxIKEr7i_5NYpcDr3TA2gYdC4TzOz0G4c,4496
|
|
62
|
-
pycti/utils/opencti_stix2_update.py,sha256=CnMyqkeVA0jgyxEcgqna8sABU4YPMjkEJ228GVurIn4,14658
|
|
63
|
-
pycti/utils/opencti_stix2_utils.py,sha256=_ijIz6SRP2OeIaWJcXJt8go510MUEGfWE3KY-I_9QZc,3725
|
|
64
|
-
pycti-5.12.33.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
65
|
-
pycti-5.12.33.dist-info/METADATA,sha256=ls7HR_hpkP5KuDw_VbaeMjh67iZtn3cY2sG-Jx3F7nY,5304
|
|
66
|
-
pycti-5.12.33.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
67
|
-
pycti-5.12.33.dist-info/top_level.txt,sha256=cqEpxitAhHP4VgSA6xmrak6Yk9MeBkwoMTB6k7d2ZnE,6
|
|
68
|
-
pycti-5.12.33.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|