pycti 5.12.13__py3-none-any.whl → 5.12.15__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.

Files changed (64) hide show
  1. pycti/__init__.py +1 -1
  2. pycti/api/__init__.py +0 -3
  3. pycti/api/opencti_api_client.py +10 -56
  4. pycti/api/opencti_api_connector.py +1 -2
  5. pycti/api/opencti_api_playbook.py +3 -4
  6. pycti/api/opencti_api_work.py +15 -12
  7. pycti/connector/__init__.py +0 -3
  8. pycti/connector/opencti_connector_helper.py +63 -54
  9. pycti/connector/opencti_metric_handler.py +8 -5
  10. pycti/entities/__init__.py +0 -3
  11. pycti/entities/opencti_attack_pattern.py +17 -11
  12. pycti/entities/opencti_campaign.py +15 -9
  13. pycti/entities/opencti_case_incident.py +39 -43
  14. pycti/entities/opencti_case_rfi.py +34 -46
  15. pycti/entities/opencti_case_rft.py +35 -44
  16. pycti/entities/opencti_channel.py +15 -9
  17. pycti/entities/opencti_course_of_action.py +15 -9
  18. pycti/entities/opencti_data_component.py +17 -14
  19. pycti/entities/opencti_data_source.py +12 -16
  20. pycti/entities/opencti_event.py +15 -9
  21. pycti/entities/opencti_external_reference.py +20 -15
  22. pycti/entities/opencti_feedback.py +36 -46
  23. pycti/entities/opencti_grouping.py +22 -20
  24. pycti/entities/opencti_identity.py +15 -8
  25. pycti/entities/opencti_incident.py +13 -9
  26. pycti/entities/opencti_indicator.py +18 -15
  27. pycti/entities/opencti_infrastructure.py +15 -9
  28. pycti/entities/opencti_intrusion_set.py +12 -8
  29. pycti/entities/opencti_kill_chain_phase.py +16 -12
  30. pycti/entities/opencti_label.py +16 -12
  31. pycti/entities/opencti_language.py +13 -9
  32. pycti/entities/opencti_location.py +13 -9
  33. pycti/entities/opencti_malware.py +15 -9
  34. pycti/entities/opencti_malware_analysis.py +17 -9
  35. pycti/entities/opencti_marking_definition.py +15 -11
  36. pycti/entities/opencti_narrative.py +15 -9
  37. pycti/entities/opencti_note.py +35 -20
  38. pycti/entities/opencti_observed_data.py +34 -19
  39. pycti/entities/opencti_opinion.py +37 -20
  40. pycti/entities/opencti_report.py +36 -20
  41. pycti/entities/opencti_stix.py +8 -19
  42. pycti/entities/opencti_stix_core_object.py +15 -9
  43. pycti/entities/opencti_stix_core_relationship.py +69 -52
  44. pycti/entities/opencti_stix_cyber_observable.py +78 -62
  45. pycti/entities/opencti_stix_domain_object.py +75 -55
  46. pycti/entities/opencti_stix_nested_ref_relationship.py +21 -14
  47. pycti/entities/opencti_stix_object_or_stix_relationship.py +4 -7
  48. pycti/entities/opencti_stix_sighting_relationship.py +34 -26
  49. pycti/entities/opencti_task.py +37 -44
  50. pycti/entities/opencti_threat_actor.py +7 -4
  51. pycti/entities/opencti_threat_actor_group.py +10 -8
  52. pycti/entities/opencti_threat_actor_individual.py +10 -9
  53. pycti/entities/opencti_tool.py +15 -9
  54. pycti/entities/opencti_vocabulary.py +11 -13
  55. pycti/entities/opencti_vulnerability.py +15 -9
  56. pycti/utils/opencti_logger.py +64 -0
  57. pycti/utils/opencti_stix2.py +30 -24
  58. pycti/utils/opencti_stix2_update.py +2 -6
  59. {pycti-5.12.13.dist-info → pycti-5.12.15.dist-info}/METADATA +1 -1
  60. pycti-5.12.15.dist-info/RECORD +68 -0
  61. pycti-5.12.13.dist-info/RECORD +0 -67
  62. {pycti-5.12.13.dist-info → pycti-5.12.15.dist-info}/LICENSE +0 -0
  63. {pycti-5.12.13.dist-info → pycti-5.12.15.dist-info}/WHEEL +0 -0
  64. {pycti-5.12.13.dist-info → pycti-5.12.15.dist-info}/top_level.txt +0 -0
@@ -12,7 +12,6 @@ import dateutil.parser
12
12
  import pytz
13
13
  from cachetools import LRUCache
14
14
 
15
- from pycti.api import LOGGER as API_LOGGER
16
15
  from pycti.entities.opencti_identity import Identity
17
16
  from pycti.utils.constants import (
18
17
  IdentityTypes,
@@ -55,8 +54,8 @@ class OpenCTIStix2:
55
54
  ######### UTILS
56
55
  # region utils
57
56
  def unknown_type(self, stix_object: Dict) -> None:
58
- API_LOGGER.error(
59
- 'Unknown object type "%s", doing nothing...', stix_object["type"]
57
+ self.opencti.app_logger.error(
58
+ "Unknown object type, doing nothing...", {"type": stix_object["type"]}
60
59
  )
61
60
 
62
61
  def convert_markdown(self, text: str) -> str:
@@ -93,7 +92,7 @@ class OpenCTIStix2:
93
92
  date_value = datetime.datetime.utcnow()
94
93
 
95
94
  if not date_value.tzinfo:
96
- API_LOGGER.info("No timezone found. Setting to UTC")
95
+ self.opencti.app_logger.info("No timezone found. Setting to UTC")
97
96
  date_value = date_value.replace(tzinfo=datetime.timezone.utc)
98
97
 
99
98
  return date_value.isoformat(timespec="milliseconds").replace("+00:00", "Z")
@@ -188,7 +187,7 @@ class OpenCTIStix2:
188
187
  :rtype: List
189
188
  """
190
189
  if not os.path.isfile(file_path):
191
- API_LOGGER.error("The bundle file does not exists")
190
+ self.opencti.app_logger.error("The bundle file does not exists")
192
191
  return None
193
192
  with open(os.path.join(file_path), encoding="utf-8") as file:
194
193
  data = json.load(file)
@@ -679,7 +678,7 @@ class OpenCTIStix2:
679
678
  )
680
679
  reports[external_reference_id] = report
681
680
  except:
682
- API_LOGGER.warn("Cannot generate external reference")
681
+ self.opencti.app_logger.warn("Cannot generate external reference")
683
682
  elif "x_opencti_external_references" in stix_object:
684
683
  for external_reference in stix_object["x_opencti_external_references"]:
685
684
  url = external_reference["url"] if "url" in external_reference else None
@@ -775,8 +774,9 @@ class OpenCTIStix2:
775
774
  :rtype: list
776
775
  """
777
776
 
778
- API_LOGGER.info(
779
- "Importing a %s (id: %s)", stix_object["type"], stix_object["id"]
777
+ self.opencti.app_logger.info(
778
+ "Importing an object",
779
+ {"type": stix_object["type"], "id": stix_object["id"]},
780
780
  )
781
781
 
782
782
  # Extract
@@ -1196,7 +1196,9 @@ class OpenCTIStix2:
1196
1196
  if stix_object_result is not None:
1197
1197
  final_from_id = stix_object_result["id"]
1198
1198
  else:
1199
- API_LOGGER.error("From ref of the sighting not found, doing nothing...")
1199
+ self.opencti.app_logger.error(
1200
+ "From ref of the sighting not found, doing nothing..."
1201
+ )
1200
1202
  return None
1201
1203
 
1202
1204
  ### Get the TO
@@ -1211,7 +1213,7 @@ class OpenCTIStix2:
1211
1213
  if stix_object_result is not None:
1212
1214
  final_to_id = stix_object_result["id"]
1213
1215
  else:
1214
- API_LOGGER.error(
1216
+ self.opencti.app_logger.error(
1215
1217
  "To ref of the sighting not found, doing nothing..."
1216
1218
  )
1217
1219
  return None
@@ -1481,9 +1483,9 @@ class OpenCTIStix2:
1481
1483
  )
1482
1484
  is False
1483
1485
  ):
1484
- API_LOGGER.info(
1485
- "Marking definitions of %s are less than max definition, not exporting.",
1486
- entity["type"],
1486
+ self.opencti.app_logger.info(
1487
+ "Marking definitions are less than max definition, not exporting.",
1488
+ {"type": entity["type"]},
1487
1489
  )
1488
1490
  return []
1489
1491
  result = []
@@ -1828,13 +1830,13 @@ class OpenCTIStix2:
1828
1830
  uuids = uuids + [x["id"] for x in relation_object_bundle]
1829
1831
  result = result + relation_object_bundle
1830
1832
  else:
1831
- API_LOGGER.info(
1832
- 'Marking definitions of %s "%s" are less than max definition, '
1833
+ self.opencti.app_logger.info(
1834
+ "Marking definitions are less than max definition, "
1833
1835
  "not exporting the relation AND the target entity.",
1834
- *(
1835
- stix_core_relationship["entity_type"],
1836
- stix_core_relationship["id"],
1837
- ),
1836
+ {
1837
+ "type": stix_core_relationship["entity_type"],
1838
+ "id": stix_core_relationship["id"],
1839
+ },
1838
1840
  )
1839
1841
  # Get sighting
1840
1842
  stix_sighting_relationships = self.opencti.stix_sighting_relationship.list(
@@ -1865,11 +1867,13 @@ class OpenCTIStix2:
1865
1867
  uuids = uuids + [x["id"] for x in relation_object_bundle]
1866
1868
  result = result + relation_object_bundle
1867
1869
  else:
1868
- API_LOGGER.info(
1869
- 'Marking definitions of %s "%s" are less than max definition, '
1870
+ self.opencti.app_logger.info(
1871
+ "Marking definitions are less than max definition, "
1870
1872
  "not exporting the relation AND the target entity.",
1871
- stix_sighting_relationship["entity_type"],
1872
- stix_sighting_relationship["id"],
1873
+ {
1874
+ "type": stix_sighting_relationship["entity_type"],
1875
+ "id": stix_sighting_relationship["id"],
1876
+ },
1873
1877
  )
1874
1878
  if no_custom_attributes:
1875
1879
  del entity["x_opencti_id"]
@@ -2086,7 +2090,9 @@ class OpenCTIStix2:
2086
2090
  )
2087
2091
  entity = do_read(id=entity_id)
2088
2092
  if entity is None:
2089
- API_LOGGER.error("Cannot export entity (not found)")
2093
+ self.opencti.app_logger.error(
2094
+ "Cannot export entity (not found)", {"id": entity_id}
2095
+ )
2090
2096
  return bundle
2091
2097
  entity_standard_id = entity["standard_id"]
2092
2098
  stix_objects = self.prepare_export(
@@ -1,8 +1,5 @@
1
1
  # coding: utf-8
2
2
 
3
- import traceback
4
-
5
- from pycti.api import LOGGER as API_LOGGER
6
3
  from pycti.utils.constants import StixCyberObservableTypes
7
4
 
8
5
 
@@ -300,6 +297,5 @@ class OpenCTIStix2Update:
300
297
  )
301
298
  inputs.append({"key": key, "value": values})
302
299
  self.update_attribute(data["type"], data["id"], inputs)
303
- except Exception:
304
- error_msg = traceback.format_exc()
305
- API_LOGGER.error(error_msg)
300
+ except Exception as err:
301
+ self.opencti.app_logger.error(str(err))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycti
3
- Version: 5.12.13
3
+ Version: 5.12.15
4
4
  Summary: Python API client for OpenCTI.
5
5
  Home-page: https://github.com/OpenCTI-Platform/client-python
6
6
  Author: Filigran
@@ -0,0 +1,68 @@
1
+ pycti/__init__.py,sha256=TJRiqC8tib1qjbJKSA4b_aLW2JLSOn662ffLo2k0iok,4693
2
+ pycti/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ pycti/api/opencti_api_client.py,sha256=7N2dUApNQlZpd8iBYS16N-G5YHbc_LOVIGKzKYZ9PPk,27965
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=OC6UUDsJYV0_L7I7qxgqmzuAo5T-SY8IEBUugde1njY,48757
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=THsn1IVJwtKVdVaX5WeUyjxuG5vZV6Qd_aY6po73Lqk,22523
13
+ pycti/entities/opencti_campaign.py,sha256=hAM1Trxcwn6FQ3cX9NwXgwE-m7ZDhhVWS1tfoILbj5s,17473
14
+ pycti/entities/opencti_case_incident.py,sha256=tzIbW9ghH_9EypKHcNf0RLYBIYV_JpwyVHKvH3hpF0Y,33929
15
+ pycti/entities/opencti_case_rfi.py,sha256=56UvFzEcym9Jnv9ny-J63t8tUaiAW168tV6BVcV1oNU,32158
16
+ pycti/entities/opencti_case_rft.py,sha256=wsdIFrAReNCbPYpbkJ8g2nS3alyiIDXMF1K93FLEN6Y,33070
17
+ pycti/entities/opencti_channel.py,sha256=HjIWt_pcERbq4G8vvR6ljVJXT-V7w4c1wLPlIGtxL5w,16950
18
+ pycti/entities/opencti_course_of_action.py,sha256=7LpfVFMFPfO-JWUy6d6-1SDXaM3n4mRA8s8S0RpSlQc,18619
19
+ pycti/entities/opencti_data_component.py,sha256=roYXcpxAlAkKYrbbNGC1HyEZ-wWm-ZELXCPWKNY6E7k,18964
20
+ pycti/entities/opencti_data_source.py,sha256=2JnpRY_gZ6lzSpE_HxdMWgHKf_x0us8NbXj766wiAME,18034
21
+ pycti/entities/opencti_event.py,sha256=IBo1J2Q46OCC1F6XPHLjMUwizswe_GpTyXP-Ob592Ro,17120
22
+ pycti/entities/opencti_external_reference.py,sha256=tKClVYLBYXan53MyqEjS4FyF4SQz8_hEosMt4fHjbis,13035
23
+ pycti/entities/opencti_feedback.py,sha256=EkaCi9gLgdj6-UUPm2pbPTOfhTPxQnJ-QFmcYHGcxW4,32358
24
+ pycti/entities/opencti_grouping.py,sha256=QYFf6cxvJxtBr-0UDoUi9mMUzZDWdFzo4p4psvaWmMQ,29708
25
+ pycti/entities/opencti_identity.py,sha256=1FXt27AYt_DITXqMI8M5Q68ELpJHOMCe1QQH0XZEhNA,23213
26
+ pycti/entities/opencti_incident.py,sha256=MG7y0thFpJoE-2YfVTwOklRnbkNRLbh6sQNxAb5ZP0g,18601
27
+ pycti/entities/opencti_indicator.py,sha256=txS4nZWCBJUDjC-LGcsJFHCMjJNdWxkiFb_jKuDUMvI,27255
28
+ pycti/entities/opencti_infrastructure.py,sha256=SPVRAo9vOwtU5YRvF76GVmHfwGuLebyrqD7O6UDZxXs,19973
29
+ pycti/entities/opencti_intrusion_set.py,sha256=79WKvvdIwqjDt5zASx-m-Ik0PAyRxOQEHMMdLM_cltU,17622
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=u6wWfM07uBtwxUuo06pZ-sWlWE6BQ7FOBp0h0ww6OZo,16854
33
+ pycti/entities/opencti_location.py,sha256=fW0vvgRhyIsZjPtO9JsGqZzh_MnVXDxIAyB_EtwUvLE,17622
34
+ pycti/entities/opencti_malware.py,sha256=SMz8-6_Cbmj2t7V2CtgUSX3XSQ-CT_ZNasfQom1Zajg,20537
35
+ pycti/entities/opencti_malware_analysis.py,sha256=jbVSDQAMlItpG5LubI28K6dTstkjSZmYwmWjQnVJGZw,20880
36
+ pycti/entities/opencti_marking_definition.py,sha256=J5FBAiy9LXgxq1QGzc-xJC3xZYI2CYShluun-WVqOhU,12712
37
+ pycti/entities/opencti_narrative.py,sha256=qkCJkK_SWAFSuFDfPoEC2g2b-6dkl66jZamPqrHxjDo,17040
38
+ pycti/entities/opencti_note.py,sha256=k3hPVqg8w_IjuE_GhVYsSj_EKyYT1bHhiJeApCm5HwA,30341
39
+ pycti/entities/opencti_observed_data.py,sha256=-aZvYf0kHyaCKhz_bnuanHtG5r1xbeLetXbvpmdaZ34,30550
40
+ pycti/entities/opencti_opinion.py,sha256=KUQLdOaRbDVl7yu9EW4YuzweE2h8uYgCi_6QXhE8VAI,22032
41
+ pycti/entities/opencti_report.py,sha256=1uBqrCfEqmTbQSlDbSLR5RtgN2ZQAElB9kxqVx16mTc,32363
42
+ pycti/entities/opencti_stix.py,sha256=uMheSg8i1f2Ozx2Mk0iShWzHHjj6MMWDtV5nDjVxKEE,2275
43
+ pycti/entities/opencti_stix_core_object.py,sha256=yoExGVu5XzSiSf53BLF9salKgfSU-dEoUnUdkfe_gf4,52096
44
+ pycti/entities/opencti_stix_core_relationship.py,sha256=ZBAxHL12eGeXlWSCbWC9O9HGV9rvLXkpuVVkLZfIkPk,42880
45
+ pycti/entities/opencti_stix_cyber_observable.py,sha256=tfngnYEardTbtMMsqz9Oc6ZAA1lLWh0Lu0CLmXqB9pw,103405
46
+ pycti/entities/opencti_stix_domain_object.py,sha256=Pzh7PZlVlKKY9FH_up3mRYpSNyXN6dBjt5WIzqafrfU,82192
47
+ pycti/entities/opencti_stix_nested_ref_relationship.py,sha256=rs5KSdRQCnn3PwHDJYjyoBcmQcoqlWYAR3Cnwq1BbwU,12310
48
+ pycti/entities/opencti_stix_object_or_stix_relationship.py,sha256=eaXQjLP0cgIRFmJVPug5_tnS_ZMRAMXE6BVNeWuuy2o,16104
49
+ pycti/entities/opencti_stix_sighting_relationship.py,sha256=eaGsgU8tA-3eAqLmROpTaUgUyTYt6lQRJRepG1lK9JE,28050
50
+ pycti/entities/opencti_task.py,sha256=wspP5QU8IvrCQrw6qH5zpJEARFXN_siznC74T9BweJo,24859
51
+ pycti/entities/opencti_threat_actor.py,sha256=a0ISQ3OZAJW_1rs1bf_Ss4VJ8YmdFMpLZZAwPjZE64c,10260
52
+ pycti/entities/opencti_threat_actor_group.py,sha256=RKmjxn_GlKEBR4HpsT2rbwBiUQ0iv9dZLlS4tefWWdA,18772
53
+ pycti/entities/opencti_threat_actor_individual.py,sha256=MusiP_f4C5FktLZ9M-DiR4ZYYoSdu1JZC_Q5JlENVUY,19014
54
+ pycti/entities/opencti_tool.py,sha256=gZ4S-D8Mkp710ZLiq9sWrChZUNYAqjeqDX0D4JVSkCM,14923
55
+ pycti/entities/opencti_vocabulary.py,sha256=6JfOByggvSxvkfIXk1b60T7fyWOhxZ6YFkGbSeV8F-4,5988
56
+ pycti/entities/opencti_vulnerability.py,sha256=UF9gYCsPbj8w79v3xTku3vjThlggC3xbSs9JK8ns7BQ,18393
57
+ pycti/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ pycti/utils/constants.py,sha256=g53_tdaq_akCm-ZC0TI2Y5V1yE7ejgB6E-rCDZ86bag,7914
59
+ pycti/utils/opencti_logger.py,sha256=9Nor76Hb4uADs7COxEvy9lfCZpBvBl-Y2RKw0yvgxcI,2238
60
+ pycti/utils/opencti_stix2.py,sha256=B6tW43N4i1mXvWLAebNIcFZFMa4ns6NyZAWdv3jpJLo,111881
61
+ pycti/utils/opencti_stix2_splitter.py,sha256=Ht9Mp-W3gbwxIKEr7i_5NYpcDr3TA2gYdC4TzOz0G4c,4496
62
+ pycti/utils/opencti_stix2_update.py,sha256=rU7j3kAN3hD5LNnCQki8sYVMqJ86cXIOPAizesN7bQk,14426
63
+ pycti/utils/opencti_stix2_utils.py,sha256=XaDLRN9BE-n8chO9OEsCMoonAuoMjoGS_OSJyrxVXDY,3677
64
+ pycti-5.12.15.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
65
+ pycti-5.12.15.dist-info/METADATA,sha256=2ydOo0e90E5A5TFE_ljk5IsM1pEcUurTPbjiDji8Gd4,5298
66
+ pycti-5.12.15.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
67
+ pycti-5.12.15.dist-info/top_level.txt,sha256=cqEpxitAhHP4VgSA6xmrak6Yk9MeBkwoMTB6k7d2ZnE,6
68
+ pycti-5.12.15.dist-info/RECORD,,
@@ -1,67 +0,0 @@
1
- pycti/__init__.py,sha256=GMGPVS6j98WBaj8r1Uweq1jkg1isTFJWlH2GwwDMULE,4693
2
- pycti/api/__init__.py,sha256=t78k-bMV5HrTAzNeWgL9sv-Qk5CvzS8ngXFlbTAYEIA,53
3
- pycti/api/opencti_api_client.py,sha256=W3EDPJ-zeKkCzBayk7BLYHjle1ijY-NQYMz3L5jomiY,29548
4
- pycti/api/opencti_api_connector.py,sha256=53kV9IE1kcV5Q-Gbdj-2LKDc3ZxqQZUaqCXHeDjRVh8,3565
5
- pycti/api/opencti_api_playbook.py,sha256=3CbxGZGQ_E967fpKQSamXJG-GZqlELZr6o4Z_mcWT30,1365
6
- pycti/api/opencti_api_work.py,sha256=LK7gtVMzocmO2GCTkIpWXddxQS-z-7WFv0rjwQ0UCco,6908
7
- pycti/connector/__init__.py,sha256=t78k-bMV5HrTAzNeWgL9sv-Qk5CvzS8ngXFlbTAYEIA,53
8
- pycti/connector/opencti_connector.py,sha256=0vrZ8Y8ecbxegAP1YhpX6ybOZahYjjOkcId51D1oBi4,2449
9
- pycti/connector/opencti_connector_helper.py,sha256=IwJcgK5thmYzdCXTcd1A42iDCUb2cZ50qq49VsvmhqQ,48037
10
- pycti/connector/opencti_metric_handler.py,sha256=LWAc3RwbwUgbRvwtUaoOJ1SsfW7Cuq8RaN1jhJg-QSA,3548
11
- pycti/entities/__init__.py,sha256=t78k-bMV5HrTAzNeWgL9sv-Qk5CvzS8ngXFlbTAYEIA,53
12
- pycti/entities/opencti_attack_pattern.py,sha256=EZ3JSlK_Y58puV7iJ8U7irAgixpcZOb4IWlXCjojj8g,22265
13
- pycti/entities/opencti_campaign.py,sha256=Dun_maYmugeW8y9d3mrgD5wBMnlvqU8LD2uZJ6B3I6Q,17259
14
- pycti/entities/opencti_case_incident.py,sha256=Y2nwV4r1si_Q0bWnoaCUcxoxKnE6m0BEQ5lGlD17vpY,33831
15
- pycti/entities/opencti_case_rfi.py,sha256=xmboVhsrR7mD7J8I6nKqbpppQBI-yFwQ1lGcsQHvhJY,32144
16
- pycti/entities/opencti_case_rft.py,sha256=TutlHiaaY71ZzcllblSWafARH_qz9o5Q0UyXWK38L9M,33034
17
- pycti/entities/opencti_channel.py,sha256=YditzOmt6bmERT7c2HXRzNg6GVGVMh5mvQikBdW-L6k,16736
18
- pycti/entities/opencti_course_of_action.py,sha256=ZlKNb4IbQ_epgwkQf_QsabgpcC4Ui65LI-IOFbeacEI,18397
19
- pycti/entities/opencti_data_component.py,sha256=eCm8KOUpuQciav_obNHo2ycRZ2WtXAdzKmANQ0N2zQ4,18862
20
- pycti/entities/opencti_data_source.py,sha256=XaRa_c94vxLTGM941CrN9GrTHTzUEV3DXUF10DZQ2qI,18048
21
- pycti/entities/opencti_event.py,sha256=dNX_44q5nXsB1JwmhW9GXpgWYmXwcsUvEmigKGOt1iM,16906
22
- pycti/entities/opencti_external_reference.py,sha256=Z5YIS2X-UCbFCqnj3Uc113aauEQaZwwLOGKeWZneY28,12732
23
- pycti/entities/opencti_feedback.py,sha256=K94ztpdo8Mog-KKGwsxt8CkIdQooVL54dkTuBD0htW8,32273
24
- pycti/entities/opencti_grouping.py,sha256=sMV1NbNOIA1wVaKUqm0w2V5IFvtLWw3lzliOCKAPrp4,29445
25
- pycti/entities/opencti_identity.py,sha256=3ygZHO2AlS3meQPoHvFbj8yyQXxCnuLZIWuU8BKwolI,22998
26
- pycti/entities/opencti_incident.py,sha256=TOhZkuAQivTor8BndZ6Eqjdru8WjCxjkkXVP2hojTwo,18417
27
- pycti/entities/opencti_indicator.py,sha256=U6srsKfM0GEORwjVZosZpR5-P50hnYkhRb3RFIiAtRc,27021
28
- pycti/entities/opencti_infrastructure.py,sha256=Y623AnmObFj-Hegbr_hmU2lMwR2RKrGenMNUR0KXf4E,19751
29
- pycti/entities/opencti_intrusion_set.py,sha256=y011RZA3QLCrhFOtEHFRcNz6ho3-7fICJjgB4ErsUgI,17458
30
- pycti/entities/opencti_kill_chain_phase.py,sha256=wv-lAx4Gw4yySXgkfympoTB4H7dG8MyTDHbFeNWwHR0,7839
31
- pycti/entities/opencti_label.py,sha256=gwnByNyQJQhe_RU-ADmuqk90PllHUVy0TWKbiWXvlrA,8560
32
- pycti/entities/opencti_language.py,sha256=siUIFmQHbrx2oB2SOcCXpq3rNFWn4B1IbEXQWpLn5j8,16670
33
- pycti/entities/opencti_location.py,sha256=s8ZXOI1w2wYWP-UrTvM-i81QmcIrflAXqXF9CnTC7go,17441
34
- pycti/entities/opencti_malware.py,sha256=2SU5bq1rqK3Ni-bANRSLvG_fLtjGJhugMFhplAEpm9M,20324
35
- pycti/entities/opencti_malware_analysis.py,sha256=ihlZB1X6CvuicDJ8dznoBgw4-q06U5IgwMGQeHCJWyY,20626
36
- pycti/entities/opencti_marking_definition.py,sha256=1lWOTRbE5xTpjWvmhkyYPW5z6z2gQv_yLXf86_Lb39w,12497
37
- pycti/entities/opencti_narrative.py,sha256=GIvdN9es63muKZFKTKBi6g4aZRiFPsq7TGhN7kPOebw,16826
38
- pycti/entities/opencti_note.py,sha256=09W3-Uflfiz8WuC0OoJBGVVkE18-dFUXwQp_8FgBou0,29769
39
- pycti/entities/opencti_observed_data.py,sha256=1LffW0EeiHNG-kBWRPdlMS9vcALcmbWei02ejzHtol8,30012
40
- pycti/entities/opencti_opinion.py,sha256=EG-EWu-CTqnSDNrYXm8loQzJpSq1XoPmGqw1Aw8SFT8,21436
41
- pycti/entities/opencti_report.py,sha256=WWQBEnwu4UpwiTo4j9uExg8leJMuo_w1Ewgnf3V1n7M,31615
42
- pycti/entities/opencti_stix.py,sha256=B4cvpYcfxLv8t_QVATB2BddiCmtojRIR949ZSQ9VZP0,2399
43
- pycti/entities/opencti_stix_core_object.py,sha256=pBXj_1BXPwOlAZNPO8nEIUHMDPBPzyOjRkGMng8kzjg,51874
44
- pycti/entities/opencti_stix_core_relationship.py,sha256=PotwW9rJxfYYwqHn1KgPYXeMfHzQZ6113LIDoBvoGZ8,41973
45
- pycti/entities/opencti_stix_cyber_observable.py,sha256=9Qxl1_QWN7Uhjziwiyr93rKp7U30afSQyB4LmCZcMEw,102311
46
- pycti/entities/opencti_stix_domain_object.py,sha256=lZhrjQYjre6Iz2ZQLB5j2N6gMkmQooiIKn6Vf2QGoiQ,81111
47
- pycti/entities/opencti_stix_nested_ref_relationship.py,sha256=i11v_HGWStDiGYpn079y1J_oD7wZdph2tR_DA7qmxVQ,12063
48
- pycti/entities/opencti_stix_object_or_stix_relationship.py,sha256=8x0JxHHjNrHnm-UZFeYHgqWnkiFBUhx-HagHTNONqog,16091
49
- pycti/entities/opencti_stix_sighting_relationship.py,sha256=JVEBQ-LhIS2JiXhZXzQWv5cA4Q6b7ukYT1q07aSsIMk,27589
50
- pycti/entities/opencti_task.py,sha256=Sp3En2QFTRl2MzHPEhCP6AyYBpDexK0cZJtw_NhQtec,24752
51
- pycti/entities/opencti_threat_actor.py,sha256=gI3cu51cVgAh-PpOYDfHrCT3wmuRsX8sSGr7JcW7HG8,10180
52
- pycti/entities/opencti_threat_actor_group.py,sha256=Wluc75lV1YGg31WOo4Z98Fo4w0z9qXLm5Y5Ju2oK3L4,18638
53
- pycti/entities/opencti_threat_actor_individual.py,sha256=z7oE71kzmGmNDknNzGUIpqQFpU2jLbrAzcNbBE42AV4,18889
54
- pycti/entities/opencti_tool.py,sha256=5o6Vwaxj3xdnl59Xjm8H8_Wm13o6yaoPYESgWjsHFC8,14709
55
- pycti/entities/opencti_vocabulary.py,sha256=_fQNiuNk-uwjXmDJHiEU_pawaThFRbjt9u-RTAHLCfI,5992
56
- pycti/entities/opencti_vulnerability.py,sha256=CsAsDbceBPRa084GGzd-9Kaj574HIyvkbXC8P1oCB_4,18171
57
- pycti/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- pycti/utils/constants.py,sha256=g53_tdaq_akCm-ZC0TI2Y5V1yE7ejgB6E-rCDZ86bag,7914
59
- pycti/utils/opencti_stix2.py,sha256=eUp4q09aaMmhcmtfUTamXcl_ctEh_ykpExJA0v6_2r8,111594
60
- pycti/utils/opencti_stix2_splitter.py,sha256=Ht9Mp-W3gbwxIKEr7i_5NYpcDr3TA2gYdC4TzOz0G4c,4496
61
- pycti/utils/opencti_stix2_update.py,sha256=NO-l7g9aUmZ2vP6BSxs-Gq8WXa7pnpcDiNQVtQ3TESE,14515
62
- pycti/utils/opencti_stix2_utils.py,sha256=XaDLRN9BE-n8chO9OEsCMoonAuoMjoGS_OSJyrxVXDY,3677
63
- pycti-5.12.13.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
64
- pycti-5.12.13.dist-info/METADATA,sha256=LaiwpEeWswR7yxUUS-17iUJoPXnfxhTi9UBmxjQbdwY,5298
65
- pycti-5.12.13.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
66
- pycti-5.12.13.dist-info/top_level.txt,sha256=cqEpxitAhHP4VgSA6xmrak6Yk9MeBkwoMTB6k7d2ZnE,6
67
- pycti-5.12.13.dist-info/RECORD,,