pymisp 2.5.4__py3-none-any.whl → 2.5.7__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 pymisp might be problematic. Click here for more details.

Files changed (158) hide show
  1. CHANGELOG.txt +5380 -0
  2. examples/__init__.py +0 -0
  3. examples/add_attributes_from_csv.py +74 -0
  4. examples/add_email_object.py +29 -0
  5. examples/add_fail2ban_object.py +86 -0
  6. examples/add_feed.py +25 -0
  7. examples/add_file_object.py +47 -0
  8. examples/add_filetype_object_from_csv.py +53 -0
  9. examples/add_generic_object.py +26 -0
  10. examples/add_github_user.py +65 -0
  11. examples/add_gitlab_user.py +56 -0
  12. examples/add_named_attribute.py +25 -0
  13. examples/add_organisations.py +57 -0
  14. examples/add_ssh_authorized_keys.py +29 -0
  15. examples/add_user.py +22 -0
  16. examples/add_vehicle_object.py +22 -0
  17. examples/addtag2.py +45 -0
  18. examples/asciidoc_generator.py +114 -0
  19. examples/cache_all.py +10 -0
  20. examples/copyTagsFromAttributesToEvent.py +68 -0
  21. examples/copy_list.py +93 -0
  22. examples/create_events.py +26 -0
  23. examples/cytomic_orion.py +549 -0
  24. examples/del.py +22 -0
  25. examples/delete_user.py +16 -0
  26. examples/edit_organisation.py +20 -0
  27. examples/edit_user.py +20 -0
  28. examples/falsepositive_disabletoids.py +136 -0
  29. examples/fetch_events_feed.py +15 -0
  30. examples/fetch_warninglist_hits.py +38 -0
  31. examples/freetext.py +22 -0
  32. examples/generate_file_objects.py +78 -0
  33. examples/generate_meta_feed.py +15 -0
  34. examples/get.py +37 -0
  35. examples/get_csv.py +37 -0
  36. examples/get_network_activity.py +187 -0
  37. examples/last.py +48 -0
  38. examples/load_csv.py +94 -0
  39. examples/lookup.py +28 -0
  40. examples/misp2cef.py +71 -0
  41. examples/misp2clamav.py +52 -0
  42. examples/openioc_to_misp.py +27 -0
  43. examples/proofpoint_tap.py +203 -0
  44. examples/proofpoint_vap.py +65 -0
  45. examples/search.py +48 -0
  46. examples/search_attributes_yara.py +40 -0
  47. examples/search_sighting.py +42 -0
  48. examples/server_sync_check_conn.py +32 -0
  49. examples/sharing_groups.py +15 -0
  50. examples/show_sightings.py +168 -0
  51. examples/stats_report.py +405 -0
  52. examples/sync_sighting.py +171 -0
  53. examples/tags.py +25 -0
  54. examples/test_sign.py +19 -0
  55. examples/trustar_misp.py +59 -0
  56. examples/up.py +21 -0
  57. examples/upload.py +60 -0
  58. examples/users_list.py +15 -0
  59. examples/vmray_automation.py +281 -0
  60. examples/vt_to_misp.py +182 -0
  61. examples/warninglists.py +22 -0
  62. examples/yara.py +38 -0
  63. examples/yara_dump.py +98 -0
  64. pymisp/api.py +33 -5
  65. pymisp/data/misp-objects/objects/instagram-account/definition.json +66 -0
  66. pymisp/data/misp-objects/objects/lnk/definition.json +13 -1
  67. pymisp/data/misp-objects/objects/rmm/definition.json +88 -0
  68. pymisp/data/misp-objects/objects/target-system/definition.json +2 -2
  69. pymisp/data/misp-objects/schema_objects.json +1 -1
  70. pymisp/mispevent.py +8 -0
  71. {pymisp-2.5.4.dist-info → pymisp-2.5.7.dist-info}/METADATA +23 -28
  72. {pymisp-2.5.4.dist-info → pymisp-2.5.7.dist-info}/RECORD +140 -27
  73. {pymisp-2.5.4.dist-info → pymisp-2.5.7.dist-info}/WHEEL +1 -1
  74. tests/57c4445b-c548-4654-af0b-4be3950d210f.json +1 -0
  75. tests/__init__.py +0 -0
  76. tests/csv_testfiles/invalid_fieldnames.csv +11 -0
  77. tests/csv_testfiles/valid_fieldnames.csv +4 -0
  78. tests/email_testfiles/mail_1.eml.zip +0 -0
  79. tests/email_testfiles/mail_1.msg +0 -0
  80. tests/email_testfiles/mail_1_bom.eml +858 -0
  81. tests/email_testfiles/mail_1_headers_only.eml +28 -0
  82. tests/email_testfiles/mail_2.eml +32 -0
  83. tests/email_testfiles/mail_3.eml +170 -0
  84. tests/email_testfiles/mail_3.msg +0 -0
  85. tests/email_testfiles/mail_4.msg +0 -0
  86. tests/email_testfiles/mail_5.msg +0 -0
  87. tests/email_testfiles/mail_multiple_to.eml +15 -0
  88. tests/email_testfiles/source +1 -0
  89. tests/git-vuln-finder-quagga.json +1493 -0
  90. tests/misp_event.json +76 -0
  91. tests/mispevent_testfiles/attribute.json +21 -0
  92. tests/mispevent_testfiles/attribute_del.json +23 -0
  93. tests/mispevent_testfiles/def_param.json +53 -0
  94. tests/mispevent_testfiles/event.json +8 -0
  95. tests/mispevent_testfiles/event_obj_attr_tag.json +57 -0
  96. tests/mispevent_testfiles/event_obj_def_param.json +62 -0
  97. tests/mispevent_testfiles/event_obj_tag.json +29 -0
  98. tests/mispevent_testfiles/event_tags.json +18 -0
  99. tests/mispevent_testfiles/existing_event.json +4599 -0
  100. tests/mispevent_testfiles/existing_event_edited.json +4601 -0
  101. tests/mispevent_testfiles/galaxy.json +25 -0
  102. tests/mispevent_testfiles/malware.json +19 -0
  103. tests/mispevent_testfiles/malware_exist.json +163 -0
  104. tests/mispevent_testfiles/misp_custom_obj.json +38 -0
  105. tests/mispevent_testfiles/overwrite_file/definition.json +457 -0
  106. tests/mispevent_testfiles/proposals.json +35 -0
  107. tests/mispevent_testfiles/shadow.json +148 -0
  108. tests/mispevent_testfiles/sighting.json +5 -0
  109. tests/mispevent_testfiles/simple.json +2 -0
  110. tests/mispevent_testfiles/test_object_template/definition.json +29 -0
  111. tests/new_misp_event.json +34 -0
  112. tests/reportlab_testfiles/HTML_event.json +1 -0
  113. tests/reportlab_testfiles/galaxy_1.json +1250 -0
  114. tests/reportlab_testfiles/image_event.json +2490 -0
  115. tests/reportlab_testfiles/japanese_test.json +156 -0
  116. tests/reportlab_testfiles/japanese_test_heavy.json +318 -0
  117. tests/reportlab_testfiles/long_event.json +3730 -0
  118. tests/reportlab_testfiles/mainly_objects_1.json +1092 -0
  119. tests/reportlab_testfiles/mainly_objects_2.json +977 -0
  120. tests/reportlab_testfiles/sighting_1.json +305 -0
  121. tests/reportlab_testfiles/sighting_2.json +221 -0
  122. tests/reportlab_testfiles/to_delete1.json +804 -0
  123. tests/reportlab_testfiles/to_delete2.json +1 -0
  124. tests/reportlab_testfiles/to_delete3.json +1 -0
  125. tests/reportlab_testfiles/very_long_event.json +1006 -0
  126. tests/reportlab_testoutputs/to_delete1.json.pdf +391 -0
  127. tests/reportlab_testoutputs/to_delete2.json.pdf +506 -0
  128. tests/reportlab_testoutputs/to_delete3.json.pdf +277 -0
  129. tests/search_index_result.json +69 -0
  130. tests/sharing_groups.json +98 -0
  131. tests/stix1.xml-utf8 +110 -0
  132. tests/stix2.json +1 -0
  133. tests/test_analyst_data.py +123 -0
  134. tests/test_emailobject.py +157 -0
  135. tests/test_fileobject.py +20 -0
  136. tests/test_mispevent.py +473 -0
  137. tests/test_reportlab.py +431 -0
  138. tests/testlive_comprehensive.py +3734 -0
  139. tests/testlive_sync.py +474 -0
  140. pymisp/data/misp-objects/.git +0 -1
  141. pymisp/data/misp-objects/.gitchangelog.rc +0 -289
  142. pymisp/data/misp-objects/.github/workflows/codeql.yml +0 -41
  143. pymisp/data/misp-objects/.github/workflows/nosetests.yml +0 -39
  144. pymisp/data/misp-objects/.travis.yml +0 -16
  145. pymisp/data/misp-objects/LICENSE-software-only.md +0 -661
  146. pymisp/data/misp-objects/LICENSE.md +0 -36
  147. pymisp/data/misp-objects/README.md +0 -567
  148. pymisp/data/misp-objects/docs/time-related-objects.ods +0 -0
  149. pymisp/data/misp-objects/docs/time-related-objects.pdf +0 -0
  150. pymisp/data/misp-objects/jq_all_the_things.sh +0 -29
  151. pymisp/data/misp-objects/tools/adoc_objects.py +0 -145
  152. pymisp/data/misp-objects/tools/alfred_links_to_relarelationships.py +0 -48
  153. pymisp/data/misp-objects/tools/list_of_objects.py +0 -50
  154. pymisp/data/misp-objects/tools/updated.sh +0 -6
  155. pymisp/data/misp-objects/tools/validate_opposites.sh +0 -17
  156. pymisp/data/misp-objects/unique_uuid.py +0 -16
  157. pymisp/data/misp-objects/validate_all.sh +0 -38
  158. {pymisp-2.5.4.dist-info → pymisp-2.5.7.dist-info}/LICENSE +0 -0
@@ -1,12 +1,11 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: pymisp
3
- Version: 2.5.4
3
+ Version: 2.5.7
4
4
  Summary: Python API for MISP.
5
- Home-page: https://github.com/MISP/PyMISP
6
5
  License: BSD-2-Clause
7
6
  Author: Raphaël Vinot
8
7
  Author-email: raphael.vinot@circl.lu
9
- Requires-Python: >=3.9,<4.0
8
+ Requires-Python: >=3.9.2,<4.0
10
9
  Classifier: Development Status :: 5 - Production/Stable
11
10
  Classifier: Environment :: Console
12
11
  Classifier: Intended Audience :: Information Technology
@@ -15,7 +14,6 @@ Classifier: Intended Audience :: Telecommunications Industry
15
14
  Classifier: License :: OSI Approved :: BSD License
16
15
  Classifier: Operating System :: POSIX :: Linux
17
16
  Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.9
19
17
  Classifier: Programming Language :: Python :: 3.10
20
18
  Classifier: Programming Language :: Python :: 3.11
21
19
  Classifier: Programming Language :: Python :: 3.12
@@ -30,29 +28,27 @@ Provides-Extra: openioc
30
28
  Provides-Extra: pdfexport
31
29
  Provides-Extra: url
32
30
  Provides-Extra: virustotal
33
- Requires-Dist: RTFDE (>=0.1.1,<0.2.0) ; extra == "email"
34
- Requires-Dist: Sphinx (>=8,<9) ; (python_version >= "3.10") and (extra == "docs")
35
- Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0) ; extra == "openioc"
36
- Requires-Dist: deprecated (>=1.2.15,<2.0.0)
37
- Requires-Dist: docutils (>=0.21.1,<0.22.0) ; (python_version >= "3.10") and (extra == "docs")
38
- Requires-Dist: extract_msg (>=0.52,<0.53) ; extra == "email"
39
- Requires-Dist: lief (>=0.16.0,<0.17.0) ; extra == "fileobjects"
40
- Requires-Dist: oletools (>=0.60.1,<0.61.0) ; extra == "email"
41
- Requires-Dist: publicsuffixlist (>=1.0.2.20241218,<2.0.0.0)
42
- Requires-Dist: pydeep2 (>=0.5.1,<0.6.0) ; extra == "fileobjects"
43
- Requires-Dist: pyfaup (>=1.2,<2.0) ; extra == "url"
44
- Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
45
- Requires-Dist: python-magic (>=0.4.27,<0.5.0) ; extra == "fileobjects"
46
- Requires-Dist: recommonmark (>=0.7.1,<0.8.0) ; (python_version >= "3.10") and (extra == "docs")
47
- Requires-Dist: reportlab (>=4.2.5,<5.0.0) ; extra == "pdfexport"
48
- Requires-Dist: requests (>=2.32.3,<3.0.0)
49
- Requires-Dist: sphinx-autodoc-typehints (>=2.5.0,<3.0.0) ; (python_version >= "3.10") and (extra == "docs")
50
- Requires-Dist: urllib3[brotli] ; extra == "brotli"
51
- Requires-Dist: validators (>=0.34.0,<0.35.0) ; extra == "virustotal"
52
- Project-URL: Bug Tracker, https://github.com/MISP/PyMISP/issues
31
+ Requires-Dist: RTFDE (>=0.1.2) ; (python_version <= "3.9") and (extra == "email")
32
+ Requires-Dist: beautifulsoup4 (>=4.13.3) ; extra == "openioc"
33
+ Requires-Dist: deprecated (>=1.2.18)
34
+ Requires-Dist: docutils (>=0.21.2) ; (python_version >= "3.11") and (extra == "docs")
35
+ Requires-Dist: extract_msg (>=0.53.1) ; extra == "email"
36
+ Requires-Dist: lief (>=0.16.3) ; extra == "fileobjects"
37
+ Requires-Dist: myst-parser (>=4.0.1) ; (python_version >= "3.11") and (extra == "docs")
38
+ Requires-Dist: oletools (>=0.60.2) ; extra == "email"
39
+ Requires-Dist: pydeep2 (>=0.5.1) ; extra == "fileobjects"
40
+ Requires-Dist: pyfaup (>=1.2) ; extra == "url"
41
+ Requires-Dist: python-dateutil (>=2.9.0.post0)
42
+ Requires-Dist: python-magic (>=0.4.27) ; extra == "fileobjects"
43
+ Requires-Dist: reportlab (>=4.3.1) ; extra == "pdfexport"
44
+ Requires-Dist: requests (>=2.32.3)
45
+ Requires-Dist: sphinx (>=8.2.0) ; (python_version >= "3.11") and (extra == "docs")
46
+ Requires-Dist: sphinx-autodoc-typehints (>=3.1.0) ; (python_version >= "3.11") and (extra == "docs")
47
+ Requires-Dist: urllib3 (>=2.3.0) ; extra == "brotli"
48
+ Requires-Dist: validators (>=0.34.0) ; extra == "virustotal"
53
49
  Project-URL: Documentation, https://pymisp.readthedocs.io
54
50
  Project-URL: Repository, https://github.com/MISP/PyMISP
55
- Project-URL: Source, https://github.com/MISP/PyMISP
51
+ Project-URL: issues, https://github.com/MISP/PyMISP/issues
56
52
  Description-Content-Type: text/markdown
57
53
 
58
54
  **IMPORTANT NOTE**: This library will require **at least** Python 3.10 starting the 1st of January 2024. If you have legacy versions of python, please use the latest PyMISP version that will be released in December 2023, and consider updating your system(s). Anything released within the last 2 years will do, starting with Ubuntu 22.04.
@@ -61,7 +57,7 @@ Description-Content-Type: text/markdown
61
57
 
62
58
  [![Documentation Status](https://readthedocs.org/projects/pymisp/badge/?version=latest)](http://pymisp.readthedocs.io/?badge=latest)
63
59
  [![Coverage Status](https://coveralls.io/repos/github/MISP/PyMISP/badge.svg?branch=main)](https://coveralls.io/github/MISP/PyMISP?branch=main)
64
- [![Python 3.8](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/release/python-380/)
60
+ [![Python 3.9](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/release/python-390/)
65
61
  [![PyPi version](https://img.shields.io/pypi/v/pymisp.svg)](https://pypi.python.org/pypi/pymisp/)
66
62
  [![Number of PyPI downloads](https://img.shields.io/pypi/dm/pymisp.svg)](https://pypi.python.org/pypi/pymisp/)
67
63
 
@@ -248,4 +244,3 @@ python -m pip install --no-index --no-deps packages/*.whl
248
244
 
249
245
  PyMISP is distributed under an [open source license](./LICENSE). A simplified 2-BSD license.
250
246
 
251
-
@@ -1,18 +1,70 @@
1
+ CHANGELOG.txt,sha256=1DzEwNZ8ekVXS8BIY1Cdq5ryQoDbHF4QMqVLGXxT01E,180787
2
+ examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ examples/add_attributes_from_csv.py,sha256=k-9AAips6PqBZ70hRD2422wn6rRWHqNDkhpm6yIv7vw,2479
4
+ examples/add_email_object.py,sha256=y-HfUMsl-lETBISfAA0d8U6aVlwtpitRXEIPY-nKPQU,992
5
+ examples/add_fail2ban_object.py,sha256=c2LSh7AqsuvCj_53laM1MYP_i0ZkZuz0d8GbKEeQK1U,3353
6
+ examples/add_feed.py,sha256=d1y-eFgEA3afqKFA_ziOTqEoJ3XQbrZZfkw1VBr6nis,1075
7
+ examples/add_file_object.py,sha256=qIh6Tho76PBYV9Jgid3dSoMEQIagDXXPFwjiw2cohlA,1742
8
+ examples/add_filetype_object_from_csv.py,sha256=k6qnO4Hn4vGmraeDR4vdOxGRJoAxSgJD9COmZXRHCsE,1878
9
+ examples/add_generic_object.py,sha256=oqJeBhV3Q-0OPNOdSsiXXIOwbMY9abP9myYZKgrp3qs,1031
10
+ examples/add_github_user.py,sha256=tuhXlXnpf2IEHke6eg704Zg8k1EW6fb9w6rbTWi4Jtw,2898
11
+ examples/add_gitlab_user.py,sha256=UsbgZ5tOjqHtu1icsgmhTljTkapqa37GDLQ6caBLNZw,2146
12
+ examples/add_named_attribute.py,sha256=fAuuG9UebnSYvLPSw6oUOXtwxfAFzZxbLVSE8yL3jlo,855
13
+ examples/add_organisations.py,sha256=OM0gsUHFnS5YqILWhf20Y9IiHAeMKb0KZuM66G3wlsg,2085
14
+ examples/add_ssh_authorized_keys.py,sha256=vZtBG7He9Xe_60euSupd6SkUTNqmziPPF-EI8ja0n0o,1006
15
+ examples/add_user.py,sha256=y_LRAZRYQuNbfwvB-cyOYpVvTiUVlcWeO_Pv4Tsb7WU,832
16
+ examples/add_vehicle_object.py,sha256=0PxMUgAQcvVhAf2gQD75hngNiPz4PmfsbbEByQOHf_o,896
17
+ examples/addtag2.py,sha256=rUD0oeyaR40onttjGtrWbfkmQWj703OS4PPDb5e6qWg,1442
18
+ examples/asciidoc_generator.py,sha256=NoxjA-dB7Sso8VnCtY7xLNsR4OVOvAggkZnQHgDCjkI,4224
19
+ examples/cache_all.py,sha256=aR5VQorF1z2WAxBqUrOuT1hrtB8jsgb4me4WkugqA_Q,253
20
+ examples/copyTagsFromAttributesToEvent.py,sha256=_ljnpTCWrm9Z80SyGffKPsu1hOac2pyC5AvDBPRRGCQ,2034
21
+ examples/copy_list.py,sha256=vB6e9CjGt7vmcbke89fAnd7wXXLR-qBw6RWoHCtdi8k,2554
22
+ examples/create_events.py,sha256=MAgkmIa09fTSysuAOYrLtncfDdGB0rt7qb-F_4EyHqA,1128
23
+ examples/cytomic_orion.py,sha256=HvYzo1_TBJihdaJtdD8RORnEQ2V88H4ulK9TD3-fbLI,26264
24
+ examples/del.py,sha256=5Bo_2p9BzMxcdIIXbMDWcDUtjM6TAvcycLb23S9YaZU,661
25
+ examples/delete_user.py,sha256=jZRjJDbvJ1e3q6EjfYZ1rb0yOq1ltY6wloMpod0xmSQ,635
26
+ examples/edit_organisation.py,sha256=t80TBMepUmfJqCB1Bs1Wb5PW0cJtGGv0LLvX_cDrxLA,791
27
+ examples/edit_user.py,sha256=ArdGPfe5w9EEBo-QmYNVBcIDXR1wZ736iql6rbWF7xY,722
28
+ examples/falsepositive_disabletoids.py,sha256=s-QkP0xJ9G-KYq9Td9U0mXM7lZcx1RaYOK94TZiNp64,6167
29
+ examples/fetch_events_feed.py,sha256=HKNH2peH0NSjmhs554TtyXdb7xRm-xp3q14i5GuoS9Q,475
30
+ examples/fetch_warninglist_hits.py,sha256=4owQ6CkU2CmHPpq_ldP1CWC3qKc94QQ3uopf7_b2rd8,1641
31
+ examples/freetext.py,sha256=CVPApHjY-KpCpSnOxzPcD9KlHpmJKWdC_XfnBdRkuSY,633
32
+ examples/generate_file_objects.py,sha256=7VUVCnDV9vJmxto16Wy9tFaMyrwO93sEAeBd2OO4xR0,2582
33
+ examples/generate_meta_feed.py,sha256=wJ73Tb5AUenBbgZUyVXGWkrw03HC2VIw_XaZ3XcGbxE,426
34
+ examples/get.py,sha256=Kp7UgO8pKNePpHdO1v86bqSn6IDZosdlFtX1y5ZzEJ0,969
35
+ examples/get_csv.py,sha256=PEOh06abRGp5YjCxNVYFo45Ne3Yv9YeOFl6Jii_jZ4k,1643
36
+ examples/get_network_activity.py,sha256=LFzSGrBsF_A9lGd8j07SHF28oAo4hk5hnAFKaZoBsVk,6744
37
+ examples/last.py,sha256=hlyYSpG3uP4uqUGv0Le1AEat2xKfivn7PSgF9kV0tEo,1814
38
+ examples/load_csv.py,sha256=pEu9jNof8HgHcZ-Tv6wr65PttV1knNmjlUMxG-k42QA,3930
39
+ examples/lookup.py,sha256=fB7Le-AgSe8BxwxHhzJ1X9mQYd50BicTX3onjzjhDWI,713
40
+ examples/misp2cef.py,sha256=d-xRD4NDD7RzwY4sgKlMj10rPe361DR2xquRB1jDzEE,2361
41
+ examples/misp2clamav.py,sha256=lLJ7NPwgd8O_8h8DNmbHMMB3vQ6FiT1y83WG3el00c0,1488
42
+ examples/openioc_to_misp.py,sha256=BDUsN0E6bgjq6RCB96MVo5vNK5tLhjKkk8CUE_nUMqk,930
43
+ examples/proofpoint_tap.py,sha256=6i4OeGQ9XosRQZ6ZvFWv1mif0fATGCe3HjfGRH4qGm0,9337
44
+ examples/proofpoint_vap.py,sha256=u2Zn6jESg89Ay0TNQ6Jryzifmvfj68n33WQ4nEaS9QE,2715
45
+ examples/search.py,sha256=dSrg7xKcJpNq6-LIRMZS8no16DeMP-lWudY2-XxqZ78,1668
46
+ examples/search_attributes_yara.py,sha256=6JqopJBBbyPbcKRP3MvYcPQEOp20pvsTMH3_WSOXOr8,1347
47
+ examples/search_sighting.py,sha256=Z7H0BX9YlalQBrCgC_T09vubrpzFYn53uIBUiX-haJs,1274
48
+ examples/server_sync_check_conn.py,sha256=DtQz4d5_XrNWJFjmQyFS4Y6RbBESl9uT9K7YtZkn9Tw,782
49
+ examples/sharing_groups.py,sha256=aP7HFeFlTMziD-L-OOzY7Pu3yyFNniAtQQi_PBJDIj8,436
50
+ examples/show_sightings.py,sha256=6FatE_bSaL5a2TVZ95dpKBBwSGf23eu3BZNdDJdx_UA,6295
51
+ examples/stats_report.py,sha256=oKDOuFTXpfYXaPHVsCSMM2iFIAQh6n2Zm_ilgaCadXo,22882
52
+ examples/sync_sighting.py,sha256=KJWDINw3RuqUI7NT3OyhuUj5zBE8HBQUbBEab7Pulrg,5958
53
+ examples/tags.py,sha256=x7hGxANTGixjJD_VhTLrAxzRlh6j4SjSDg1w3aFjVUQ,556
54
+ examples/test_sign.py,sha256=Zl83MAZk0Ey4q2UidyXbh1J2aFDA9wFq1jLgRtpZbi8,480
55
+ examples/trustar_misp.py,sha256=OA9qspSDSAL0hyuOjAsV0iah5PZpLRAXZWXn2KomUjU,1964
56
+ examples/up.py,sha256=ZaWwTUm3YdUBdo2Qj0PQdcDzDPklFXWwOCgHwGWfBV4,617
57
+ examples/upload.py,sha256=U-s7F4LT5VQoG2tKKFI_JjNVhAgyNdPRge_N9fOpGcU,2359
58
+ examples/users_list.py,sha256=laVSrCivtXokgCuzgowLipGztzA9h2neZIt-5gtJtK0,419
59
+ examples/vmray_automation.py,sha256=FRF6IiLpVy4L91UAn_g8BlxdBSLl5BjdifQoRruqjXY,9211
60
+ examples/vt_to_misp.py,sha256=lXqaaXusDpyy8n5IR1J2U1LR43f2CRjHhFdcJwOycSE,7514
61
+ examples/warninglists.py,sha256=x8_raV2Ss0RBuSuC3ZXVHBOJXiwDmPKjWtCzgT2862E,726
62
+ examples/yara.py,sha256=OmQsKQeXH5NlwYtIfOe8wIPsWeep7BAkKSwyRkSN9AA,946
63
+ examples/yara_dump.py,sha256=wZlIUlZEbuyUcKx-Gp5NrL_Vi_ZevAVx7GmuVk_mXek,3725
1
64
  pymisp/__init__.py,sha256=NxD9URYrwmEvYsZdUDTtBqBuIsvzRjXnRr8QVPsuOGE,4004
2
65
  pymisp/abstract.py,sha256=hdf3heAGnEi3rFIxaAsCOKfO4Y1kT_UoDNpr564GiIk,15745
3
- pymisp/api.py,sha256=ocZXH-sgLy-q0g7dlxV6TZu0uKo5ZAdwEIja33ZSQ68,208104
66
+ pymisp/api.py,sha256=9JJEPD_N_q3g6wGJKleM_jv7GlYQRcy7e3GHZret2Uk,209440
4
67
  pymisp/data/describeTypes.json,sha256=hoOy6U_FDVmfk9EdaFgGfEe_GMifmRnIrW8FAJ1ylJ4,45889
5
- pymisp/data/misp-objects/.git,sha256=NZIIWPWRiUFN6wy7MhT0zLzu8WP8PKqbMxWaO0by0dY,55
6
- pymisp/data/misp-objects/.gitchangelog.rc,sha256=27iB5X06HaLaMpDdZWMkg_YWLyZRm9H1qBOsqFntuV0,10009
7
- pymisp/data/misp-objects/.github/workflows/codeql.yml,sha256=pj95huITJ_yt7rBx2U74cXcz_0i8x6KT3juIlTTXR78,834
8
- pymisp/data/misp-objects/.github/workflows/nosetests.yml,sha256=7D2o7SKN_PFkx2ANMRUfrCUjY0k6wefr4-_dT1HDKOI,757
9
- pymisp/data/misp-objects/.travis.yml,sha256=ZzmVFWiNEr_hneN0OOX4ba1M9ivJAzn6umPe4KIsOiM,215
10
- pymisp/data/misp-objects/LICENSE-software-only.md,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
11
- pymisp/data/misp-objects/LICENSE.md,sha256=f6xQZQL7dWr4tRnO_khZlVegmj7jyIJhf7pu6M0VeuE,1860
12
- pymisp/data/misp-objects/README.md,sha256=rozuXu-Em7ohTbyZoRIq4289YuguWeToZfdkcniMOFw,78887
13
- pymisp/data/misp-objects/docs/time-related-objects.ods,sha256=fFZD3OhiC5VonsSfI0YFv5uHXLvbLG2nrNo0D89jmYA,19977
14
- pymisp/data/misp-objects/docs/time-related-objects.pdf,sha256=IArPOumDuXIIliuTkEP9uCT693dginC1nUA3WGV5PDA,23583
15
- pymisp/data/misp-objects/jq_all_the_things.sh,sha256=MOSjYD01hmCRTlZ5p-GkkemX8FR85fn2_tAja7kfTYc,818
16
68
  pymisp/data/misp-objects/objects/ADS/definition.json,sha256=EtPXOaNcngjtH0ylJ0gw9UfErgkjzUWFOyzvzC6pGfM,3048
17
69
  pymisp/data/misp-objects/objects/abuseipdb/definition.json,sha256=xWtZfdAwWWTR5_J76K8chrxFViJeH9T8CQQ6aRhEk3Q,1070
18
70
  pymisp/data/misp-objects/objects/ai-chat-prompt/definition.json,sha256=0hTBTI8aVX27kmRpJXddsN57G5rdS02Npq8WHPXFDhg,1917
@@ -180,6 +232,7 @@ pymisp/data/misp-objects/objects/impersonation/definition.json,sha256=b7p1izy0NJ
180
232
  pymisp/data/misp-objects/objects/imsi-catcher/definition.json,sha256=RYO5x6Vw3IwXP9MtnKJSNcewDii6aQ2x8--Swffu8L0,2722
181
233
  pymisp/data/misp-objects/objects/incident/definition.json,sha256=VVUs7uXn_lILq0g_0RblLEMUHmv3G333PPHQAC3yZIQ,5176
182
234
  pymisp/data/misp-objects/objects/infrastructure/definition.json,sha256=D-v0SiF1E1IqO4KedngScn7zN2OtYWODs7dHUTLaoHo,2439
235
+ pymisp/data/misp-objects/objects/instagram-account/definition.json,sha256=ZvseQ55gxB6PkblyBNYhhf7-na3G2g2sFsrir1sOGDY,1714
183
236
  pymisp/data/misp-objects/objects/instant-message/definition.json,sha256=HdPexSwRjeU9gbWx6D0OB7_Ai43jEUHNTAu7k0C60Ss,3255
184
237
  pymisp/data/misp-objects/objects/instant-message-group/definition.json,sha256=0bryac43sqmBgOqhY0ZywA2lT9ryColuVHi5E8dAX0c,2245
185
238
  pymisp/data/misp-objects/objects/integrity-impact/definition.json,sha256=rc2udwvjVSbPfjHDGXVkxNgaY8SmnZobLgjTQinyV-g,3374
@@ -202,7 +255,7 @@ pymisp/data/misp-objects/objects/keybase-account/definition.json,sha256=LVt7VEHX
202
255
  pymisp/data/misp-objects/objects/language-content/definition.json,sha256=rxGPi1GeE3WR6Qi6FFtQ2WWJVQk6dZdUOI0wqVg3a_Q,4721
203
256
  pymisp/data/misp-objects/objects/leaked-document/definition.json,sha256=YfEVp3dAgQAbgTNPx3URr2YnFI4eF5NhpKX9fczS_VU,2943
204
257
  pymisp/data/misp-objects/objects/legal-entity/definition.json,sha256=FXaJayt7yD8geaX9gHK-cdhfRWUzSsJsYIqllRHNjGE,1501
205
- pymisp/data/misp-objects/objects/lnk/definition.json,sha256=H9zpBX34MpNmR0ATySt1hm1iIkSETifTI867y87hwGU,7603
258
+ pymisp/data/misp-objects/objects/lnk/definition.json,sha256=MHlmwPY22T6vVR7yLXpguT4gKnmpNi7r4YK0EHZByuI,7975
206
259
  pymisp/data/misp-objects/objects/macho/definition.json,sha256=0Hk7xpH3GmHwwGCdr_HOn03QP5MjakrPkvOIxm38FZg,1329
207
260
  pymisp/data/misp-objects/objects/macho-section/definition.json,sha256=bGYAFsYwDCdKyL0OtM2hk4L4ZInmADPNXQAMtiInapQ,2550
208
261
  pymisp/data/misp-objects/objects/mactime-timeline-analysis/definition.json,sha256=7b3Xl3GAl7ksTz8YDlhv3US7cWCvn-nYJfuh1W3ZRf8,1558
@@ -280,6 +333,7 @@ pymisp/data/misp-objects/objects/regripper-system-hive-services-drivers/definiti
280
333
  pymisp/data/misp-objects/objects/report/definition.json,sha256=VGwiq38JeXS3-aZ1qhc8LolunR2TKZ8Fa9r5VUcWK68,2130
281
334
  pymisp/data/misp-objects/objects/research-scanner/definition.json,sha256=QNnj_Z4M91pobemf3D54NcPDEnBOnt2aMQAQBRdz0MM,2409
282
335
  pymisp/data/misp-objects/objects/risk-assessment-report/definition.json,sha256=a618CJQDAarQWtSh2DN9ddL4cvbjGvXp82Gpwt_cCcw,1418
336
+ pymisp/data/misp-objects/objects/rmm/definition.json,sha256=CLcUVVPl0i3BBlt8anGIuxTuj4IMdW4cqkSrqziFYxs,2030
283
337
  pymisp/data/misp-objects/objects/rogue-dns/definition.json,sha256=AVtTRNUGfXMVsMytl8VV44RfwrZgSLV1Zy1ubJjL46k,1272
284
338
  pymisp/data/misp-objects/objects/rtir/definition.json,sha256=_kETOirHNgTr_ONJjBOl5Lic5WjQKwX3sAuBNDXNS3A,1553
285
339
  pymisp/data/misp-objects/objects/sandbox-report/definition.json,sha256=gVIr3TJYvP2du-tGRcCz7FlonqlNNUtbrFnH2JYh66s,2691
@@ -318,7 +372,7 @@ pymisp/data/misp-objects/objects/stix2-pattern/definition.json,sha256=oCVvk1vU__
318
372
  pymisp/data/misp-objects/objects/stock/definition.json,sha256=ZCV8X9VXRQPXt6_qpNL0kUrJpyc6_COAAUY2desjMcU,5507
319
373
  pymisp/data/misp-objects/objects/submarine/definition.json,sha256=1i33QhqVNkQeMbT0Glk7LyOSZkjnfBUrX23jflIX7FE,4223
320
374
  pymisp/data/misp-objects/objects/suricata/definition.json,sha256=FQ5Is0dnVSr7ttDpBWnzI5Th9Sjx5nSh5WGYU9RZ9O0,952
321
- pymisp/data/misp-objects/objects/target-system/definition.json,sha256=_zAynYcwFwvWcHm7GzgkNV0OLnbKBTs4sKxNJjszjyg,1001
375
+ pymisp/data/misp-objects/objects/target-system/definition.json,sha256=PaM41BdcjXCYzs1oY0N-ALabDJgzQVxHqnjj70zZ_S8,1000
322
376
  pymisp/data/misp-objects/objects/task/definition.json,sha256=ugSxQkRnyMd8Jb6kMj5yJCveNyc-mJ-tCh3jiQKXXmA,3029
323
377
  pymisp/data/misp-objects/objects/tattoo/definition.json,sha256=ELfj_gHXz6Vqv1ze2y7MOiDdhj3mA-XI7y34ybdKAOc,2301
324
378
  pymisp/data/misp-objects/objects/telegram-account/definition.json,sha256=HvNHdk8jHATmso2eF0MHOCvJxA4xjrEVrwM0Hxe6SDg,1028
@@ -370,19 +424,12 @@ pymisp/data/misp-objects/objects/youtube-comment/definition.json,sha256=3cVid4QJ
370
424
  pymisp/data/misp-objects/objects/youtube-playlist/definition.json,sha256=oDlL__sYqBVOJPJllxW4wW3ElUhz6cKM0UAruPO2BTw,1576
371
425
  pymisp/data/misp-objects/objects/youtube-video/definition.json,sha256=VQsamCqE-C3OIR-DFp8Rvn-gGxQ_k8hUTnqwyLkk1o4,2581
372
426
  pymisp/data/misp-objects/relationships/definition.json,sha256=J6d5qzEklS9PHQda1qHE9eIeMQZw94sVCCGTN_mVa9Q,48218
373
- pymisp/data/misp-objects/schema_objects.json,sha256=uwRHHv4mvNkg0A9Kdeb3Y80_IUhJglsIn-gN88Kh65g,8346
427
+ pymisp/data/misp-objects/schema_objects.json,sha256=VgCkZKoE2eF0kfhNbuqTSkXwHoJGZmZxBrHEIJKxbQo,8346
374
428
  pymisp/data/misp-objects/schema_relationships.json,sha256=MCusp9GAyuHTo3lLyBrsvl5WJC-OHjXYHlEHW6fNv8M,1181
375
- pymisp/data/misp-objects/tools/adoc_objects.py,sha256=Mv9pibT7-GCkj8WjBJf8Yo8iJ23zA2I8uqOYQODX1pI,7662
376
- pymisp/data/misp-objects/tools/alfred_links_to_relarelationships.py,sha256=_RnS-Dwdi1XruN45q7jGbdRee7mRR2k7oZrgqXtW-dM,1572
377
- pymisp/data/misp-objects/tools/list_of_objects.py,sha256=BVzegOHwdjVFg9SJ3mdkqVCZT4SieyhQk_7wIe5ndHo,1783
378
- pymisp/data/misp-objects/tools/updated.sh,sha256=h_rsen5CZsJaAKBKA5UWa8GTrtZrzvgoRFyhCYR85wY,228
379
- pymisp/data/misp-objects/tools/validate_opposites.sh,sha256=C6vdFVTQyYbEdl8DDvh68H0jIyd7tSq0cWdvfqIc_oQ,401
380
- pymisp/data/misp-objects/unique_uuid.py,sha256=V8lw6AkVYu2UgNK0CRoFhZWoaZN3zMBuld-1N3BayvU,468
381
- pymisp/data/misp-objects/validate_all.sh,sha256=0wWn-qZS9Pp0voEHK2QBCUxjvlaYj_kbI0RxoBdZ1ek,822
382
429
  pymisp/data/schema-lax.json,sha256=2QICdCbtfXRJkTVjwb7xjF3ypys2wOtrUyE1ZDz_qes,8561
383
430
  pymisp/data/schema.json,sha256=79N2hObemthb_syUHksDqM4djFttsWZQDg1sTYZYxys,9178
384
431
  pymisp/exceptions.py,sha256=IgGGadv5lnLAvO7Q6AjF0vEbjoWwwDWLYwMn-8pkU_k,1965
385
- pymisp/mispevent.py,sha256=U2Tu1U80GRqKnagpkQJmz2hHjH_twq72nKN5K5VjzWk,121187
432
+ pymisp/mispevent.py,sha256=OkU-PyoKIVQ9cUyUmxD3hPnCsOW5Tn7EJcGLm81LYJQ,121354
386
433
  pymisp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
387
434
  pymisp/tools/__init__.py,sha256=_KCihYo82e8G5cHV321ak2sgbao2GyFjf4sSTMiN_IM,2233
388
435
  pymisp/tools/_psl_faup.py,sha256=JyK8RQm8DPWvNuoF4rQpiE0rBm-Az-sr38Kl46dmWcs,7034
@@ -413,7 +460,73 @@ pymisp/tools/update_objects.py,sha256=sp_XshzgtRjAU0Mqg8FgRTaokjVKLImyQ02xIcPSrH
413
460
  pymisp/tools/urlobject.py,sha256=PIucy1356zaljUm1NbeKmEpHpAUK9yiK2lAugcMp2t8,2489
414
461
  pymisp/tools/vehicleobject.py,sha256=bs7f4d47IBi2-VumssSM3HlqkH0viyHTLmIHQxe8Iz8,3687
415
462
  pymisp/tools/vtreportobject.py,sha256=NsdYzgqm47dywYeW8UnWmEDeIsf07xZreD2iJzFm2wg,3217
416
- pymisp-2.5.4.dist-info/LICENSE,sha256=1oPSVvs96qLjbJVi3mPn0yvWs-6aoIF6BNXi6pVlFmY,1615
417
- pymisp-2.5.4.dist-info/METADATA,sha256=2xiY-iIVYNriRJZJ_GVTvxPYOKOAr5MjQloPa8ApVrw,9166
418
- pymisp-2.5.4.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
419
- pymisp-2.5.4.dist-info/RECORD,,
463
+ tests/57c4445b-c548-4654-af0b-4be3950d210f.json,sha256=9vOptAJ8svZcWSGHG_lvvEKmDMWpdf0gftQAzCu0nRk,3038
464
+ tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
465
+ tests/csv_testfiles/invalid_fieldnames.csv,sha256=aZ_B2fxaHXJTp8_N0M5YPdNgTr37Tbl12K_RGP53xbQ,607
466
+ tests/csv_testfiles/valid_fieldnames.csv,sha256=4U77EexlKtoSEzDve9Hm9WwQzx8g9I-Fv_iMw6pCVY0,441
467
+ tests/email_testfiles/mail_1.eml.zip,sha256=XuE4ct-_3GcTrrOumKHf4U78bYlP9DzQAFO_9JEVgIw,27186
468
+ tests/email_testfiles/mail_1.msg,sha256=XWNU1Ajspvsm6jlbzFdCG2IqR43IKcgbwvtjlrVRjOQ,276480
469
+ tests/email_testfiles/mail_1_bom.eml,sha256=1wnXbA6yhyFQHJpZLVUIxqS1CpyLABVZ4cfxva_uY30,65789
470
+ tests/email_testfiles/mail_1_headers_only.eml,sha256=n-AOw4wQ9V38nqkQ8TUzM76zBm5bouK8cga8LiYvCIg,2415
471
+ tests/email_testfiles/mail_2.eml,sha256=DIuBSpNigiEoVxYdc8ugj6gZY0ujjIDBdGmgx8pgC4I,1477
472
+ tests/email_testfiles/mail_3.eml,sha256=e_6-cNCILvTrqGUWgXaXD8iWSBXNe3lP3wF2mImf0S8,8878
473
+ tests/email_testfiles/mail_3.msg,sha256=vdBjsz-bnY6Ka-lcB-8YIXINl8HG_HF_F1KEbLzcD4Y,26624
474
+ tests/email_testfiles/mail_4.msg,sha256=1XXwxnRSDuRqOg_ctZD74ls1uH_uMTft-2cxOmualGA,57344
475
+ tests/email_testfiles/mail_5.msg,sha256=NzzvgFln7wntf-G2q-HUKBWvcAfSHLVTKh1S7hrDSRM,65536
476
+ tests/email_testfiles/mail_multiple_to.eml,sha256=I05fUHirW4vzQPHB13y3f-5kCB8rvkCk-ffmw_4STdM,1568
477
+ tests/email_testfiles/source,sha256=JNNZ6fO8OFC__qXXT6Ob0ITRa-z7K1vvfz2x7Gi1QwE,66
478
+ tests/git-vuln-finder-quagga.json,sha256=72kvJPrY54A0cFyorNqnEidPNn0kRTtkiO434bcXGYQ,98813
479
+ tests/misp_event.json,sha256=V_W1lsV-p5SmIHMieJhqIDxeF7XBmI329s3hGAZNxGA,2053
480
+ tests/mispevent_testfiles/attribute.json,sha256=b8gVCVa5-N88g3OoKzwGzaMnyArc0iigaareQSgCs30,374
481
+ tests/mispevent_testfiles/attribute_del.json,sha256=DUys_24edRUOl5Bfign1Urb_0Ve2DWzLCiN8sk4oDl4,415
482
+ tests/mispevent_testfiles/def_param.json,sha256=zCQsm9U7XT4HJDi3tA57fhweqM2moO6oCqsiSph76Sw,1458
483
+ tests/mispevent_testfiles/event.json,sha256=Z1VlOz9slPWLNsbUDK7ipIzdn1NrCn9frQcguTETZ8E,144
484
+ tests/mispevent_testfiles/event_obj_attr_tag.json,sha256=CZhiklh4RUhGFdDIl-IOEk0rXFfIutcEJYlNrZScogk,1507
485
+ tests/mispevent_testfiles/event_obj_def_param.json,sha256=YKIhEibDkF7C1eSOdx_XFOXFPd0bUDG16nieHoB-w1g,1571
486
+ tests/mispevent_testfiles/event_obj_tag.json,sha256=hD358Y41xiA3GsWc2gAzpP5Le1OL3uqKB8VOrcSlTOY,651
487
+ tests/mispevent_testfiles/event_tags.json,sha256=CKkbWlTky64PG_bBM9U3uQ7C080A8GsJQ8VLNNkshKg,237
488
+ tests/mispevent_testfiles/existing_event.json,sha256=W4X9ldzv2mXWpmlpsuKfQt-nhNCSR9tc4SB1kfBQEpI,146400
489
+ tests/mispevent_testfiles/existing_event_edited.json,sha256=v4V711qaSfDEsJScbPr1vT-n33RaGyJUQh8B7nUHPIg,146390
490
+ tests/mispevent_testfiles/galaxy.json,sha256=Wd1FkJYKtqTufAQXTcOAjv5bxmvU5OioNRKFOAOe2b0,756
491
+ tests/mispevent_testfiles/malware.json,sha256=YoksvEuBCvbTHVY1VVJvlh4l7EHzAROlCNTWwcIHSEc,396
492
+ tests/mispevent_testfiles/malware_exist.json,sha256=kmtQ0vW9MI-E5p4-3ZtQf0dk9CuyX_ARD_MpCQsTNjM,7140
493
+ tests/mispevent_testfiles/misp_custom_obj.json,sha256=uSIEHEHO63g12smDvXEs8aZLvb5OALjDpgN-qyraIfI,881
494
+ tests/mispevent_testfiles/overwrite_file/definition.json,sha256=2fMeAlgedrSPllkzj0D3hSUxfy5BXhS0L2vl2npVV5k,11122
495
+ tests/mispevent_testfiles/proposals.json,sha256=qj5PvWOVcjDzbTkFCJbwcKBwQuMEhqpqWIiVdtgzAys,715
496
+ tests/mispevent_testfiles/shadow.json,sha256=SRchQwDqpnb-Fnuii4UkEI84QwaY2lIIDtjh6StKDqA,4222
497
+ tests/mispevent_testfiles/sighting.json,sha256=1bV0Clz3JL0I6KLLFpPjmCYhMz3a5BOYItYRfk1113E,63
498
+ tests/mispevent_testfiles/simple.json,sha256=2RQXb9UL1_VlcAAGoxqpe3nTrRfO4gyOX_IGHVy3SBc,4
499
+ tests/mispevent_testfiles/test_object_template/definition.json,sha256=DjM88pcSxnA-orIGuSddriBVbzzxP26kgbiez6jOedc,578
500
+ tests/new_misp_event.json,sha256=tAvZzx4oSnHHi6cptmyR_7FFR3wkpD3TRUfc7m9cLKs,888
501
+ tests/reportlab_testfiles/HTML_event.json,sha256=icL96e7np3KbyqlumqyBuavQ8rBRYigsYTrhsiwuQCE,171424
502
+ tests/reportlab_testfiles/galaxy_1.json,sha256=OHlUJEItkeo0azui3P-Z9fM20va7ZoKVWwx99Wl07kY,225290
503
+ tests/reportlab_testfiles/image_event.json,sha256=goMdDrmqZYz1uGNjWQ1PNP-TBE9ZGYxiurBedaUfPLM,303937
504
+ tests/reportlab_testfiles/japanese_test.json,sha256=EjDxuz-zzFyiBz_V9tk9N56jeKbDKtzVGAENLKAwWk0,17556
505
+ tests/reportlab_testfiles/japanese_test_heavy.json,sha256=_enFM3O9p-nQGQr2hrBncnex6fScoJMs0LOqOD_Eik4,117363
506
+ tests/reportlab_testfiles/long_event.json,sha256=jYkzFllzIt51Ac4Du68QFtqQCn69gstiMMKmHRHpLpY,149693
507
+ tests/reportlab_testfiles/mainly_objects_1.json,sha256=JI_uXChihmRhP22hlmqgtKdpZZqUjQNBJ5kTryTvXpM,123173
508
+ tests/reportlab_testfiles/mainly_objects_2.json,sha256=1Pzo76wCqqY56d6Y3DmqBal4zBliK8X-bQY-3xJH6cs,102032
509
+ tests/reportlab_testfiles/sighting_1.json,sha256=HdAcmA8lJ2ThwNi8Ryx_GF8JNyVdJaEeh_oPMd9piLs,11787
510
+ tests/reportlab_testfiles/sighting_2.json,sha256=9nn4uL6tNpVc1SpoZzJroLdevvMU9ppzeDb6EzipuCY,8790
511
+ tests/reportlab_testfiles/to_delete1.json,sha256=Z71YUMPLG2nlI_at79wrt48y5x3zvOzJG4p_PtFIyzQ,30745
512
+ tests/reportlab_testfiles/to_delete2.json,sha256=OWWI4y9TrvH-RW-p-Um1F1ejVLAdoKMLWQ0PHxrxRTo,157437
513
+ tests/reportlab_testfiles/to_delete3.json,sha256=Ids-85h99TAIspIhoYfTRRXTqD1lT7abLxvF0IE4pVA,33776
514
+ tests/reportlab_testfiles/very_long_event.json,sha256=6BbYF3BvQykBoiwnl1dR1iramC9gDHpXFu-tzqB6MPM,384749
515
+ tests/reportlab_testoutputs/to_delete1.json.pdf,sha256=3xoKxWMJBhiTZo6AKvegJZLGGillA23MGgoaZ5ypvAs,30883
516
+ tests/reportlab_testoutputs/to_delete2.json.pdf,sha256=cvTnDX8Cw6qwzGYgqaknpL2s1Kby316eIQ6swzCpLCY,35123
517
+ tests/reportlab_testoutputs/to_delete3.json.pdf,sha256=R4q9tv1UIBMeNLULhSEJrz-imGupdb5vrFgkyZa0A5k,19673
518
+ tests/search_index_result.json,sha256=ndtjirO1fJA5QUdbKz_P0K9q9YMAMHIqSobcqyZFOAA,1415
519
+ tests/sharing_groups.json,sha256=GsLwfsAkEf_GG_Qe45UFl0IE7W9XQQC9aMolmcnw3C8,2256
520
+ tests/stix1.xml-utf8,sha256=NbBNpDBtw6eGIAhhS25b5_ZJfRmoonlAvYT0OsPCXcg,7214
521
+ tests/stix2.json,sha256=hQgTs7CSad4QI3iL4VYbvxOcfFqInNQkJhU4avIX5GA,1300
522
+ tests/test_analyst_data.py,sha256=ViJjgST_qPUJTaO1-pCxpsoo5C-HUuki7mPsHLeFRTo,4891
523
+ tests/test_emailobject.py,sha256=7eclz2-ahosdSBqzr3xbAnboaWa57tffzzmChJk--mU,7810
524
+ tests/test_fileobject.py,sha256=-Ns4YIZse_bymoOgyt4np9c1Rg8P5BVyklJz7j1FiHg,702
525
+ tests/test_mispevent.py,sha256=dRYjR3ZRxSCh030JFwyuBajyZpHLdTDT3KRlrntDvZo,24287
526
+ tests/test_reportlab.py,sha256=4zhH9UWkWotBj1f6e5YVYw4-D0ah02nQix6oxOZDkRU,17640
527
+ tests/testlive_comprehensive.py,sha256=uzL6XS3t8RQDHa9SUYTti8K99GeSSz3RIe746VLamDY,195802
528
+ tests/testlive_sync.py,sha256=V57x761Wwg5h1roiZY5c1Ddr63TpZGsyIDPE4tEj1Zc,22195
529
+ pymisp-2.5.7.dist-info/LICENSE,sha256=1oPSVvs96qLjbJVi3mPn0yvWs-6aoIF6BNXi6pVlFmY,1615
530
+ pymisp-2.5.7.dist-info/METADATA,sha256=uvU-sYqRDfPiJIW1brsiZ7UvhXT-T8w1dNrfgsGWDNE,8881
531
+ pymisp-2.5.7.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
532
+ pymisp-2.5.7.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.1
2
+ Generator: poetry-core 2.1.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1 @@
1
+ {"Event": {"info": "Ransomware - Xorist", "publish_timestamp": "1472548231", "timestamp": "1472541011", "analysis": "2", "Attribute": [{"category": "External analysis", "comment": "Imported via the Freetext Import Tool - Xchecked via VT: b3c4ae251f8094fa15b510051835c657eaef2a6cea46075d3aec964b14a99f68", "uuid": "57c5300c-0560-4146-bfaa-40e802de0b81", "timestamp": "1472540684", "to_ids": false, "value": "https://www.virustotal.com/file/b3c4ae251f8094fa15b510051835c657eaef2a6cea46075d3aec964b14a99f68/analysis/1469554268/", "type": "link"}, {"category": "External analysis", "comment": "", "uuid": "57c5310b-dc34-43cb-8b8e-4846950d210f", "timestamp": "1472541011", "to_ids": false, "value": "http://www.xylibox.com/2011/06/have-fun-with-trojan-ransomwin32xorist.html", "type": "link"}, {"category": "Other", "comment": "", "uuid": "57c444c0-8004-48fa-9c33-8aca950d210f", "timestamp": "1472480448", "to_ids": false, "value": "UPX packed", "type": "comment"}, {"category": "Other", "comment": "", "uuid": "57c44648-96f4-45d4-a8eb-453e950d210f", "timestamp": "1472480840", "to_ids": false, "value": "Key: 85350044dF4AC3518D185678A9414A7F,\r\nEncryption rounds:8,\r\nStart offset: 64,\r\nAlgorithm: TEA", "type": "text"}, {"category": "Payload delivery", "comment": "Imported via the Freetext Import Tool", "uuid": "57c4448a-fb04-457d-87e7-4127950d210f", "timestamp": "1472480394", "to_ids": true, "value": "3Z4wnG9603it23y.exe", "type": "filename"}, {"category": "Payload delivery", "comment": "Imported via the Freetext Import Tool", "uuid": "57c4448b-454c-4d17-90d1-4d2f950d210f", "timestamp": "1472480395", "to_ids": true, "value": "0749bae92ca336a02c83d126e04ec628", "type": "md5"}, {"category": "Payload delivery", "comment": "Imported via the Freetext Import Tool", "uuid": "57c4448a-bef0-4ba7-a071-444e950d210f", "timestamp": "1472480394", "to_ids": true, "value": "77b0c41b7d340b8a3d903f21347bbf06aa766b5b", "type": "sha1"}, {"category": "Payload delivery", "comment": "Imported via the Freetext Import Tool", "uuid": "57c4448b-3fa4-4d65-9ccc-4afa950d210f", "timestamp": "1472480395", "to_ids": true, "value": "b3c4ae251f8094fa15b510051835c657eaef2a6cea46075d3aec964b14a99f68", "type": "sha256"}, {"category": "Persistence mechanism", "comment": "", "uuid": "57c54b0f-27a4-458b-8e63-4455950d210f", "timestamp": "1472547599", "to_ids": true, "value": "Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Run|%TEMP%\\3Z4wnG9603it23y.exe", "type": "regkey|value"}], "Tag": [{"colour": "#ffffff", "exportable": true, "name": "tlp:white"}, {"colour": "#3d7a00", "exportable": true, "name": "circl:incident-classification=\"malware\""}, {"colour": "#420053", "exportable": true, "name": "ms-caro-malware:malware-type=\"Ransom\""}, {"colour": "#2c4f00", "exportable": true, "name": "malware_classification:malware-category=\"Ransomware\""}], "published": true, "date": "2016-08-29", "Orgc": {"name": "CIRCL", "uuid": "55f6ea5e-2c60-40e5-964f-47a8950d210f"}, "threat_level_id": "3", "uuid": "57c4445b-c548-4654-af0b-4be3950d210f"}}
tests/__init__.py ADDED
File without changes
@@ -0,0 +1,11 @@
1
+ SHA1,fileName,size
2
+ 2a030cc6d84d5785f5e84d0f5888a411d4b06d01,soft.exe,45568
3
+ 2abae839362edfe52d9ebe282fb61113d22b331f,sttager.exe,20480
4
+ 6995a32e0a4d4f6d0c9b2a00a96d69bff4b83ea7,test443.exe,373911
5
+ 87b1f17fbb4a1e8eef4cb31c1c0194b1426c868c,veil.exe,345761
6
+ afc36916a4df934446681ea28bef6add4decb98a,80_http.exe.exe,411850
7
+ f832d94391a8d2d5cf92773e6c912905ec7c40c7,test1.exe,406636
8
+ 056823c7891a04b2fec8903eb401ae3291743a54,beca.exe.exe,23808
9
+ b7afa7acf1b7ded2c4e3d0884b5cdaa230d9f82e,shell1.exe,24576
10
+ 4b50b6b9157026ab408d966ece02d1cef8045f82,starggge.exe,27136
11
+ 6042dfd50d33da40e383baec4a7ef7c75bf17481,8_32.exe,24064
@@ -0,0 +1,4 @@
1
+ md5, sha1, sha256
2
+ 644087ccca16d2a728ef7685a4106f09, eabd6974ac71efd72d9e0688d5a6131f336d169c, 385e31c97e3a07bbb81513f0cd0979e64e6b014943902efd002f57b21eadd41e
3
+ 34187a34d0a3c5d63016c26346371b54, ce8209ff9828aa8cb095bd7d1589fc4d394c298c, 5f815b8a8e77731c9ca2b3a07a27f880ef24d54e458d77bdabbbaf2269fe96c3
4
+ 871aa15f4d61c85e1284e1be3f99f705, 236eac0b19f91117b27f1b198a4d8490d99ec2e5, b434bccf0a5ff75b27184e661df751466aef69f35fbd7b8b8692302b8b886262
Binary file
Binary file