pymisp 2.5.1__tar.gz → 2.5.17.3__tar.gz

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 (637) hide show
  1. {pymisp-2.5.1 → pymisp-2.5.17.3}/CHANGELOG.txt +724 -767
  2. {pymisp-2.5.1 → pymisp-2.5.17.3}/PKG-INFO +26 -31
  3. {pymisp-2.5.1 → pymisp-2.5.17.3}/README.md +1 -2
  4. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/source/conf.py +1 -6
  5. pymisp-2.5.17.3/docs/source/tools.rst +101 -0
  6. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_attributes_from_csv.py +2 -2
  7. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_fail2ban_object.py +2 -2
  8. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_feed.py +2 -2
  9. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_filetype_object_from_csv.py +2 -2
  10. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_generic_object.py +2 -2
  11. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_named_attribute.py +2 -2
  12. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_organisations.py +2 -2
  13. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_ssh_authorized_keys.py +2 -2
  14. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_user.py +2 -2
  15. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/cache_all.py +2 -2
  16. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/create_events.py +2 -2
  17. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/cytomic_orion.py +2 -2
  18. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/del.py +2 -2
  19. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/delete_user.py +2 -2
  20. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/edit_organisation.py +2 -2
  21. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/edit_user.py +2 -2
  22. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/falsepositive_disabletoids.py +2 -2
  23. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/fetch_events_feed.py +2 -2
  24. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/freetext.py +1 -1
  25. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/get.py +2 -2
  26. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/get_csv.py +2 -2
  27. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/last.py +2 -2
  28. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/proofpoint_tap.py +2 -2
  29. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/proofpoint_vap.py +2 -2
  30. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/sharing_groups.py +2 -2
  31. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/show_sightings.py +2 -2
  32. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/stats_report.py +2 -2
  33. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/tags.py +2 -2
  34. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/up.py +2 -2
  35. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/upload.py +2 -2
  36. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/users_list.py +2 -2
  37. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/vmray_automation.py +2 -2
  38. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/__init__.py +1 -1
  39. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/abstract.py +1 -1
  40. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/api.py +50 -13
  41. pymisp-2.5.17.3/pymisp/data/describeTypes.json +1502 -0
  42. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/android-app/definition.json +8 -2
  43. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/asn/definition.json +11 -1
  44. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/coin-address/definition.json +38 -19
  45. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cryptocurrency-transaction/definition.json +37 -18
  46. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/dom-hash/definition.json +7 -1
  47. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/file/definition.json +6 -1
  48. {pymisp-2.5.1/pymisp/data/misp-objects/objects/flowintel-cm-case → pymisp-2.5.17.3/pymisp/data/misp-objects/objects/flowintel-case}/definition.json +11 -4
  49. {pymisp-2.5.1/pymisp/data/misp-objects/objects/flowintel-cm-task → pymisp-2.5.17.3/pymisp/data/misp-objects/objects/flowintel-task}/definition.json +11 -4
  50. {pymisp-2.5.1/pymisp/data/misp-objects/objects/flowintel-cm-task-note → pymisp-2.5.17.3/pymisp/data/misp-objects/objects/flowintel-task-note}/definition.json +11 -4
  51. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/flowintel-task-resource/definition.json +42 -0
  52. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/github-action/definition.json +59 -0
  53. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/github-repo/definition.json +142 -0
  54. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/google-account/definition.json +116 -0
  55. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/greynoise-ip/definition.json +56 -8
  56. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/instagram-account/definition.json +66 -0
  57. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/lnk/definition.json +13 -1
  58. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/network-connection/definition.json +1 -0
  59. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/network-data/definition.json +167 -0
  60. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/opentide/definition.json +58 -0
  61. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/original-imported-file/definition.json +1 -0
  62. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/person/definition.json +7 -1
  63. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/phone/definition.json +2 -1
  64. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/query/definition.json +4 -2
  65. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/rmm/definition.json +88 -0
  66. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/shadowserver-beacon-ttl-report/definition.json +110 -0
  67. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/shadowserver-beacon-url-overlap/definition.json +83 -0
  68. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/spambee-report/definition.json +54 -0
  69. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/spearphishing-campaign/definition.json +76 -0
  70. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/summariser-output/definition.json +90 -0
  71. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/taranis-news-item/definition.json +66 -0
  72. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/taranis-story/definition.json +52 -0
  73. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/target-system/definition.json +2 -2
  74. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/trusted-timestamp/definition.json +74 -0
  75. pymisp-2.5.17.3/pymisp/data/misp-objects/objects/uav/definition.json +201 -0
  76. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/url/definition.json +6 -1
  77. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/vehicle/definition.json +5 -5
  78. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/vulnerability/definition.json +5 -4
  79. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/relationships/definition.json +24 -1
  80. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/schema_objects.json +3 -1
  81. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/mispevent.py +165 -53
  82. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/create_misp_object.py +5 -6
  83. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/elfobject.py +3 -3
  84. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/emailobject.py +97 -40
  85. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/fileobject.py +6 -3
  86. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/machoobject.py +3 -3
  87. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/peobject.py +4 -4
  88. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/reportlab_generator.py +14 -2
  89. pymisp-2.5.17.3/pymisp/tools/urlobject.py +83 -0
  90. pymisp-2.5.17.3/pyproject.toml +92 -0
  91. pymisp-2.5.17.3/tests/email_testfiles/mail_1.msg.zip +0 -0
  92. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/event_obj_attr_tag.json +2 -2
  93. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/event_obj_def_param.json +2 -2
  94. pymisp-2.5.17.3/tests/test_analyst_data.py +123 -0
  95. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/test_emailobject.py +7 -3
  96. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/test_mispevent.py +23 -23
  97. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/testlive_comprehensive.py +1 -0
  98. pymisp-2.5.1/docs/source/tools.rst +0 -69
  99. pymisp-2.5.1/examples/admin/setup_sync.py +0 -40
  100. pymisp-2.5.1/examples/climate/scrippsco2.py +0 -493
  101. pymisp-2.5.1/examples/covid19/import_csse_covid19_daily.py +0 -152
  102. pymisp-2.5.1/examples/covid19/import_dxy_covid19_live.py +0 -77
  103. pymisp-2.5.1/examples/events/README.md +0 -53
  104. pymisp-2.5.1/examples/events/create_dummy_event.py +0 -23
  105. pymisp-2.5.1/examples/events/create_massive_dummy_events.py +0 -31
  106. pymisp-2.5.1/examples/events/dummy +0 -21
  107. pymisp-2.5.1/examples/events/tools.py +0 -71
  108. pymisp-2.5.1/examples/feed-generator/README.md +0 -30
  109. pymisp-2.5.1/examples/feed-generator/generate.py +0 -106
  110. pymisp-2.5.1/examples/feed-generator/output/empty +0 -0
  111. pymisp-2.5.1/examples/feed-generator/settings.default.py +0 -56
  112. pymisp-2.5.1/examples/feed-generator-from-redis/MISPItemToRedis.py +0 -90
  113. pymisp-2.5.1/examples/feed-generator-from-redis/ObjectConstructor/CowrieMISPObject.py +0 -33
  114. pymisp-2.5.1/examples/feed-generator-from-redis/README.md +0 -90
  115. pymisp-2.5.1/examples/feed-generator-from-redis/fromredis.py +0 -160
  116. pymisp-2.5.1/examples/feed-generator-from-redis/generator.py +0 -267
  117. pymisp-2.5.1/examples/feed-generator-from-redis/install.sh +0 -4
  118. pymisp-2.5.1/examples/feed-generator-from-redis/server.py +0 -12
  119. pymisp-2.5.1/examples/feed-generator-from-redis/settings.default.py +0 -63
  120. pymisp-2.5.1/examples/freetext.txt +0 -5
  121. pymisp-2.5.1/examples/get_network_activity.event_id +0 -4
  122. pymisp-2.5.1/examples/graphdb/make_neo4j.py +0 -45
  123. pymisp-2.5.1/examples/ioc_2_misp/README.md +0 -25
  124. pymisp-2.5.1/examples/ioc_2_misp/ioc2misp.py +0 -337
  125. pymisp-2.5.1/examples/ioc_2_misp/keys.py.sample +0 -94
  126. pymisp-2.5.1/examples/ioc_2_misp/taxonomy.csv +0 -12
  127. pymisp-2.5.1/examples/keys.py.sample +0 -9
  128. pymisp-2.5.1/examples/profiles/daily_report.py +0 -37
  129. pymisp-2.5.1/examples/profiles/weekly_report.py +0 -33
  130. pymisp-2.5.1/examples/sighting.json +0 -2
  131. pymisp-2.5.1/examples/situational_awareness/README.md +0 -38
  132. pymisp-2.5.1/examples/situational_awareness/__init__.py +0 -0
  133. pymisp-2.5.1/examples/situational_awareness/attribute_treemap.py +0 -31
  134. pymisp-2.5.1/examples/situational_awareness/bokeh_tools.py +0 -33
  135. pymisp-2.5.1/examples/situational_awareness/date_tools.py +0 -70
  136. pymisp-2.5.1/examples/situational_awareness/pygal_tools.py +0 -54
  137. pymisp-2.5.1/examples/situational_awareness/style.css +0 -50
  138. pymisp-2.5.1/examples/situational_awareness/style2.css +0 -41
  139. pymisp-2.5.1/examples/situational_awareness/tag_scatter.py +0 -71
  140. pymisp-2.5.1/examples/situational_awareness/tag_search.py +0 -70
  141. pymisp-2.5.1/examples/situational_awareness/tags_count.py +0 -64
  142. pymisp-2.5.1/examples/situational_awareness/tags_to_graphs.py +0 -96
  143. pymisp-2.5.1/examples/situational_awareness/test_attribute_treemap.html +0 -25
  144. pymisp-2.5.1/examples/situational_awareness/tools.py +0 -390
  145. pymisp-2.5.1/examples/suricata_search/README.md +0 -3
  146. pymisp-2.5.1/examples/trustar.conf +0 -14
  147. pymisp-2.5.1/examples/user_sample.json +0 -6
  148. pymisp-2.5.1/pymisp/data/describeTypes.json +0 -1496
  149. pymisp-2.5.1/pymisp/data/misp-objects/.git +0 -1
  150. pymisp-2.5.1/pymisp/data/misp-objects/.gitchangelog.rc +0 -289
  151. pymisp-2.5.1/pymisp/data/misp-objects/.github/workflows/codeql.yml +0 -41
  152. pymisp-2.5.1/pymisp/data/misp-objects/.github/workflows/nosetests.yml +0 -39
  153. pymisp-2.5.1/pymisp/data/misp-objects/.travis.yml +0 -16
  154. pymisp-2.5.1/pymisp/data/misp-objects/LICENSE-software-only.md +0 -661
  155. pymisp-2.5.1/pymisp/data/misp-objects/LICENSE.md +0 -36
  156. pymisp-2.5.1/pymisp/data/misp-objects/README.md +0 -566
  157. pymisp-2.5.1/pymisp/data/misp-objects/docs/time-related-objects.ods +0 -0
  158. pymisp-2.5.1/pymisp/data/misp-objects/docs/time-related-objects.pdf +0 -0
  159. pymisp-2.5.1/pymisp/data/misp-objects/jq_all_the_things.sh +0 -29
  160. pymisp-2.5.1/pymisp/data/misp-objects/tools/adoc_objects.py +0 -145
  161. pymisp-2.5.1/pymisp/data/misp-objects/tools/alfred_links_to_relarelationships.py +0 -48
  162. pymisp-2.5.1/pymisp/data/misp-objects/tools/list_of_objects.py +0 -50
  163. pymisp-2.5.1/pymisp/data/misp-objects/tools/updated.sh +0 -6
  164. pymisp-2.5.1/pymisp/data/misp-objects/tools/validate_opposites.sh +0 -17
  165. pymisp-2.5.1/pymisp/data/misp-objects/unique_uuid.py +0 -16
  166. pymisp-2.5.1/pymisp/data/misp-objects/validate_all.sh +0 -38
  167. pymisp-2.5.1/pymisp/tools/pdf_fonts/.git +0 -1
  168. pymisp-2.5.1/pymisp/tools/pdf_fonts/.gitignore +0 -104
  169. pymisp-2.5.1/pymisp/tools/urlobject.py +0 -59
  170. pymisp-2.5.1/pyproject.toml +0 -97
  171. pymisp-2.5.1/tests/__init__.py +0 -0
  172. pymisp-2.5.1/tests/email_testfiles/mail_1.msg +0 -0
  173. {pymisp-2.5.1 → pymisp-2.5.17.3}/LICENSE +0 -0
  174. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/Makefile +0 -0
  175. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/PDF-export/ExportPDF.png +0 -0
  176. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/PDF-export/Internationalization_parameters.png +0 -0
  177. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/PDF-export/Internationalization_path.png +0 -0
  178. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/PDF-export/Parameters.png +0 -0
  179. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/PDF-export/README.MD +0 -0
  180. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/source/index.rst +0 -0
  181. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/source/modules.rst +0 -0
  182. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/tutorial/FullOverview.ipynb +0 -0
  183. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/tutorial/Search-FullOverview.ipynb +0 -0
  184. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/tutorial/a.7-rest-api-extensive-restsearch.ipynb +0 -0
  185. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/tutorial/install_notebook.sh +0 -0
  186. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/tutorial/old/PyMISP_tutorial.ipynb +0 -0
  187. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/tutorial/old/Search.ipynb +0 -0
  188. {pymisp-2.5.1 → pymisp-2.5.17.3}/docs/tutorial/old/Usage-NG.ipynb +0 -0
  189. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/__init__.py +0 -0
  190. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_email_object.py +0 -0
  191. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_file_object.py +0 -0
  192. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_github_user.py +0 -0
  193. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_gitlab_user.py +0 -0
  194. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/add_vehicle_object.py +0 -0
  195. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/addtag2.py +0 -0
  196. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/asciidoc_generator.py +0 -0
  197. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/copyTagsFromAttributesToEvent.py +0 -0
  198. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/copy_list.py +0 -0
  199. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/fetch_warninglist_hits.py +0 -0
  200. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/generate_file_objects.py +0 -0
  201. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/generate_meta_feed.py +0 -0
  202. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/get_network_activity.py +0 -0
  203. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/load_csv.py +0 -0
  204. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/lookup.py +0 -0
  205. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/misp2cef.py +0 -0
  206. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/misp2clamav.py +0 -0
  207. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/openioc_to_misp.py +0 -0
  208. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/search.py +0 -0
  209. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/search_attributes_yara.py +0 -0
  210. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/search_sighting.py +0 -0
  211. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/server_sync_check_conn.py +0 -0
  212. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/sync_sighting.py +0 -0
  213. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/test_sign.py +0 -0
  214. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/trustar_misp.py +0 -0
  215. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/vt_to_misp.py +0 -0
  216. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/warninglists.py +0 -0
  217. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/yara.py +0 -0
  218. {pymisp-2.5.1 → pymisp-2.5.17.3}/examples/yara_dump.py +0 -0
  219. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ADS/definition.json +0 -0
  220. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/abuseipdb/definition.json +0 -0
  221. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ai-chat-prompt/definition.json +0 -0
  222. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ail-leak/definition.json +0 -0
  223. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ais/definition.json +0 -0
  224. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ais-info/definition.json +0 -0
  225. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/android-permission/definition.json +0 -0
  226. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/annotation/definition.json +0 -0
  227. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/anonymisation/definition.json +0 -0
  228. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/apivoid-email-verification/definition.json +0 -0
  229. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/artifact/definition.json +0 -0
  230. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/attack-pattern/definition.json +0 -0
  231. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/attack-step/definition.json +0 -0
  232. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/attacker-infra/definition.json +0 -0
  233. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/authentication-failure-report/definition.json +0 -0
  234. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/authenticode-signerinfo/definition.json +0 -0
  235. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/av-signature/definition.json +0 -0
  236. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/availability-impact/definition.json +0 -0
  237. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/bank-account/definition.json +0 -0
  238. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/bgp-hijack/definition.json +0 -0
  239. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/bgp-ranking/definition.json +0 -0
  240. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/blog/definition.json +0 -0
  241. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/boleto/definition.json +0 -0
  242. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/btc-transaction/definition.json +0 -0
  243. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/btc-wallet/definition.json +0 -0
  244. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/c2-list/definition.json +0 -0
  245. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cap-alert/definition.json +0 -0
  246. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cap-info/definition.json +0 -0
  247. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cap-resource/definition.json +0 -0
  248. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cert-pl-phishing/definition.json +0 -0
  249. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cloth/definition.json +0 -0
  250. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/command/definition.json +0 -0
  251. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/command-line/definition.json +0 -0
  252. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/concordia-mtmf-intrusion-set/definition.json +0 -0
  253. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/confidentiality-impact/definition.json +0 -0
  254. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cookie/definition.json +0 -0
  255. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cortex/definition.json +0 -0
  256. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cortex-taxonomy/definition.json +0 -0
  257. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/course-of-action/definition.json +0 -0
  258. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/covid19-csse-daily-report/definition.json +0 -0
  259. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/covid19-dxy-live-city/definition.json +0 -0
  260. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/covid19-dxy-live-province/definition.json +0 -0
  261. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cowrie/definition.json +0 -0
  262. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cpe-asset/definition.json +0 -0
  263. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/credential/definition.json +0 -0
  264. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/credit-card/definition.json +0 -0
  265. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/crowdsec-ip-context/definition.json +0 -0
  266. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/crowdstrike-report/definition.json +0 -0
  267. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/crypto-material/definition.json +0 -0
  268. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cs-beacon-config/definition.json +0 -0
  269. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ctf-challenge/definition.json +0 -0
  270. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cytomic-orion-file/definition.json +0 -0
  271. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/cytomic-orion-machine/definition.json +0 -0
  272. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/dark-pattern-item/definition.json +0 -0
  273. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ddos/definition.json +0 -0
  274. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ddos-claim/definition.json +0 -0
  275. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ddos-config/definition.json +0 -0
  276. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/device/definition.json +0 -0
  277. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/diameter-attack/definition.json +0 -0
  278. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/diamond/definition.json +0 -0
  279. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/directory/definition.json +0 -0
  280. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/dkim/definition.json +0 -0
  281. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/dns-record/definition.json +0 -0
  282. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/domain-crawled/definition.json +0 -0
  283. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/domain-ip/definition.json +0 -0
  284. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/edr-report/definition.json +0 -0
  285. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/elf/definition.json +0 -0
  286. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/elf-section/definition.json +0 -0
  287. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/email/definition.json +0 -0
  288. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/employee/definition.json +0 -0
  289. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/error-message/definition.json +0 -0
  290. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/event/definition.json +0 -0
  291. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/exploit/definition.json +0 -0
  292. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/exploit-poc/definition.json +0 -0
  293. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/external-impact/definition.json +0 -0
  294. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/facebook-account/definition.json +0 -0
  295. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/facebook-group/definition.json +0 -0
  296. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/facebook-page/definition.json +0 -0
  297. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/facebook-post/definition.json +0 -0
  298. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/facebook-reaction/definition.json +0 -0
  299. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/facial-composite/definition.json +0 -0
  300. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/fail2ban/definition.json +0 -0
  301. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/favicon/definition.json +0 -0
  302. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/forensic-case/definition.json +0 -0
  303. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/forensic-evidence/definition.json +0 -0
  304. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/forged-document/definition.json +0 -0
  305. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Airplane/definition.json +0 -0
  306. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Assessment/definition.json +0 -0
  307. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Asset/definition.json +0 -0
  308. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Associate/definition.json +0 -0
  309. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Audio/definition.json +0 -0
  310. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-BankAccount/definition.json +0 -0
  311. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Call/definition.json +0 -0
  312. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Company/definition.json +0 -0
  313. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Contract/definition.json +0 -0
  314. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-ContractAward/definition.json +0 -0
  315. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-CourtCase/definition.json +0 -0
  316. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-CourtCaseParty/definition.json +0 -0
  317. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Debt/definition.json +0 -0
  318. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Directorship/definition.json +0 -0
  319. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Document/definition.json +0 -0
  320. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Documentation/definition.json +0 -0
  321. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-EconomicActivity/definition.json +0 -0
  322. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Email/definition.json +0 -0
  323. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Event/definition.json +0 -0
  324. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Family/definition.json +0 -0
  325. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Folder/definition.json +0 -0
  326. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-HyperText/definition.json +0 -0
  327. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Image/definition.json +0 -0
  328. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Land/definition.json +0 -0
  329. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-LegalEntity/definition.json +0 -0
  330. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-License/definition.json +0 -0
  331. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Membership/definition.json +0 -0
  332. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Message/definition.json +0 -0
  333. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Organization/definition.json +0 -0
  334. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Ownership/definition.json +0 -0
  335. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Package/definition.json +0 -0
  336. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Page/definition.json +0 -0
  337. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Pages/definition.json +0 -0
  338. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Passport/definition.json +0 -0
  339. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Payment/definition.json +0 -0
  340. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Person/definition.json +0 -0
  341. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-PlainText/definition.json +0 -0
  342. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-PublicBody/definition.json +0 -0
  343. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-RealEstate/definition.json +0 -0
  344. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Representation/definition.json +0 -0
  345. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Row/definition.json +0 -0
  346. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Sanction/definition.json +0 -0
  347. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Succession/definition.json +0 -0
  348. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Table/definition.json +0 -0
  349. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-TaxRoll/definition.json +0 -0
  350. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-UnknownLink/definition.json +0 -0
  351. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-UserAccount/definition.json +0 -0
  352. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Vehicle/definition.json +0 -0
  353. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Vessel/definition.json +0 -0
  354. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Video/definition.json +0 -0
  355. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ftm-Workbook/definition.json +0 -0
  356. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/game-cheat/definition.json +0 -0
  357. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/generalizing-persuasion-framework/definition.json +0 -0
  358. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/geolocation/definition.json +0 -0
  359. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/git-vuln-finder/definition.json +0 -0
  360. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/github-user/definition.json +0 -0
  361. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/gitlab-user/definition.json +0 -0
  362. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/google-safe-browsing/definition.json +0 -0
  363. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/google-threat-intelligence-report/definition.json +0 -0
  364. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/gtp-attack/definition.json +0 -0
  365. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/hashlookup/definition.json +0 -0
  366. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/hhhash/definition.json +0 -0
  367. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/http-request/definition.json +0 -0
  368. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/identity/definition.json +0 -0
  369. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ilr-impact/definition.json +0 -0
  370. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ilr-notification-incident/definition.json +0 -0
  371. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/image/definition.json +0 -0
  372. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/impersonation/definition.json +0 -0
  373. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/imsi-catcher/definition.json +0 -0
  374. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/incident/definition.json +0 -0
  375. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/infrastructure/definition.json +0 -0
  376. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/instant-message/definition.json +0 -0
  377. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/instant-message-group/definition.json +0 -0
  378. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/integrity-impact/definition.json +0 -0
  379. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/intel471-vulnerability-intelligence/definition.json +0 -0
  380. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/intelmq_event/definition.json +0 -0
  381. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/intelmq_report/definition.json +0 -0
  382. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/internal-reference/definition.json +0 -0
  383. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/interpol-notice/definition.json +0 -0
  384. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/intrusion-set/definition.json +0 -0
  385. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/iot-device/definition.json +0 -0
  386. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/iot-firmware/definition.json +0 -0
  387. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ip-api-address/definition.json +0 -0
  388. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ip-port/definition.json +0 -0
  389. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/irc/definition.json +0 -0
  390. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ja3/definition.json +0 -0
  391. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ja3s/definition.json +0 -0
  392. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ja4-plus/definition.json +0 -0
  393. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/jarm/definition.json +0 -0
  394. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/keybase-account/definition.json +0 -0
  395. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/language-content/definition.json +0 -0
  396. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/leaked-document/definition.json +0 -0
  397. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/legal-entity/definition.json +0 -0
  398. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/macho/definition.json +0 -0
  399. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/macho-section/definition.json +0 -0
  400. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/mactime-timeline-analysis/definition.json +0 -0
  401. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/malware/definition.json +0 -0
  402. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/malware-analysis/definition.json +0 -0
  403. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/malware-config/definition.json +0 -0
  404. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/meme-image/definition.json +0 -0
  405. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/microblog/definition.json +0 -0
  406. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/monetary-impact/definition.json +0 -0
  407. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/mutex/definition.json +0 -0
  408. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/narrative/definition.json +0 -0
  409. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/netflow/definition.json +0 -0
  410. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/network-profile/definition.json +0 -0
  411. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/network-socket/definition.json +0 -0
  412. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/network-traffic/definition.json +0 -0
  413. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/news-agency/definition.json +0 -0
  414. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/news-media/definition.json +0 -0
  415. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/open-data-security/definition.json +0 -0
  416. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/organization/definition.json +0 -0
  417. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/paloalto-threat-event/definition.json +0 -0
  418. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/parler-account/definition.json +0 -0
  419. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/parler-comment/definition.json +0 -0
  420. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/parler-post/definition.json +0 -0
  421. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/passive-dns/definition.json +0 -0
  422. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/passive-dns-dnsdbflex/definition.json +0 -0
  423. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/passive-ssh/definition.json +0 -0
  424. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/paste/definition.json +0 -0
  425. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/pcap-metadata/definition.json +0 -0
  426. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/pe/definition.json +0 -0
  427. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/pe-optional-header/definition.json +0 -0
  428. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/pe-section/definition.json +0 -0
  429. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/persnona/definition.json +0 -0
  430. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/personification/definition.json +0 -0
  431. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/pgp-meta/definition.json +0 -0
  432. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/phishing/definition.json +0 -0
  433. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/phishing-kit/definition.json +0 -0
  434. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/phone-number/definition.json +0 -0
  435. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/physical-impact/definition.json +0 -0
  436. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/postal-address/definition.json +0 -0
  437. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/probabilistic-data-structure/definition.json +0 -0
  438. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/process/definition.json +0 -0
  439. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/publication/definition.json +0 -0
  440. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/python-etvx-event-log/definition.json +0 -0
  441. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/r2graphity/definition.json +0 -0
  442. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ransom-negotiation/definition.json +0 -0
  443. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ransomware-group-post/definition.json +0 -0
  444. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/reddit-account/definition.json +0 -0
  445. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/reddit-comment/definition.json +0 -0
  446. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/reddit-post/definition.json +0 -0
  447. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/reddit-subreddit/definition.json +0 -0
  448. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regexp/definition.json +0 -0
  449. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/registry-key/definition.json +0 -0
  450. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/registry-key-value/definition.json +0 -0
  451. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-NTUser/definition.json +0 -0
  452. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-sam-hive-single-user/definition.json +0 -0
  453. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-sam-hive-user-group/definition.json +0 -0
  454. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-software-hive-BHO/definition.json +0 -0
  455. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-software-hive-appInit-DLLS/definition.json +0 -0
  456. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-software-hive-application-paths/definition.json +0 -0
  457. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-software-hive-applications-installed/definition.json +0 -0
  458. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-software-hive-command-shell/definition.json +0 -0
  459. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-software-hive-software-run/definition.json +0 -0
  460. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-software-hive-userprofile-winlogon/definition.json +0 -0
  461. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-software-hive-windows-general-info/definition.json +0 -0
  462. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-system-hive-firewall-configuration/definition.json +0 -0
  463. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-system-hive-general-configuration/definition.json +0 -0
  464. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-system-hive-network-information/definition.json +0 -0
  465. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/regripper-system-hive-services-drivers/definition.json +0 -0
  466. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/report/definition.json +0 -0
  467. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/research-scanner/definition.json +0 -0
  468. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/risk-assessment-report/definition.json +0 -0
  469. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/rogue-dns/definition.json +0 -0
  470. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/rtir/definition.json +0 -0
  471. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/sandbox-report/definition.json +0 -0
  472. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/sb-signature/definition.json +0 -0
  473. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/scan-result/definition.json +0 -0
  474. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/scheduled-event/definition.json +0 -0
  475. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/scheduled-task/definition.json +0 -0
  476. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/scrippsco2-c13-daily/definition.json +0 -0
  477. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/scrippsco2-c13-monthly/definition.json +0 -0
  478. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/scrippsco2-co2-daily/definition.json +0 -0
  479. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/scrippsco2-co2-monthly/definition.json +0 -0
  480. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/scrippsco2-o18-daily/definition.json +0 -0
  481. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/scrippsco2-o18-monthly/definition.json +0 -0
  482. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/script/definition.json +0 -0
  483. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/security-playbook/definition.json +0 -0
  484. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/shadowserver-malware-url-report/definition.json +0 -0
  485. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/shadowserver-scan-http-proxy/definition.json +0 -0
  486. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/shell-commands/definition.json +0 -0
  487. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/shodan-report/definition.json +0 -0
  488. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/short-message-service/definition.json +0 -0
  489. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/shortened-link/definition.json +0 -0
  490. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/sigma/definition.json +0 -0
  491. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/sigmf-archive/definition.json +0 -0
  492. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/sigmf-expanded-recording/definition.json +0 -0
  493. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/sigmf-recording/definition.json +0 -0
  494. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/social-media-group/definition.json +0 -0
  495. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/software/definition.json +0 -0
  496. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/spearphishing-attachment/definition.json +0 -0
  497. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/spearphishing-link/definition.json +0 -0
  498. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/splunk/definition.json +0 -0
  499. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ss7-attack/definition.json +0 -0
  500. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/ssh-authorized-keys/definition.json +0 -0
  501. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/stairwell/definition.json +0 -0
  502. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/stix2-pattern/definition.json +0 -0
  503. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/stock/definition.json +0 -0
  504. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/submarine/definition.json +0 -0
  505. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/suricata/definition.json +0 -0
  506. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/task/definition.json +0 -0
  507. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tattoo/definition.json +0 -0
  508. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/telegram-account/definition.json +0 -0
  509. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/telegram-bot/definition.json +0 -0
  510. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/temporal-event/definition.json +0 -0
  511. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/thaicert-group-cards/definition.json +0 -0
  512. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/threatgrid-report/definition.json +0 -0
  513. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/timecode/definition.json +0 -0
  514. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/timesketch-timeline/definition.json +0 -0
  515. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/timesketch_message/definition.json +0 -0
  516. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/timestamp/definition.json +0 -0
  517. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tor-hiddenservice/definition.json +0 -0
  518. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tor-node/definition.json +0 -0
  519. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/traceability-impact/definition.json +0 -0
  520. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tracking-id/definition.json +0 -0
  521. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/transaction/definition.json +0 -0
  522. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/translation/definition.json +0 -0
  523. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/transport-ticket/definition.json +0 -0
  524. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/trustar_report/definition.json +0 -0
  525. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tsk-chats/definition.json +0 -0
  526. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tsk-web-bookmark/definition.json +0 -0
  527. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tsk-web-cookie/definition.json +0 -0
  528. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tsk-web-downloads/definition.json +0 -0
  529. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tsk-web-history/definition.json +0 -0
  530. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/tsk-web-search-query/definition.json +0 -0
  531. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/twitter-account/definition.json +0 -0
  532. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/twitter-list/definition.json +0 -0
  533. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/twitter-post/definition.json +0 -0
  534. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/typosquatting-finder/definition.json +0 -0
  535. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/typosquatting-finder-result/definition.json +0 -0
  536. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/user-account/definition.json +0 -0
  537. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/user-action/definition.json +0 -0
  538. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/victim/definition.json +0 -0
  539. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/virustotal-graph/definition.json +0 -0
  540. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/virustotal-report/definition.json +0 -0
  541. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/virustotal-submission/definition.json +0 -0
  542. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/weakness/definition.json +0 -0
  543. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/whois/definition.json +0 -0
  544. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/windows-service/definition.json +0 -0
  545. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/x-header/definition.json +0 -0
  546. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/x509/definition.json +0 -0
  547. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/yabin/definition.json +0 -0
  548. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/yara/definition.json +0 -0
  549. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/youtube-channel/definition.json +0 -0
  550. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/youtube-comment/definition.json +0 -0
  551. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/youtube-playlist/definition.json +0 -0
  552. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/objects/youtube-video/definition.json +0 -0
  553. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/misp-objects/schema_relationships.json +0 -0
  554. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/schema-lax.json +0 -0
  555. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/data/schema.json +0 -0
  556. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/exceptions.py +0 -0
  557. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/py.typed +0 -0
  558. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/__init__.py +0 -0
  559. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/_psl_faup.py +0 -0
  560. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/abstractgenerator.py +0 -0
  561. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/asnobject.py +0 -0
  562. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/csvloader.py +0 -0
  563. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/domainipobject.py +0 -0
  564. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/ext_lookups.py +0 -0
  565. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/fail2banobject.py +0 -0
  566. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/feed.py +0 -0
  567. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/genericgenerator.py +0 -0
  568. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/geolocationobject.py +0 -0
  569. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/git_vuln_finder_object.py +0 -0
  570. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/load_warninglists.py +0 -0
  571. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/microblogobject.py +0 -0
  572. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/neo4j.py +0 -0
  573. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/openioc.py +0 -0
  574. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/sbsignatureobject.py +0 -0
  575. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/sshauthkeyobject.py +0 -0
  576. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/update_objects.py +0 -0
  577. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/vehicleobject.py +0 -0
  578. {pymisp-2.5.1 → pymisp-2.5.17.3}/pymisp/tools/vtreportobject.py +0 -0
  579. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/57c4445b-c548-4654-af0b-4be3950d210f.json +0 -0
  580. {pymisp-2.5.1/examples/profiles → pymisp-2.5.17.3/tests}/__init__.py +0 -0
  581. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/csv_testfiles/invalid_fieldnames.csv +0 -0
  582. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/csv_testfiles/valid_fieldnames.csv +0 -0
  583. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/mail_1.eml.zip +0 -0
  584. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/mail_1_bom.eml +0 -0
  585. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/mail_1_headers_only.eml +0 -0
  586. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/mail_2.eml +0 -0
  587. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/mail_3.eml +0 -0
  588. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/mail_3.msg +0 -0
  589. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/mail_4.msg +0 -0
  590. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/mail_5.msg +0 -0
  591. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/mail_multiple_to.eml +0 -0
  592. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/email_testfiles/source +0 -0
  593. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/git-vuln-finder-quagga.json +0 -0
  594. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/misp_event.json +0 -0
  595. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/attribute.json +0 -0
  596. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/attribute_del.json +0 -0
  597. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/def_param.json +0 -0
  598. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/event.json +0 -0
  599. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/event_obj_tag.json +0 -0
  600. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/event_tags.json +0 -0
  601. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/existing_event.json +0 -0
  602. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/existing_event_edited.json +0 -0
  603. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/galaxy.json +0 -0
  604. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/malware.json +0 -0
  605. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/malware_exist.json +0 -0
  606. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/misp_custom_obj.json +0 -0
  607. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/overwrite_file/definition.json +0 -0
  608. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/proposals.json +0 -0
  609. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/shadow.json +0 -0
  610. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/sighting.json +0 -0
  611. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/simple.json +0 -0
  612. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/mispevent_testfiles/test_object_template/definition.json +0 -0
  613. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/new_misp_event.json +0 -0
  614. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/HTML_event.json +0 -0
  615. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/galaxy_1.json +0 -0
  616. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/image_event.json +0 -0
  617. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/japanese_test.json +0 -0
  618. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/japanese_test_heavy.json +0 -0
  619. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/long_event.json +0 -0
  620. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/mainly_objects_1.json +0 -0
  621. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/mainly_objects_2.json +0 -0
  622. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/sighting_1.json +0 -0
  623. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/sighting_2.json +0 -0
  624. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/to_delete1.json +0 -0
  625. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/to_delete2.json +0 -0
  626. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/to_delete3.json +0 -0
  627. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testfiles/very_long_event.json +0 -0
  628. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testoutputs/to_delete1.json.pdf +0 -0
  629. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testoutputs/to_delete2.json.pdf +0 -0
  630. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/reportlab_testoutputs/to_delete3.json.pdf +0 -0
  631. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/search_index_result.json +0 -0
  632. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/sharing_groups.json +0 -0
  633. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/stix1.xml-utf8 +0 -0
  634. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/stix2.json +0 -0
  635. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/test_fileobject.py +0 -0
  636. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/test_reportlab.py +0 -0
  637. {pymisp-2.5.1 → pymisp-2.5.17.3}/tests/testlive_sync.py +0 -0
@@ -2,6 +2,420 @@ Changelog
2
2
  =========
3
3
 
4
4
 
5
+ v2.5.17.3 (2025-11-25)
6
+ ----------------------
7
+
8
+ New
9
+ ~~~
10
+ - Improve doc for CSV loader. [Raphaël Vinot]
11
+
12
+ Changes
13
+ ~~~~~~~
14
+ - Bump changelog. [Raphaël Vinot]
15
+ - Bump version. [Raphaël Vinot]
16
+ - Use pure-magic-rs. [Raphaël Vinot]
17
+ - [describeTypes] updated to the latest version. [Alexandre Dulaunoy]
18
+ - Bump deps. [Raphaël Vinot]
19
+ - Bump deps, really. [Raphaël Vinot]
20
+ - Bump deps. [Raphaël Vinot]
21
+ - Quick cleanup. [Raphaël Vinot]
22
+ - Optionally use faup-rs for URL parsing. [Raphaël Vinot]
23
+
24
+ Fix
25
+ ~~~
26
+ - [tools:emailobject] Gracefully handle case where getStringStream
27
+ cannot find the requested stream. [Sami Mokaddem]
28
+ - [tools-emailobject] Circuvent crashes when dealing with ms-tnef
29
+ messages. [Sami Mokaddem]
30
+ - Properly use pyfaup-rs. [Raphaël Vinot]
31
+
32
+ Other
33
+ ~~~~~
34
+ - Build(deps): bump actions/checkout from 5 to 6. [dependabot[bot]]
35
+
36
+ Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
37
+ - [Release notes](https://github.com/actions/checkout/releases)
38
+ - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
39
+ - [Commits](https://github.com/actions/checkout/compare/v5...v6)
40
+
41
+ ---
42
+ updated-dependencies:
43
+ - dependency-name: actions/checkout
44
+ dependency-version: '6'
45
+ dependency-type: direct:production
46
+ update-type: version-update:semver-major
47
+ ...
48
+ - Build(deps): bump github/codeql-action from 3 to 4. [dependabot[bot]]
49
+
50
+ Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3 to 4.
51
+ - [Release notes](https://github.com/github/codeql-action/releases)
52
+ - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
53
+ - [Commits](https://github.com/github/codeql-action/compare/v3...v4)
54
+
55
+ ---
56
+ updated-dependencies:
57
+ - dependency-name: github/codeql-action
58
+ dependency-version: '4'
59
+ dependency-type: direct:production
60
+ update-type: version-update:semver-major
61
+ ...
62
+
63
+
64
+ v2.5.17.2 (2025-09-24)
65
+ ----------------------
66
+
67
+ Changes
68
+ ~~~~~~~
69
+ - Bump deps, objects. [Raphaël Vinot]
70
+
71
+
72
+ v2.5.17.1 (2025-09-15)
73
+ ----------------------
74
+
75
+ Changes
76
+ ~~~~~~~
77
+ - Bump version. [Raphaël Vinot]
78
+ - Bump lief, fix code to support new release. [Raphaël Vinot]
79
+
80
+ Fix #1352
81
+ - Bump deps. [Raphaël Vinot]
82
+
83
+ Fix
84
+ ~~~
85
+ - Properly support lief 0.17. [Raphaël Vinot]
86
+
87
+ Other
88
+ ~~~~~
89
+ - Build(deps): bump actions/setup-python from 5 to 6. [dependabot[bot]]
90
+
91
+ Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6.
92
+ - [Release notes](https://github.com/actions/setup-python/releases)
93
+ - [Commits](https://github.com/actions/setup-python/compare/v5...v6)
94
+
95
+ ---
96
+ updated-dependencies:
97
+ - dependency-name: actions/setup-python
98
+ dependency-version: '6'
99
+ dependency-type: direct:production
100
+ update-type: version-update:semver-major
101
+ ...
102
+ - Build(deps): bump actions/checkout from 4 to 5. [dependabot[bot]]
103
+
104
+ Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
105
+ - [Release notes](https://github.com/actions/checkout/releases)
106
+ - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
107
+ - [Commits](https://github.com/actions/checkout/compare/v4...v5)
108
+
109
+ ---
110
+ updated-dependencies:
111
+ - dependency-name: actions/checkout
112
+ dependency-version: '5'
113
+ dependency-type: direct:production
114
+ update-type: version-update:semver-major
115
+ ...
116
+
117
+
118
+ v2.5.17 (2025-08-04)
119
+ --------------------
120
+
121
+ Changes
122
+ ~~~~~~~
123
+ - Bump deps, version. [Raphaël Vinot]
124
+ - Bump deps. [Raphaël Vinot]
125
+ - Expose missing exception. [Raphaël Vinot]
126
+ - Add missing optional value in MISPAttribute. [Raphaël Vinot]
127
+ - Bump deps. [Raphaël Vinot]
128
+ - Bump deps. [Raphaël Vinot]
129
+
130
+ Fix
131
+ ~~~
132
+ - Exception when a first/last seen is invalid. [Raphaël Vinot]
133
+
134
+ Fix #1330
135
+
136
+ Other
137
+ ~~~~~
138
+ - Revert "chg: Add missing optional value in MISPAttribute" [Raphaël
139
+ Vinot]
140
+
141
+ This reverts commit 0e241b481c74246765f877d665e0064bb5cac99f.
142
+
143
+
144
+ v2.5.12 (2025-05-13)
145
+ --------------------
146
+
147
+ Changes
148
+ ~~~~~~~
149
+ - Bump version. [Raphaël Vinot]
150
+ - Bump deps. [Raphaël Vinot]
151
+ - Bump changelog. [Raphaël Vinot]
152
+
153
+ Fix
154
+ ~~~
155
+ - Incorrect calls in to_feed. [Raphaël Vinot]
156
+
157
+ Other
158
+ ~~~~~
159
+ - Chg; Bump changelog. [Raphaël Vinot]
160
+ - Replace deprecated ExpandedPyMISP with PyMISP. [Jure Sah]
161
+
162
+
163
+ v2.5.10 (2025-04-04)
164
+ --------------------
165
+
166
+ Changes
167
+ ~~~~~~~
168
+ - Bump deps, templates. [Raphaël Vinot]
169
+
170
+ Fix
171
+ ~~~
172
+ - Missing attribute in object should not be a warning (way too noisy)
173
+ [Raphaël Vinot]
174
+
175
+
176
+ v2.5.9 (2025-03-26)
177
+ -------------------
178
+
179
+ Changes
180
+ ~~~~~~~
181
+ - Bump version, changelog. [Raphaël Vinot]
182
+ - Make mypy happy. [Raphaël Vinot]
183
+ - Bump deps. [Raphaël Vinot]
184
+ - Bump deps. [Raphaël Vinot]
185
+
186
+ Fix
187
+ ~~~
188
+ - [emailobject] Improve parsing of the Received headers. [Sami Tainio]
189
+
190
+ - Rewrite of the section that deals with the logic handling the Received headers
191
+ - Previous version was not picking picking up e.g. Reverse DNS hostnames at all and some of the IPs were not ever handled
192
+ - [emailobject] Improve parsing of the Received headers. [Sami Tainio]
193
+
194
+ - Rewrite of the section that deals with the logic handling the Received headers
195
+ - Previous version was not picking picking up e.g. Reverse DNS hostnames at all and some of the IPs were not ever handled
196
+
197
+ Other
198
+ ~~~~~
199
+ - [chg] Satisfy tests. [Sami Tainio]
200
+ - Improve the logging message. [Peter Leitmann]
201
+ - Add a check if add_attributes() method truly has values to add. [Peter
202
+ Leitmann]
203
+ - [chg] Satisfy tests. [Sami Tainio]
204
+
205
+
206
+ v2.5.8.1 (2025-03-18)
207
+ ---------------------
208
+
209
+ Changes
210
+ ~~~~~~~
211
+ - Bump changelog. [Raphaël Vinot]
212
+ - Bump changelog. [Raphaël Vinot]
213
+ - Bump objects, version. [Raphaël Vinot]
214
+
215
+ Fix
216
+ ~~~
217
+ - Typo in objects. [Raphaël Vinot]
218
+
219
+
220
+ v2.5.8 (2025-03-18)
221
+ -------------------
222
+
223
+ Changes
224
+ ~~~~~~~
225
+ - Bump changelog. [Raphaël Vinot]
226
+ - Bump deps, version. [Raphaël Vinot]
227
+ - Bump deps. [Raphaël Vinot]
228
+
229
+ Fix
230
+ ~~~
231
+ - Remove top level files from wheel. [Raphaël Vinot]
232
+
233
+ As per doc
234
+ (https://python-poetry.org/docs/pyproject#exclude-and-include), we
235
+ cannot have them in the wheel.
236
+
237
+ Fix #1319
238
+
239
+
240
+ v2.5.7.1 (2025-02-22)
241
+ ---------------------
242
+
243
+ Changes
244
+ ~~~~~~~
245
+ - Bump changelog. [Raphaël Vinot]
246
+ - Remove tests from wheel. [Raphaël Vinot]
247
+ - Make mypy happy. [Raphaël Vinot]
248
+ - Bump objects. [Raphaël Vinot]
249
+ - Move email MSG to PW protected archive to fool bumb AVs. [Raphaël
250
+ Vinot]
251
+
252
+
253
+ v2.5.7 (2025-02-20)
254
+ -------------------
255
+
256
+ New
257
+ ~~~
258
+ - Enrich event/attribute endpoints. [Raphaël Vinot]
259
+
260
+ Related #1318
261
+
262
+ Changes
263
+ ~~~~~~~
264
+ - Bump changelog. [Raphaël Vinot]
265
+ - Bump objects. [Raphaël Vinot]
266
+ - Bump changelog. [Raphaël Vinot]
267
+ - Bump deps, version. [Raphaël Vinot]
268
+ - Update readme. [Raphaël Vinot]
269
+ - Bump deps, use poetry 2.0. [Raphaël Vinot]
270
+
271
+ Fix
272
+ ~~~
273
+ - Allow MD in docs. [Raphaël Vinot]
274
+ - Remove ref to recommonmark. [Raphaël Vinot]
275
+ - [AnalystData] Added missing properties for Notes and Opinions.
276
+ [Christian Studer]
277
+
278
+ - This is now needed because MISPNote and MISPOpinion
279
+ are no longer part of AnalystDataBehaviorMixin and
280
+ cannot then get them from there
281
+ - [api] Notes, Opinions and Relationships are no longer
282
+ AnalystDataBehaviorMixin. [Christian Studer]
283
+
284
+
285
+ v2.5.4 (2024-12-20)
286
+ -------------------
287
+
288
+ Changes
289
+ ~~~~~~~
290
+ - Bump changelog. [Raphaël Vinot]
291
+ - Update objects templates. [Raphaël Vinot]
292
+ - Make python 3.9 happy. [Raphaël Vinot]
293
+ - Bump deps. [Raphaël Vinot]
294
+ - [AnalystData] Flattening analyst data based on the recent changes on
295
+ MISP standard format. [Christian Studer]
296
+
297
+ - Adding a note or an opinion will always add the
298
+ new analyst data object to the list of notes or
299
+ opinions at the parent data layer level
300
+ - `from_dict` on a JSON blob is also able to parse
301
+ properly analyst data and generate flat lists
302
+ regardless of whether the given data described
303
+ in the new flat or previously nested format
304
+ - Bump deps. [Raphaël Vinot]
305
+ - Bump deps. [Raphaël Vinot]
306
+
307
+ Fix
308
+ ~~~
309
+ - [tests] Removed typing. [Christian Studer]
310
+ - [MISPAnalystData] Added missing typing. [Christian Studer]
311
+ - [MISPAnalystData] Reverted the declaration of Analyst data objects
312
+ lists back to the mixin parent class. [Christian Studer]
313
+ - [MISPAnalystData] Better handling of the different use cases.
314
+ [Christian Studer]
315
+
316
+ - Additional checks for parent to support both
317
+ the standalone and attached analyst data objects
318
+ - Standalone Analyst data objects with nested
319
+ notes or opinions are defined with the nesting
320
+ as they have no parent. When they are added to
321
+ a parent data layer, the nested objects are then
322
+ flattened
323
+ - [AnalystData] Typo... [Christian Studer]
324
+ - [AnalystData] Avoiding issues with analyst data objects. [Christian
325
+ Studer]
326
+
327
+ Other
328
+ ~~~~~
329
+ - Chg; Bump version. [Raphaël Vinot]
330
+ - Revert "fix: [tests] Removed typing" [Christian Studer]
331
+
332
+ This reverts commit a7cf9dc3f03ffda5ee6c1b614792455fe43d8704.
333
+ - Add: [tests] Testing Analyst Data in different scenarios. [Christian
334
+ Studer]
335
+
336
+ - Testing different ways to attach analyst data
337
+ - Testing that no matter what object type the
338
+ analyst data is attached to, the `object_type`
339
+ & `object_uuid` are correct, and the parent
340
+ container does contain every analyst data object
341
+ in flat lists with no nesting
342
+
343
+
344
+ v2.5.3 (2024-12-16)
345
+ -------------------
346
+
347
+ New
348
+ ~~~
349
+ - Create a sign_blob method to sign events. [Raphaël Vinot]
350
+ - [support for signing] added. [iglocska]
351
+
352
+ - added new class CryptographicKeys
353
+ - added functions to to_feed calls to include crypto keys
354
+ - added protected boolean field to misp event
355
+
356
+ - updated feed generator to support signing
357
+ - if the new setting is set to True signing will be attempted for protected events
358
+ - protected events are now passed to the /cryptographic_keys/serverSign endpoint of misp for signing
359
+ - signatures are included as a .asc file in the output directory
360
+
361
+ - TODO:
362
+ - currently the JSON dumping is moved from a streamed dumping to an in memory dump before saving to disk
363
+ - add a check for protected events and revert to streamed dumping for non protected events
364
+ - alternatively use the already saved files to request signing from MISP
365
+
366
+ Changes
367
+ ~~~~~~~
368
+ - Bump changelog. [Raphaël Vinot]
369
+ - Bump release. [Raphaël Vinot]
370
+ - Bump deps. [Raphaël Vinot]
371
+
372
+
373
+ v2.4.199 (2024-11-26)
374
+ ---------------------
375
+
376
+ New
377
+ ~~~
378
+ - Publish to PyPi on release. [Raphaël Vinot]
379
+
380
+ Changes
381
+ ~~~~~~~
382
+ - Bump changelog. [Raphaël Vinot]
383
+ - Skip PyMISP version check. [Raphaël Vinot]
384
+ - Bump deps, version. [Raphaël Vinot]
385
+ - Bump deps, version. [Raphaël Vinot]
386
+ - Bump version, deps, templates. [Raphaël Vinot]
387
+ - Bump version, test for GH action release. [Raphaël Vinot]
388
+ - Drop python 3.8, add python 3.13. [Raphaël Vinot]
389
+ - Bump templates. [Raphaël Vinot]
390
+ - Bump deps. [Raphaël Vinot]
391
+ - Remove fonts from submodules, on-demand download if needed. [Raphaël
392
+ Vinot]
393
+
394
+ Fix
395
+ ~~~
396
+ - Avoid exception on dev releases. [Raphaël Vinot]
397
+ - Template versions in tests. [Raphaël Vinot]
398
+ - [AnalystData] A quick and simple typing fix. [Christian Studer]
399
+
400
+ Other
401
+ ~~~~~
402
+ - Build(deps): bump codecov/codecov-action from 4 to 5.
403
+ [dependabot[bot]]
404
+
405
+ Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5.
406
+ - [Release notes](https://github.com/codecov/codecov-action/releases)
407
+ - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
408
+ - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5)
409
+
410
+ ---
411
+ updated-dependencies:
412
+ - dependency-name: codecov/codecov-action
413
+ dependency-type: direct:production
414
+ update-type: version-update:semver-major
415
+ ...
416
+ - Update pytest.yml for python 3.13. [Raphaël Vinot]
417
+
418
+
5
419
  v2.5.1 (2024-10-17)
6
420
  -------------------
7
421
 
@@ -11,6 +425,7 @@ New
11
425
 
12
426
  Changes
13
427
  ~~~~~~~
428
+ - Re-bump changelog. [Raphaël Vinot]
14
429
  - Bump changelog. [Raphaël Vinot]
15
430
  - Bump objects. [Raphaël Vinot]
16
431
  - Bump version. [Raphaël Vinot]
@@ -353,21 +768,18 @@ Changes
353
768
  ~~~~~~~
354
769
  - Bump changelog. [Raphaël Vinot]
355
770
  - Bump deps, version. [Raphaël Vinot]
356
-
357
-
358
- v2.4.184.3 (2024-02-12)
359
- -----------------------
360
-
361
- Changes
362
- ~~~~~~~
363
771
  - Bump changelog. [Raphaël Vinot]
364
772
  - Bump version. [Raphaël Vinot]
365
773
  - Bump deps. [Raphaël Vinot]
774
+ - Add changelog. [Raphaël Vinot]
775
+ - Bump changelog. [Raphaël Vinot]
776
+ - Re-add ExpandedPyMISP, with a warning. [Raphaël Vinot]
366
777
 
367
778
  Fix
368
779
  ~~~
369
780
  - Properly get body from message, without headers. [Raphaël Vinot]
370
781
  - Remove from __all__ entries that shouldn't be there. [Raphaël Vinot]
782
+ - Do not throw a warning every time one import pymisp... [Raphaël Vinot]
371
783
 
372
784
  Other
373
785
  ~~~~~
@@ -384,23 +796,6 @@ Other
384
796
  - dependency-name: jupyter-lsp
385
797
  dependency-type: indirect
386
798
  ...
387
-
388
-
389
- v2.4.184.2 (2024-02-06)
390
- -----------------------
391
-
392
- Changes
393
- ~~~~~~~
394
- - Add changelog. [Raphaël Vinot]
395
- - Bump changelog. [Raphaël Vinot]
396
- - Re-add ExpandedPyMISP, with a warning. [Raphaël Vinot]
397
-
398
- Fix
399
- ~~~
400
- - Do not throw a warning every time one import pymisp... [Raphaël Vinot]
401
-
402
- Other
403
- ~~~~~
404
799
  - Build(deps): bump codecov/codecov-action from 3 to 4.
405
800
  [dependabot[bot]]
406
801
 
@@ -417,15 +812,6 @@ Other
417
812
  ...
418
813
 
419
814
 
420
- v2.4.184.1 (2024-02-06)
421
- -----------------------
422
-
423
- Changes
424
- ~~~~~~~
425
- - Bump changelog. [Raphaël Vinot]
426
- - Re-add ExpandedPyMISP, with a warning. [Raphaël Vinot]
427
-
428
-
429
815
  v2.4.184 (2024-02-02)
430
816
  ---------------------
431
817
 
@@ -797,11 +1183,19 @@ Changes
797
1183
  - Bump changelog. [Raphaël Vinot]
798
1184
  - Bump version. [Raphaël Vinot]
799
1185
  - Remove old setup files, bump deps. [Raphaël Vinot]
1186
+ - Bump changelog. [Raphaël Vinot]
1187
+ - Bump version. [Raphaël Vinot]
1188
+ - Bump deps. [Raphaël Vinot]
1189
+ - Bump deps. [Raphaël Vinot]
1190
+ - Disable fail fast in GHA. [Raphaël Vinot]
1191
+ - Bump version. [Raphaël Vinot]
1192
+ - Bump deps. [Raphaël Vinot]
800
1193
 
801
1194
  Fix
802
1195
  ~~~
803
1196
  - Extra print breaking the CI on MISP side. [Raphaël Vinot]
804
1197
  - Properly use lief on a file. [Raphaël Vinot]
1198
+ - Update lief code to v0.13. [Raphaël Vinot]
805
1199
 
806
1200
  Other
807
1201
  ~~~~~
@@ -820,31 +1214,6 @@ Other
820
1214
  See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details.
821
1215
 
822
1216
 
823
- v2.4.170.2 (2023-05-04)
824
- -----------------------
825
-
826
- Changes
827
- ~~~~~~~
828
- - Bump changelog. [Raphaël Vinot]
829
- - Bump version. [Raphaël Vinot]
830
- - Bump deps. [Raphaël Vinot]
831
- - Bump deps. [Raphaël Vinot]
832
-
833
-
834
- v2.4.170.1 (2023-04-19)
835
- -----------------------
836
-
837
- Changes
838
- ~~~~~~~
839
- - Disable fail fast in GHA. [Raphaël Vinot]
840
- - Bump version. [Raphaël Vinot]
841
- - Bump deps. [Raphaël Vinot]
842
-
843
- Fix
844
- ~~~
845
- - Update lief code to v0.13. [Raphaël Vinot]
846
-
847
-
848
1217
  v2.4.170 (2023-04-12)
849
1218
  ---------------------
850
1219
 
@@ -853,85 +1222,40 @@ Changes
853
1222
  - Bump changelog. [Raphaël Vinot]
854
1223
  - Bump version. [Raphaël Vinot]
855
1224
  - Bump deps. [Raphaël Vinot]
856
-
857
- Other
858
- ~~~~~
859
- - Add: support breakOnDuplicate option for attributes:add() [Luciano
860
- Righetti]
861
- - Update reportlab_generator.py. [CarlosLoureiro]
862
-
863
-
864
- v2.4.169.3 (2023-03-27)
865
- -----------------------
866
-
867
- Changes
868
- ~~~~~~~
869
1225
  - Bump changelog. [Raphaël Vinot]
870
1226
  - Bump deps, version. [Raphaël Vinot]
871
1227
  - Bump deps. [Raphaël Vinot]
872
-
873
- Fix
874
- ~~~
875
- - Invalid check if taxo is enabled. [Raphaël Vinot]
876
-
877
-
878
- v2.4.169.2 (2023-03-17)
879
- -----------------------
880
-
881
- Changes
882
- ~~~~~~~
883
1228
  - Bump changelog. [Raphaël Vinot]
884
1229
  - Bump version. [Raphaël Vinot]
885
1230
  - Include event reports by default in feed. [Raphaël Vinot]
886
1231
  - Bump deps. [Raphaël Vinot]
1232
+ - Bump changelog. [Raphaël Vinot]
1233
+ - Bump version. [Raphaël Vinot]
1234
+ - Add greynoise-ip object. [Raphaël Vinot]
1235
+
1236
+ Fix #951
887
1237
 
888
1238
  Fix
889
1239
  ~~~
1240
+ - Invalid check if taxo is enabled. [Raphaël Vinot]
890
1241
  - Use proper parameter to trigger the request in search_galaxy_clusters.
891
1242
  [Raphaël Vinot]
892
1243
  - Use POST in search galaxy cluster. [Raphaël Vinot]
893
1244
 
894
1245
  Other
895
1246
  ~~~~~
1247
+ - Add: support breakOnDuplicate option for attributes:add() [Luciano
1248
+ Righetti]
1249
+ - Update reportlab_generator.py. [CarlosLoureiro]
896
1250
  - Rename include_event_reports kwarg to with_event_reports, in-line with
897
1251
  other kwarg naming. [UFOSmuggler]
898
1252
  - Add kwarg to allow the inclusion of event reports into to_feed(),
899
1253
  honour with_distribution and valid_distributions kwargs. [UFOSmuggler]
900
1254
 
901
1255
 
902
- v2.4.169.1 (2023-03-14)
903
- -----------------------
904
-
905
- Changes
906
- ~~~~~~~
907
- - Bump changelog. [Raphaël Vinot]
908
- - Bump version. [Raphaël Vinot]
909
- - Add greynoise-ip object. [Raphaël Vinot]
910
-
911
- Fix #951
912
-
913
-
914
1256
  v2.4.169 (2023-03-10)
915
1257
  ---------------------
916
1258
 
917
- Changes
918
- ~~~~~~~
919
- - Bump changelog. [Raphaël Vinot]
920
- - Bump version. [Raphaël Vinot]
921
- - Bump templates. [Raphaël Vinot]
922
- - Bump deps. [Raphaël Vinot]
923
-
924
- Fix
925
- ~~~
926
- - Add local key in MISPTag. [Raphaël Vinot]
927
-
928
- Related #947
929
- - Use pytest for the tests. [Raphaël Vinot]
930
-
931
-
932
- v2.4.168.1 (2023-02-28)
933
- -----------------------
934
-
935
1259
  New
936
1260
  ~~~
937
1261
  - [doc] added the Jupyter notebook used in a.7-rest-api-extensive-
@@ -939,6 +1263,10 @@ New
939
1263
 
940
1264
  Changes
941
1265
  ~~~~~~~
1266
+ - Bump changelog. [Raphaël Vinot]
1267
+ - Bump version. [Raphaël Vinot]
1268
+ - Bump templates. [Raphaël Vinot]
1269
+ - Bump deps. [Raphaël Vinot]
942
1270
  - Bump changelog, version. [Raphaël Vinot]
943
1271
  - Bump templates, again. [Raphaël Vinot]
944
1272
  - Bump templates. [Raphaël Vinot]
@@ -952,6 +1280,10 @@ Changes
952
1280
 
953
1281
  Fix
954
1282
  ~~~
1283
+ - Add local key in MISPTag. [Raphaël Vinot]
1284
+
1285
+ Related #947
1286
+ - Use pytest for the tests. [Raphaël Vinot]
955
1287
  - Properly handle missing parameter in CSV importer. [Raphaël Vinot]
956
1288
 
957
1289
  Fix #931
@@ -964,39 +1296,18 @@ Fix
964
1296
  v2.4.168 (2023-01-23)
965
1297
  ---------------------
966
1298
 
1299
+ New
1300
+ ~~~
1301
+ - Add relationship_type in Tag entries for feeds. [Raphaël Vinot]
1302
+
967
1303
  Changes
968
1304
  ~~~~~~~
969
1305
  - Bump changelog. [Raphaël Vinot]
970
1306
  - Bump version. [Raphaël Vinot]
971
1307
  - Bump deps. [Raphaël Vinot]
972
1308
  - Bump deps. [Raphaël Vinot]
973
-
974
-
975
- v2.4.167.2 (2023-01-17)
976
- -----------------------
977
-
978
- Changes
979
- ~~~~~~~
980
1309
  - Bump changelog. [Raphaël Vinot]
981
1310
  - Bump deps, version. [Raphaël Vinot]
982
-
983
- Fix
984
- ~~~
985
- - Set relationship_type default in MISPTag to empty string. [Raphaël
986
- Vinot]
987
- - Another typo in readme. [Raphaël Vinot]
988
- - Typo in readme. [Raphaël Vinot]
989
-
990
-
991
- v2.4.167.1 (2023-01-16)
992
- -----------------------
993
-
994
- New
995
- ~~~
996
- - Add relationship_type in Tag entries for feeds. [Raphaël Vinot]
997
-
998
- Changes
999
- ~~~~~~~
1000
1311
  - Bump changelog. [Raphaël Vinot]
1001
1312
  - Bump version. [Raphaël Vinot]
1002
1313
  - Bump deps. [Raphaël Vinot]
@@ -1011,6 +1322,10 @@ Changes
1011
1322
 
1012
1323
  Fix
1013
1324
  ~~~
1325
+ - Set relationship_type default in MISPTag to empty string. [Raphaël
1326
+ Vinot]
1327
+ - Another typo in readme. [Raphaël Vinot]
1328
+ - Typo in readme. [Raphaël Vinot]
1014
1329
  - Update whl files. [Raphaël Vinot]
1015
1330
  - Nvm, readthedocs requires python 3.8 at most. [Raphaël Vinot]
1016
1331
 
@@ -1067,23 +1382,13 @@ Changes
1067
1382
  - Bump deps. [Raphaël Vinot]
1068
1383
  - Bump deps. [Raphaël Vinot]
1069
1384
  - Bump deps. [Raphaël Vinot]
1070
-
1071
- Fix
1072
- ~~~
1073
- - [describetypes] updated with the latest output from MISP. [iglocska]
1074
- - [types] added missing type value. [iglocska]
1075
-
1076
-
1077
- v2.4.165.1 (2022-11-10)
1078
- -----------------------
1079
-
1080
- Changes
1081
- ~~~~~~~
1082
1385
  - Bump changelog. [Raphaël Vinot]
1083
1386
  - Bump deps. [Raphaël Vinot]
1084
1387
 
1085
1388
  Fix
1086
1389
  ~~~
1390
+ - [describetypes] updated with the latest output from MISP. [iglocska]
1391
+ - [types] added missing type value. [iglocska]
1087
1392
  - Properly bump version. [Raphaël Vinot]
1088
1393
 
1089
1394
  Other
@@ -1099,21 +1404,6 @@ Other
1099
1404
  v2.4.165 (2022-11-09)
1100
1405
  ---------------------
1101
1406
 
1102
- Changes
1103
- ~~~~~~~
1104
- - Bump changelog. [Raphaël Vinot]
1105
- - Bump mypy. [Raphaël Vinot]
1106
- - Add links to doc. [Raphaël Vinot]
1107
- - Bump deps. [Raphaël Vinot]
1108
-
1109
- Fix
1110
- ~~~
1111
- - Issue with EMailObject. [Raphaël Vinot]
1112
-
1113
-
1114
- v2.4.162.2 (2022-11-02)
1115
- -----------------------
1116
-
1117
1407
  New
1118
1408
  ~~~
1119
1409
  - Add in ability to set a taxonomies required status. [Tom King]
@@ -1121,6 +1411,10 @@ New
1121
1411
  Changes
1122
1412
  ~~~~~~~
1123
1413
  - Bump changelog. [Raphaël Vinot]
1414
+ - Bump mypy. [Raphaël Vinot]
1415
+ - Add links to doc. [Raphaël Vinot]
1416
+ - Bump deps. [Raphaël Vinot]
1417
+ - Bump changelog. [Raphaël Vinot]
1124
1418
  - Bump lief (CVEs), version. [Raphaël Vinot]
1125
1419
  - Bump deps. [Raphaël Vinot]
1126
1420
  - [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
@@ -1128,6 +1422,16 @@ Changes
1128
1422
  [Alexandre Dulaunoy]
1129
1423
  - Bump deps. [Raphaël Vinot]
1130
1424
  - Add dependabot. [Raphaël Vinot]
1425
+ - Bump changelog. [Raphaël Vinot]
1426
+ - Bump deps and version. [Raphaël Vinot]
1427
+
1428
+ Fix LIEF vuln.
1429
+ - Bump deps, objects. [Raphaël Vinot]
1430
+
1431
+ Fix
1432
+ ~~~
1433
+ - Issue with EMailObject. [Raphaël Vinot]
1434
+ - Change DNS warning list test. [Raphaël Vinot]
1131
1435
 
1132
1436
  Other
1133
1437
  ~~~~~
@@ -1177,22 +1481,6 @@ Other
1177
1481
  - Create codeql-analysis.yml. [Raphaël Vinot]
1178
1482
 
1179
1483
 
1180
- v2.4.162.1 (2022-10-02)
1181
- -----------------------
1182
-
1183
- Changes
1184
- ~~~~~~~
1185
- - Bump changelog. [Raphaël Vinot]
1186
- - Bump deps and version. [Raphaël Vinot]
1187
-
1188
- Fix LIEF vuln.
1189
- - Bump deps, objects. [Raphaël Vinot]
1190
-
1191
- Fix
1192
- ~~~
1193
- - Change DNS warning list test. [Raphaël Vinot]
1194
-
1195
-
1196
1484
  v2.4.162 (2022-09-09)
1197
1485
  ---------------------
1198
1486
 
@@ -1210,22 +1498,12 @@ Changes
1210
1498
  - Add in sort/desc for sorting results and limit/page for pagination.
1211
1499
  [Tom King]
1212
1500
  - Improve documentation for add_attribute. [Raphaël Vinot]
1213
-
1214
- Fix
1215
- ~~~
1216
- - Missing place to update version. [Raphaël Vinot]
1217
-
1218
-
1219
- v2.4.160.1 (2022-08-09)
1220
- -----------------------
1221
-
1222
- Changes
1223
- ~~~~~~~
1224
1501
  - Bump changelog. [Raphaël Vinot]
1225
1502
  - Bump deps. [Raphaël Vinot]
1226
1503
 
1227
1504
  Fix
1228
1505
  ~~~
1506
+ - Missing place to update version. [Raphaël Vinot]
1229
1507
  - Make keepalive configuration linux only. [Raphaël Vinot]
1230
1508
 
1231
1509
  Bump deps
@@ -1317,24 +1595,14 @@ Changes
1317
1595
  - [tests] reverted. [Alexandre Dulaunoy]
1318
1596
  - [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
1319
1597
  - [tests] subversion are supported. [Alexandre Dulaunoy]
1320
-
1321
- Fix
1322
- ~~~
1323
- - [tests] check if the version is a substring as PyMISP might contain
1324
- sub version. [Alexandre Dulaunoy]
1325
-
1326
-
1327
- v2.4.155.1 (2022-03-03)
1328
- -----------------------
1329
-
1330
- Changes
1331
- ~~~~~~~
1332
1598
  - Bump changelog. [Raphaël Vinot]
1333
1599
  - Bump required python version for doc. [Raphaël Vinot]
1334
1600
  - Remove python 3.6 from metadata. [Raphaël Vinot]
1335
1601
 
1336
1602
  Fix
1337
1603
  ~~~
1604
+ - [tests] check if the version is a substring as PyMISP might contain
1605
+ sub version. [Alexandre Dulaunoy]
1338
1606
  - Incorrect call when requesting a new API key. [Raphaël Vinot]
1339
1607
 
1340
1608
 
@@ -1420,6 +1688,10 @@ v2.4.151 (2021-11-19)
1420
1688
  New
1421
1689
  ~~~
1422
1690
  - Add Blind Carbon Copy (bcc) headers. [Sami Tainio]
1691
+ - Add few keys to email object creator. [Raphaël Vinot]
1692
+
1693
+ Fix #787
1694
+ - Test cases for edit objects and upload stix. [Raphaël Vinot]
1423
1695
 
1424
1696
  Changes
1425
1697
  ~~~~~~~
@@ -1452,9 +1724,28 @@ Changes
1452
1724
  or organisation (users) [Tom King]
1453
1725
  - [test] Check if all category types exists. [Jakub Onderka]
1454
1726
  - Bump changelog. [Raphaël Vinot]
1727
+ - Bump misp-objects. [Raphaël Vinot]
1728
+ - Bump version. [Raphaël Vinot]
1729
+ - Bump deps. [Raphaël Vinot]
1455
1730
  - [py] Typo. [Steve Clement]
1456
1731
  - [describeTypes] updated to include ssh-fingerprint. [Alexandre
1457
1732
  Dulaunoy]
1733
+ - [doc] Minor fixes, note and typo. [Steve Clement]
1734
+ - Bump deps. [Raphaël Vinot]
1735
+ - [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
1736
+ - [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
1737
+ - Update tutorial for custom objects. [Raphaël Vinot]
1738
+ - Bump deps. [Raphaël Vinot]
1739
+ - Bump live tests. [Raphaël Vinot]
1740
+ - [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
1741
+ - [types] updated types/categories mapping. [Christophe Vandeplas]
1742
+ - Remove test files. [Raphaël Vinot]
1743
+ - Automatically pull the malwares repo when running
1744
+ tests/testlive_comprehensive.py. [Raphaël Vinot]
1745
+ - Remove submodules with malware. [Raphaël Vinot]
1746
+ - Add test for updating a objects from a custom template. [Raphaël
1747
+ Vinot]
1748
+ - Re-bump changelog. [Raphaël Vinot]
1458
1749
 
1459
1750
  Fix
1460
1751
  ~~~
@@ -1475,47 +1766,6 @@ Fix
1475
1766
  Fix #796
1476
1767
  - [tests] Fixed stix test. [chrisr3d]
1477
1768
  - [py] Typo. [Steve Clement]
1478
-
1479
- Other
1480
- ~~~~~
1481
- - Update README.md. [Raphaël Vinot]
1482
-
1483
-
1484
- v2.4.148.1 (2021-09-30)
1485
- -----------------------
1486
-
1487
- New
1488
- ~~~
1489
- - Add few keys to email object creator. [Raphaël Vinot]
1490
-
1491
- Fix #787
1492
- - Test cases for edit objects and upload stix. [Raphaël Vinot]
1493
-
1494
- Changes
1495
- ~~~~~~~
1496
- - Bump changelog. [Raphaël Vinot]
1497
- - Bump misp-objects. [Raphaël Vinot]
1498
- - Bump version. [Raphaël Vinot]
1499
- - Bump deps. [Raphaël Vinot]
1500
- - [doc] Minor fixes, note and typo. [Steve Clement]
1501
- - Bump deps. [Raphaël Vinot]
1502
- - [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
1503
- - [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
1504
- - Update tutorial for custom objects. [Raphaël Vinot]
1505
- - Bump deps. [Raphaël Vinot]
1506
- - Bump live tests. [Raphaël Vinot]
1507
- - [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
1508
- - [types] updated types/categories mapping. [Christophe Vandeplas]
1509
- - Remove test files. [Raphaël Vinot]
1510
- - Automatically pull the malwares repo when running
1511
- tests/testlive_comprehensive.py. [Raphaël Vinot]
1512
- - Remove submodules with malware. [Raphaël Vinot]
1513
- - Add test for updating a objects from a custom template. [Raphaël
1514
- Vinot]
1515
- - Re-bump changelog. [Raphaël Vinot]
1516
-
1517
- Fix
1518
- ~~~
1519
1769
  - Message_from_bytes really dislikes newline at the beginning of a mail.
1520
1770
  [Raphaël Vinot]
1521
1771
  - Skip IPs in Received header. [Raphaël Vinot]
@@ -1534,6 +1784,7 @@ Fix
1534
1784
 
1535
1785
  Other
1536
1786
  ~~~~~
1787
+ - Update README.md. [Raphaël Vinot]
1537
1788
  - Remove unicode to ascii parts. [Sami Tainio]
1538
1789
  - Fix #787 and add Unicode to ASCII function. [Sami Tainio]
1539
1790
 
@@ -1711,6 +1962,9 @@ Changes
1711
1962
  - Bump deps. [Raphaël Vinot]
1712
1963
  - Bump deps. [Raphaël Vinot]
1713
1964
  - Add comment for controller attribute in search. [Raphaël Vinot]
1965
+ - Bump changelog. [Raphaël Vinot]
1966
+ - Re-bump changelog. [Raphaël Vinot]
1967
+ - Bump version. [Raphaël Vinot]
1714
1968
 
1715
1969
  Fix
1716
1970
  ~~~
@@ -1718,16 +1972,6 @@ Fix
1718
1972
  - Mistake in mypy config. [Raphaël Vinot]
1719
1973
  - Exclude data from mypy. [Raphaël Vinot]
1720
1974
 
1721
-
1722
- v2.4.141.1 (2021-04-02)
1723
- -----------------------
1724
-
1725
- Changes
1726
- ~~~~~~~
1727
- - Bump changelog. [Raphaël Vinot]
1728
- - Re-bump changelog. [Raphaël Vinot]
1729
- - Bump version. [Raphaël Vinot]
1730
-
1731
1975
  Other
1732
1976
  ~~~~~
1733
1977
  - Fix bump version, deps, templates. [Raphaël Vinot]
@@ -1886,55 +2130,35 @@ Other
1886
2130
  v2.4.138 (2021-02-08)
1887
2131
  ---------------------
1888
2132
 
2133
+ New
2134
+ ~~~
2135
+ - Add in ability to create/update/delete MISP Event Reports. [Tom King]
2136
+ - Hard delete flag for objects. [Raphaël Vinot]
2137
+ - Fail if a duplicate object is added to an event. [Raphaël Vinot]
2138
+ - Support brotli compression. [Jakub Onderka]
2139
+ - Hard delete flag for objects. [Raphaël Vinot]
2140
+ - Fail if a duplicate object is added to an event. [Raphaël Vinot]
2141
+ - Add in ability to create/update/delete MISP Event Reports. [Tom King]
2142
+ - Add in ability to create/update/delete MISP Event Reports. [Tom King]
2143
+ - Hard delete flag for objects. [Raphaël Vinot]
2144
+ - Fail if a duplicate object is added to an event. [Raphaël Vinot]
2145
+
1889
2146
  Changes
1890
2147
  ~~~~~~~
1891
2148
  - Bump changelog. [Raphaël Vinot]
1892
2149
  - Bump version. [Raphaël Vinot]
1893
2150
  - Bump deps. [Raphaël Vinot]
1894
-
1895
-
1896
- v2.4.137.4 (2021-02-04)
1897
- -----------------------
1898
-
1899
- Changes
1900
- ~~~~~~~
1901
2151
  - Bump changelog. [Raphaël Vinot]
1902
2152
  - Bump version. [Raphaël Vinot]
1903
2153
  - Bump objects. [Raphaël Vinot]
1904
2154
  - Add kw_params to tags. [Raphaël Vinot]
1905
2155
  - Bump objects. [Raphaël Vinot]
1906
2156
  - Bump template ID in test case. [Raphaël Vinot]
1907
-
1908
-
1909
- v2.4.137.3 (2021-02-02)
1910
- -----------------------
1911
-
1912
- Changes
1913
- ~~~~~~~
1914
2157
  - Bump version. [Raphaël Vinot]
1915
2158
  - Bump changelog. [Raphaël Vinot]
1916
2159
  - Bump objects. [Raphaël Vinot]
1917
2160
  - Fix and improve optional dependencies. [Raphaël Vinot]
1918
2161
  - Make brotli optional. [Raphaël Vinot]
1919
-
1920
-
1921
- v2.4.137.2 (2021-02-01)
1922
- -----------------------
1923
-
1924
- New
1925
- ~~~
1926
- - Add in ability to create/update/delete MISP Event Reports. [Tom King]
1927
- - Hard delete flag for objects. [Raphaël Vinot]
1928
- - Fail if a duplicate object is added to an event. [Raphaël Vinot]
1929
- - Support brotli compression. [Jakub Onderka]
1930
- - Hard delete flag for objects. [Raphaël Vinot]
1931
- - Fail if a duplicate object is added to an event. [Raphaël Vinot]
1932
- - Add in ability to create/update/delete MISP Event Reports. [Tom King]
1933
- - Add in ability to create/update/delete MISP Event Reports. [Tom King]
1934
- - Hard delete flag for objects. [Raphaël Vinot]
1935
-
1936
- Changes
1937
- ~~~~~~~
1938
2162
  - Bump changelog. [Raphaël Vinot]
1939
2163
  - Bump version. [Raphaël Vinot]
1940
2164
  - Add brotli support in the dependencies. [Raphaël Vinot]
@@ -2021,6 +2245,14 @@ Changes
2021
2245
  - Add test case fir add_attribute and enforceWarninglist=True. [Raphaël
2022
2246
  Vinot]
2023
2247
  - Add testcase with breakOnDuplicate in a MISPObject. [Raphaël Vinot]
2248
+ - Bump changelog. [Raphaël Vinot]
2249
+ - Bump version. [Raphaël Vinot]
2250
+ - Add test case for page/limit in logs search. [Raphaël Vinot]
2251
+ - Bump deps. [Raphaël Vinot]
2252
+ - Improve docstring for get_event. [Raphaël Vinot]
2253
+
2254
+ fix #686
2255
+ - Bump changelog. [Raphaël Vinot]
2024
2256
 
2025
2257
  Fix
2026
2258
  ~~~
@@ -2042,28 +2274,6 @@ Fix
2042
2274
  - Add python 3.9 in GH Actions. [Raphaël Vinot]
2043
2275
  - Call the AbstractMISP.from_dict at the end of the function to ensure
2044
2276
  the edited flag remains false. [Tom King]
2045
-
2046
-
2047
- v2.4.137.1 (2021-01-21)
2048
- -----------------------
2049
-
2050
- New
2051
- ~~~
2052
- - Fail if a duplicate object is added to an event. [Raphaël Vinot]
2053
-
2054
- Changes
2055
- ~~~~~~~
2056
- - Bump changelog. [Raphaël Vinot]
2057
- - Bump version. [Raphaël Vinot]
2058
- - Add test case for page/limit in logs search. [Raphaël Vinot]
2059
- - Bump deps. [Raphaël Vinot]
2060
- - Improve docstring for get_event. [Raphaël Vinot]
2061
-
2062
- fix #686
2063
- - Bump changelog. [Raphaël Vinot]
2064
-
2065
- Fix
2066
- ~~~
2067
2277
  - Better warning if lief is outdated. [Raphaël Vinot]
2068
2278
  - Update minimal dependency for lief in setup.py. [Raphaël Vinot]
2069
2279
 
@@ -2077,6 +2287,7 @@ New
2077
2287
  Vinot]
2078
2288
 
2079
2289
  MISPObject part of #6670
2290
+ - Add Github workflow. [Raphaël Vinot]
2080
2291
 
2081
2292
  Changes
2082
2293
  ~~~~~~~
@@ -2103,6 +2314,21 @@ Changes
2103
2314
  - On-demand decryption of malware-binary, speeds up pythonify. [Raphaël
2104
2315
  Vinot]
2105
2316
  - Force a few packages versions. [Raphaël Vinot]
2317
+ - Bump changelog. [Raphaël Vinot]
2318
+ - Bump version. [Raphaël Vinot]
2319
+ - Improve typing. [Raphaël Vinot]
2320
+ - Improve add_attribute with a list. [Raphaël Vinot]
2321
+ - Bump changelog. [Raphaël Vinot]
2322
+ - Bump version. [Raphaël Vinot]
2323
+ - Improve error message if a type in missing. [Raphaël Vinot]
2324
+ - [type] process-state added. [Alexandre Dulaunoy]
2325
+ - Bump misp-objects. [Raphaël Vinot]
2326
+ - [misp-objects] updated. [Alexandre Dulaunoy]
2327
+ - Add path to CSV sample files. [Raphaël Vinot]
2328
+ - [types] jarm-fingerprint added. [Alexandre Dulaunoy]
2329
+ - Bump changelog. [Raphaël Vinot]
2330
+ - Bump version, travis install. [Raphaël Vinot]
2331
+ - Make mail-parser an optional dependency. [Raphaël Vinot]
2106
2332
 
2107
2333
  Fix
2108
2334
  ~~~
@@ -2118,6 +2344,11 @@ Fix
2118
2344
  - Typing on recent mypy. [Raphaël Vinot]
2119
2345
  - Typing edge case. [Raphaël Vinot]
2120
2346
  - Add attribute dict as proposal. [Raphaël Vinot]
2347
+ - Do not fail on PyMISP import when mail-parser is not present. [Raphaël
2348
+ Vinot]
2349
+ - Remove python 3.9 from action (lief not supported yet) [Raphaël Vinot]
2350
+ - Initialize submodules in gh action. [Raphaël Vinot]
2351
+ - Make mail-parser really optional. [Raphaël Vinot]
2121
2352
 
2122
2353
  Other
2123
2354
  ~~~~~
@@ -2135,57 +2366,6 @@ Other
2135
2366
  - Update mispevent.py. [Raphaël Vinot]
2136
2367
 
2137
2368
 
2138
- v2.4.135.3 (2020-11-24)
2139
- -----------------------
2140
-
2141
- Changes
2142
- ~~~~~~~
2143
- - Bump changelog. [Raphaël Vinot]
2144
- - Bump version. [Raphaël Vinot]
2145
- - Improve typing. [Raphaël Vinot]
2146
- - Improve add_attribute with a list. [Raphaël Vinot]
2147
-
2148
- Fix
2149
- ~~~
2150
- - Do not fail on PyMISP import when mail-parser is not present. [Raphaël
2151
- Vinot]
2152
-
2153
-
2154
- v2.4.135.2 (2020-11-24)
2155
- -----------------------
2156
-
2157
- New
2158
- ~~~
2159
- - Add Github workflow. [Raphaël Vinot]
2160
-
2161
- Changes
2162
- ~~~~~~~
2163
- - Bump changelog. [Raphaël Vinot]
2164
- - Bump version. [Raphaël Vinot]
2165
- - Improve error message if a type in missing. [Raphaël Vinot]
2166
- - [type] process-state added. [Alexandre Dulaunoy]
2167
- - Bump misp-objects. [Raphaël Vinot]
2168
- - [misp-objects] updated. [Alexandre Dulaunoy]
2169
- - Add path to CSV sample files. [Raphaël Vinot]
2170
- - [types] jarm-fingerprint added. [Alexandre Dulaunoy]
2171
-
2172
- Fix
2173
- ~~~
2174
- - Remove python 3.9 from action (lief not supported yet) [Raphaël Vinot]
2175
- - Initialize submodules in gh action. [Raphaël Vinot]
2176
- - Make mail-parser really optional. [Raphaël Vinot]
2177
-
2178
-
2179
- v2.4.135.1 (2020-11-24)
2180
- -----------------------
2181
-
2182
- Changes
2183
- ~~~~~~~
2184
- - Bump changelog. [Raphaël Vinot]
2185
- - Bump version, travis install. [Raphaël Vinot]
2186
- - Make mail-parser an optional dependency. [Raphaël Vinot]
2187
-
2188
-
2189
2369
  v2.4.135 (2020-11-23)
2190
2370
  ---------------------
2191
2371
 
@@ -2503,17 +2683,6 @@ Other
2503
2683
  v2.4.128 (2020-06-22)
2504
2684
  ---------------------
2505
2685
 
2506
- Changes
2507
- ~~~~~~~
2508
- - Bump changelog. [Raphaël Vinot]
2509
- - Bump version. [Raphaël Vinot]
2510
- - Add a few test cases. [Raphaël Vinot]
2511
- - Bump objects. [Raphaël Vinot]
2512
-
2513
-
2514
- v2.4.127.1 (2020-06-19)
2515
- -----------------------
2516
-
2517
2686
  New
2518
2687
  ~~~
2519
2688
  - Optionally include deleted attributes/objects in feed. [Raphaël Vinot]
@@ -2522,6 +2691,10 @@ Changes
2522
2691
  ~~~~~~~
2523
2692
  - Bump changelog. [Raphaël Vinot]
2524
2693
  - Bump version. [Raphaël Vinot]
2694
+ - Add a few test cases. [Raphaël Vinot]
2695
+ - Bump objects. [Raphaël Vinot]
2696
+ - Bump changelog. [Raphaël Vinot]
2697
+ - Bump version. [Raphaël Vinot]
2525
2698
  - Bump misp-objects. [Raphaël Vinot]
2526
2699
  - Add test case for get event deleted. [Raphaël Vinot]
2527
2700
  - Add test case for search deleted. [Raphaël Vinot]
@@ -2768,6 +2941,10 @@ Changes
2768
2941
  - Fix typo in readme. [Raphaël Vinot]
2769
2942
  - Use bionic on travis. [Raphaël Vinot]
2770
2943
  - Add poetry support. [Raphaël Vinot]
2944
+ - Bump changelog. [Raphaël Vinot]
2945
+ - Bump objects. [Raphaël Vinot]
2946
+ - Bump changelog. [Raphaël Vinot]
2947
+ - Bump version. [Raphaël Vinot]
2771
2948
 
2772
2949
  Fix
2773
2950
  ~~~
@@ -2775,29 +2952,15 @@ Fix
2775
2952
  - Mypy, more typing. [Raphaël Vinot]
2776
2953
  - Do not skip data in add_attribute methods. [Raphaël Vinot]
2777
2954
  - Remove references to the old API. [Raphaël Vinot]
2955
+ - Make lief optional again. [Raphaël Vinot]
2956
+
2957
+ fix #538
2778
2958
 
2779
2959
  Other
2780
2960
  ~~~~~
2781
2961
  - Use poetry everywhere, fix readme. [Raphaël Vinot]
2782
2962
 
2783
2963
 
2784
- v2.4.121.1 (2020-02-07)
2785
- -----------------------
2786
-
2787
- Changes
2788
- ~~~~~~~
2789
- - Bump changelog. [Raphaël Vinot]
2790
- - Bump objects. [Raphaël Vinot]
2791
- - Bump changelog. [Raphaël Vinot]
2792
- - Bump version. [Raphaël Vinot]
2793
-
2794
- Fix
2795
- ~~~
2796
- - Make lief optional again. [Raphaël Vinot]
2797
-
2798
- fix #538
2799
-
2800
-
2801
2964
  v2.4.121 (2020-02-06)
2802
2965
  ---------------------
2803
2966
 
@@ -2870,6 +3033,7 @@ New
2870
3033
  to search large dataset. It's used in Windows Defender ATP Hunting-Queries
2871
3034
  and also Azure Sentinel (Cloud-native SIEM).
2872
3035
  - Remove python < 3.6 support. [Raphaël Vinot]
3036
+ - URLObject (requires pyfaup) [Raphaël Vinot]
2873
3037
 
2874
3038
  Changes
2875
3039
  ~~~~~~~
@@ -2889,6 +3053,18 @@ Changes
2889
3053
  - Bump misp-objects. [Raphaël Vinot]
2890
3054
  - Bump Dependencies. [Raphaël Vinot]
2891
3055
  - Bump misp-objects. [Raphaël Vinot]
3056
+ - Bump changelog. [Raphaël Vinot]
3057
+ - Version bump. [Raphaël Vinot]
3058
+ - Bump test files. [Raphaël Vinot]
3059
+ - Bump misp-objects. [Raphaël Vinot]
3060
+ - Debug travis error message. [Raphaël Vinot]
3061
+ - [types] eppn type added. [Alexandre Dulaunoy]
3062
+ - Fix typo. [Raphaël Vinot]
3063
+ - Move scrippsco2 feed generator to a sub directory. [Raphaël Vinot]
3064
+ - Update documentation. [Raphaël Vinot]
3065
+
3066
+ Fix #396
3067
+ - Bump objects. [Raphaël Vinot]
2892
3068
 
2893
3069
  Fix
2894
3070
  ~~~
@@ -2901,6 +3077,12 @@ Fix
2901
3077
  - Event without hashable attribute. [Raphaël Vinot]
2902
3078
 
2903
3079
  Related #506
3080
+ - Properly test custom objects. [Raphaël Vinot]
3081
+ - Adding a sighting takes a little bit of time. [Raphaël Vinot]
3082
+ - Test case on reference. [Raphaël Vinot]
3083
+ - Add missing fields to event & attribute for the feed output. [Raphaël
3084
+ Vinot]
3085
+ - Make sure the publish timestamp is bumped on update. [Raphaël Vinot]
2904
3086
 
2905
3087
  Other
2906
3088
  ~~~~~
@@ -2926,59 +3108,9 @@ Other
2926
3108
  - Update README.md. [Raphaël Vinot]
2927
3109
 
2928
3110
 
2929
- v2.4.119.1 (2019-12-17)
2930
- -----------------------
2931
-
2932
- New
2933
- ~~~
2934
- - URLObject (requires pyfaup) [Raphaël Vinot]
2935
-
2936
- Changes
2937
- ~~~~~~~
2938
- - Bump changelog. [Raphaël Vinot]
2939
- - Version bump. [Raphaël Vinot]
2940
- - Bump test files. [Raphaël Vinot]
2941
- - Bump misp-objects. [Raphaël Vinot]
2942
- - Debug travis error message. [Raphaël Vinot]
2943
- - [types] eppn type added. [Alexandre Dulaunoy]
2944
- - Fix typo. [Raphaël Vinot]
2945
- - Move scrippsco2 feed generator to a sub directory. [Raphaël Vinot]
2946
- - Update documentation. [Raphaël Vinot]
2947
-
2948
- Fix #396
2949
- - Bump objects. [Raphaël Vinot]
2950
-
2951
- Fix
2952
- ~~~
2953
- - Properly test custom objects. [Raphaël Vinot]
2954
- - Adding a sighting takes a little bit of time. [Raphaël Vinot]
2955
- - Test case on reference. [Raphaël Vinot]
2956
- - Add missing fields to event & attribute for the feed output. [Raphaël
2957
- Vinot]
2958
- - Make sure the publish timestamp is bumped on update. [Raphaël Vinot]
2959
-
2960
-
2961
3111
  v2.4.119 (2019-12-02)
2962
3112
  ---------------------
2963
3113
 
2964
- Changes
2965
- ~~~~~~~
2966
- - Bump changelog. [Raphaël Vinot]
2967
- - Bump version. [Raphaël Vinot]
2968
- - Bump dependencies. [Raphaël Vinot]
2969
-
2970
- Fix
2971
- ~~~
2972
- - Bump lief to 0.10.1. [Raphaël Vinot]
2973
- - Update tests. [Raphaël Vinot]
2974
- - Raise PyMISPError instead of Exception. [Raphaël Vinot]
2975
- - Rename feed_meta_generator so it clearly fails with python<3.6.
2976
- [Raphaël Vinot]
2977
-
2978
-
2979
- v2.4.117.3 (2019-11-25)
2980
- -----------------------
2981
-
2982
3114
  New
2983
3115
  ~~~
2984
3116
  - Script to generate the metadata of a feed out of a directory. [Raphaël
@@ -2993,12 +3125,16 @@ New
2993
3125
  - Get Database Schema Diagnostic. [Raphaël Vinot]
2994
3126
 
2995
3127
  Fix #492
3128
+ - Add support for UserSettings. [Raphaël Vinot]
2996
3129
 
2997
3130
  Changes
2998
3131
  ~~~~~~~
2999
3132
  - Bump changelog. [Raphaël Vinot]
3000
3133
  - Bump version. [Raphaël Vinot]
3001
3134
  - Bump dependencies. [Raphaël Vinot]
3135
+ - Bump changelog. [Raphaël Vinot]
3136
+ - Bump version. [Raphaël Vinot]
3137
+ - Bump dependencies. [Raphaël Vinot]
3002
3138
  - Require stable version of lief again. [Raphaël Vinot]
3003
3139
  - Few more improvements on the feed export. [Raphaël Vinot]
3004
3140
  - Bump misp-objects. [Raphaël Vinot]
@@ -3010,43 +3146,7 @@ Changes
3010
3146
  - Bump dependencies. [Raphaël Vinot]
3011
3147
  - [test] feed test updated as botvrij is now TLS by default. [Alexandre
3012
3148
  Dulaunoy]
3013
-
3014
- Fix
3015
- ~~~
3016
- - Improve stability of feed output. [Raphaël Vinot]
3017
- - Do not unitialize the uuid in MISPEvent. [Raphaël Vinot]
3018
- - Bump url template version in test cases. [Raphaël Vinot]
3019
- - Python 2.7 tests. [Raphaël Vinot]
3020
- - Print the full json blob in debug mode. [Raphaël Vinot]
3021
-
3022
- Related https://github.com/MISP/PyMISP/issues/462
3023
-
3024
- Other
3025
- ~~~~~
3026
- - Cch: Bump misp-objects. [Raphaël Vinot]
3027
-
3028
-
3029
- v2.4.117.2 (2019-10-30)
3030
- -----------------------
3031
-
3032
- Changes
3033
- ~~~~~~~
3034
3149
  - Bump changelog. [Raphaël Vinot]
3035
-
3036
- Fix
3037
- ~~~
3038
- - Avoid exception on legacy MISP. [Raphaël Vinot]
3039
-
3040
-
3041
- v2.4.117.1 (2019-10-30)
3042
- -----------------------
3043
-
3044
- New
3045
- ~~~
3046
- - Add support for UserSettings. [Raphaël Vinot]
3047
-
3048
- Changes
3049
- ~~~~~~~
3050
3150
  - Bump changelog. [Raphaël Vinot]
3051
3151
  - Bump version. [Raphaël Vinot]
3052
3152
  - Bump misp-objects. [Raphaël Vinot]
@@ -3057,6 +3157,19 @@ Changes
3057
3157
 
3058
3158
  Fix
3059
3159
  ~~~
3160
+ - Bump lief to 0.10.1. [Raphaël Vinot]
3161
+ - Update tests. [Raphaël Vinot]
3162
+ - Raise PyMISPError instead of Exception. [Raphaël Vinot]
3163
+ - Rename feed_meta_generator so it clearly fails with python<3.6.
3164
+ [Raphaël Vinot]
3165
+ - Improve stability of feed output. [Raphaël Vinot]
3166
+ - Do not unitialize the uuid in MISPEvent. [Raphaël Vinot]
3167
+ - Bump url template version in test cases. [Raphaël Vinot]
3168
+ - Python 2.7 tests. [Raphaël Vinot]
3169
+ - Print the full json blob in debug mode. [Raphaël Vinot]
3170
+
3171
+ Related https://github.com/MISP/PyMISP/issues/462
3172
+ - Avoid exception on legacy MISP. [Raphaël Vinot]
3060
3173
  - [examples] typo uuid. [Jean-Louis Huynen]
3061
3174
 
3062
3175
  give me a hoodie.
@@ -3070,6 +3183,7 @@ Fix
3070
3183
 
3071
3184
  Other
3072
3185
  ~~~~~
3186
+ - Cch: Bump misp-objects. [Raphaël Vinot]
3073
3187
  - Added example for checking sync servers. [wotschel]
3074
3188
  - Corrected docstring. [Shortfinga]
3075
3189
  - Include to_ids and replace newlines in title. [Koen Van Impe]
@@ -3297,6 +3411,12 @@ New
3297
3411
  - Get_objects_by_name in MISPEvent. [Raphaël Vinot]
3298
3412
 
3299
3413
  new: Convert datetime objects to python datetime.
3414
+ - [Sightings] Delete method. [Raphaël Vinot]
3415
+
3416
+ Fix #230
3417
+ - [tests] non-exportable tags. [Raphaël Vinot]
3418
+ - Add option to locally expand malware samples with LIEF. [Raphaël
3419
+ Vinot]
3300
3420
 
3301
3421
  Changes
3302
3422
  ~~~~~~~
@@ -3311,6 +3431,23 @@ Changes
3311
3431
  - [examples] pythonify properly when needed. [Raphaël Vinot]
3312
3432
  - [tests] Toggle pythonify in create_massive_dummy_events. [Raphaël
3313
3433
  Vinot]
3434
+ - Bump Changelog. [Raphaël Vinot]
3435
+ - Bump verison. [Raphaël Vinot]
3436
+ - Make pythonify=False default everywhere. [Raphaël Vinot]
3437
+
3438
+ Add a method to toggle pythonify globally
3439
+ - [tests] Update stats. [Raphaël Vinot]
3440
+ - [tests] Remove travis exceptions. [Raphaël Vinot]
3441
+ - Bump Changelog. [Raphaël Vinot]
3442
+ - Bump version. [Raphaël Vinot]
3443
+ - Bump misp-objects. [Raphaël Vinot]
3444
+ - Remove legacy tests. [Raphaël Vinot]
3445
+ - Improve deprecation message on PyMISP. [Raphaël Vinot]
3446
+ - [describeTypes] updated to add community-id. [Alexandre Dulaunoy]
3447
+ - Bump examples to python3. [Raphaël Vinot]
3448
+ - Reorganise ExpandedPyMISP methods, normalise the parameters. [Raphaël
3449
+ Vinot]
3450
+ - Deprecate everything in PyMISP. [Raphaël Vinot]
3314
3451
 
3315
3452
  Fix
3316
3453
  ~~~
@@ -3323,38 +3460,6 @@ Fix
3323
3460
  Also, deprecated method was broken.
3324
3461
 
3325
3462
  Fix #424
3326
-
3327
- Other
3328
- ~~~~~
3329
- - Add: New attribute type weakness. [chrisr3d]
3330
- - Fix missing f in f-string. [Paal Braathen]
3331
- - Wrong variable. [Georges Toth]
3332
- - Remove unused line. [kovacsbalu]
3333
- - Fix tag help text Minor pycodestyle. [kovacsbalu]
3334
-
3335
-
3336
- v2.4.111.2 (2019-07-22)
3337
- -----------------------
3338
-
3339
- New
3340
- ~~~
3341
- - [Sightings] Delete method. [Raphaël Vinot]
3342
-
3343
- Fix #230
3344
- - [tests] non-exportable tags. [Raphaël Vinot]
3345
-
3346
- Changes
3347
- ~~~~~~~
3348
- - Bump Changelog. [Raphaël Vinot]
3349
- - Bump verison. [Raphaël Vinot]
3350
- - Make pythonify=False default everywhere. [Raphaël Vinot]
3351
-
3352
- Add a method to toggle pythonify globally
3353
- - [tests] Update stats. [Raphaël Vinot]
3354
- - [tests] Remove travis exceptions. [Raphaël Vinot]
3355
-
3356
- Fix
3357
- ~~~
3358
3463
  - [tests] Path to test file. [Raphaël Vinot]
3359
3464
 
3360
3465
  Fix #423
@@ -3365,39 +3470,16 @@ Fix
3365
3470
  - Properly handle fallbacks add/update/delete attributes. [Raphaël
3366
3471
  Vinot]
3367
3472
  - [add_attribute] Only create a proposal when needed. [Raphaël Vinot]
3368
-
3369
- Other
3370
- ~~~~~
3371
- - Fix for issue 420. [github-pba]
3372
-
3373
-
3374
- v2.4.111.1 (2019-07-18)
3375
- -----------------------
3376
-
3377
- New
3378
- ~~~
3379
- - Add option to locally expand malware samples with LIEF. [Raphaël
3380
- Vinot]
3381
-
3382
- Changes
3383
- ~~~~~~~
3384
- - Bump Changelog. [Raphaël Vinot]
3385
- - Bump version. [Raphaël Vinot]
3386
- - Bump misp-objects. [Raphaël Vinot]
3387
- - Remove legacy tests. [Raphaël Vinot]
3388
- - Improve deprecation message on PyMISP. [Raphaël Vinot]
3389
- - [describeTypes] updated to add community-id. [Alexandre Dulaunoy]
3390
- - Bump examples to python3. [Raphaël Vinot]
3391
- - Reorganise ExpandedPyMISP methods, normalise the parameters. [Raphaël
3392
- Vinot]
3393
- - Deprecate everything in PyMISP. [Raphaël Vinot]
3394
-
3395
- Fix
3396
- ~~~
3397
3473
  - Python < 3.6 support. [Raphaël Vinot]
3398
3474
 
3399
3475
  Other
3400
3476
  ~~~~~
3477
+ - Add: New attribute type weakness. [chrisr3d]
3478
+ - Fix missing f in f-string. [Paal Braathen]
3479
+ - Wrong variable. [Georges Toth]
3480
+ - Remove unused line. [kovacsbalu]
3481
+ - Fix tag help text Minor pycodestyle. [kovacsbalu]
3482
+ - Fix for issue 420. [github-pba]
3401
3483
  - Create statistical reports for MISP. [Koen Van Impe]
3402
3484
 
3403
3485
  PyMISP script to run every x-days to get an overview of new
@@ -3918,6 +4000,7 @@ Changes
3918
4000
  - Update order parameters & doc. [Raphaël Vinot]
3919
4001
  - Add an extra IP from the warninglists. [Raphaël Vinot]
3920
4002
  - Test for event UUID in attribute. [Raphaël Vinot]
4003
+ - Bump changelog. [Raphaël Vinot]
3921
4004
 
3922
4005
  Fix
3923
4006
  ~~~
@@ -3953,14 +4036,6 @@ Other
3953
4036
  Toth]
3954
4037
 
3955
4038
 
3956
- v2.4.95.1 (2018-09-06)
3957
- ----------------------
3958
-
3959
- Changes
3960
- ~~~~~~~
3961
- - Bump changelog. [Raphaël Vinot]
3962
-
3963
-
3964
4039
  v2.4.95 (2018-09-06)
3965
4040
  --------------------
3966
4041
 
@@ -4060,6 +4135,12 @@ Changes
4060
4135
  - Fix sample retrieval from new-style zips. [Xavier Mehrenberger]
4061
4136
  - Bump misp-objects. [Raphaël Vinot]
4062
4137
  - Raise an exception if the response is not in JSON. [Raphaël Vinot]
4138
+ - Bump version. [Raphaël Vinot]
4139
+ - Bump changelog. [Raphaël Vinot]
4140
+
4141
+ Fix
4142
+ ~~~
4143
+ - Index out of range in add_object. [Raphaël Vinot]
4063
4144
 
4064
4145
  Other
4065
4146
  ~~~~~
@@ -4070,25 +4151,13 @@ Other
4070
4151
  added: download_samples(..., unzip=True)
4071
4152
 
4072
4153
 
4073
- v2.4.92.1 (2018-06-05)
4074
- ----------------------
4075
-
4076
- Changes
4077
- ~~~~~~~
4078
- - Bump version. [Raphaël Vinot]
4079
- - Bump changelog. [Raphaël Vinot]
4080
-
4081
- Fix
4082
- ~~~
4083
- - Index out of range in add_object. [Raphaël Vinot]
4084
-
4085
-
4086
4154
  v2.4.92 (2018-06-05)
4087
4155
  --------------------
4088
4156
 
4089
4157
  New
4090
4158
  ~~~
4091
4159
  - Add edit_object, simplify add_object. [Raphaël Vinot]
4160
+ - Properly implement the Email object creator. [Raphaël Vinot]
4092
4161
 
4093
4162
  Changes
4094
4163
  ~~~~~~~
@@ -4096,30 +4165,6 @@ Changes
4096
4165
  - Bump misp-objects. [Raphaël Vinot]
4097
4166
  - Bump version. [Raphaël Vinot]
4098
4167
  - Bump misp-objects. [Raphaël Vinot]
4099
-
4100
- Fix
4101
- ~~~
4102
- - Correct docstring of search method. [iso]
4103
- - Response data type mismatch in _send_attributes() [Raphaël Vinot]
4104
-
4105
- Fix #206
4106
- - Decoding issue. [Raphaël Vinot]
4107
-
4108
- Other
4109
- ~~~~~
4110
- - Fix issue when adding multiple attributes and the instance is too
4111
- slow. [Raphaël Vinot]
4112
-
4113
-
4114
- v2.4.90.1 (2018-05-09)
4115
- ----------------------
4116
-
4117
- New
4118
- ~~~
4119
- - Properly implement the Email object creator. [Raphaël Vinot]
4120
-
4121
- Changes
4122
- ~~~~~~~
4123
4168
  - Bump changelog. [Raphaël Vinot]
4124
4169
  - Version bump. [Raphaël Vinot]
4125
4170
  - Bump misp-objects. [Raphaël Vinot]
@@ -4128,13 +4173,23 @@ Changes
4128
4173
 
4129
4174
  Fix
4130
4175
  ~~~
4176
+ - Correct docstring of search method. [iso]
4177
+ - Response data type mismatch in _send_attributes() [Raphaël Vinot]
4178
+
4179
+ Fix #206
4131
4180
  - Wrong version. [Raphaël Vinot]
4181
+ - Decoding issue. [Raphaël Vinot]
4132
4182
  - Properly get and decode the body of the email. [Raphaël Vinot]
4133
4183
  - Provide the extension of the EML file to attach. [Raphaël Vinot]
4134
4184
  - Properly handle attachments. [Raphaël Vinot]
4135
4185
  - Test cases & attributes automatically getting an UUID. [Raphaël Vinot]
4136
4186
  - Typo in the *feed methods. [Raphaël Vinot]
4137
4187
 
4188
+ Other
4189
+ ~~~~~
4190
+ - Fix issue when adding multiple attributes and the instance is too
4191
+ slow. [Raphaël Vinot]
4192
+
4138
4193
 
4139
4194
  v2.4.90 (2018-04-25)
4140
4195
  --------------------
@@ -4208,6 +4263,12 @@ New
4208
4263
  ~~~
4209
4264
  - Add email object generator. [Raphaël Vinot]
4210
4265
  - Method to return an object by uuid. [chrisr3d]
4266
+ - APIs to manage sharing groups. [Raphaël Vinot]
4267
+
4268
+ Fix #185
4269
+ - ReturnMetaAttributes flag for freeTextImport API. [Raphaël Vinot]
4270
+
4271
+ Fix #188
4211
4272
 
4212
4273
  Changes
4213
4274
  ~~~~~~~
@@ -4215,6 +4276,13 @@ Changes
4215
4276
  - Bump version. [Raphaël Vinot]
4216
4277
  - Bump Changelog. [Raphaël Vinot]
4217
4278
  - Bump misp-objects. [Raphaël Vinot]
4279
+ - Bump Changelog. [Raphaël Vinot]
4280
+ - Version bump. [Raphaël Vinot]
4281
+ - Bump misp-objects. [Raphaël Vinot]
4282
+ - Bump describeTypes (add mime) [Raphaël Vinot]
4283
+ - Bump misp-objects. [Raphaël Vinot]
4284
+ - Bump describeType. [Raphaël Vinot]
4285
+ - Bump describeType. [Raphaël Vinot]
4218
4286
 
4219
4287
  Fix
4220
4288
  ~~~
@@ -4225,6 +4293,7 @@ Fix
4225
4293
  Fix #192
4226
4294
  - Typo. [chrisr3d]
4227
4295
  - Update reference test cases. [Raphaël Vinot]
4296
+ - Encode string in _encode_file_to_upload. [Raphaël Vinot]
4228
4297
 
4229
4298
  Other
4230
4299
  ~~~~~
@@ -4274,36 +4343,6 @@ Other
4274
4343
  The return will be a sighting list of event 42 with a filter for organisation 2.
4275
4344
  - Add attributes within objects as well, for tagging via value/id/uuid.
4276
4345
  [Tobias Mainka]
4277
-
4278
-
4279
- v2.4.87.1 (2018-02-13)
4280
- ----------------------
4281
-
4282
- New
4283
- ~~~
4284
- - APIs to manage sharing groups. [Raphaël Vinot]
4285
-
4286
- Fix #185
4287
- - ReturnMetaAttributes flag for freeTextImport API. [Raphaël Vinot]
4288
-
4289
- Fix #188
4290
-
4291
- Changes
4292
- ~~~~~~~
4293
- - Bump Changelog. [Raphaël Vinot]
4294
- - Version bump. [Raphaël Vinot]
4295
- - Bump misp-objects. [Raphaël Vinot]
4296
- - Bump describeTypes (add mime) [Raphaël Vinot]
4297
- - Bump misp-objects. [Raphaël Vinot]
4298
- - Bump describeType. [Raphaël Vinot]
4299
- - Bump describeType. [Raphaël Vinot]
4300
-
4301
- Fix
4302
- ~~~
4303
- - Encode string in _encode_file_to_upload. [Raphaël Vinot]
4304
-
4305
- Other
4306
- ~~~~~
4307
4346
  - Prevent unpublished events to be included in feed. [Koen Van Impe]
4308
4347
 
4309
4348
  Change default proposed config
@@ -4334,55 +4373,6 @@ Changes
4334
4373
  - Allow to pass a directory with custom object templates. [Raphaël
4335
4374
  Vinot]
4336
4375
  - Remove old warning. [Raphaël Vinot]
4337
-
4338
- Fix
4339
- ~~~
4340
- - Only skip test for 3.0->3.5. [Raphaël Vinot]
4341
- - Sys.api_version -> sys.version_info. [Raphaël Vinot]
4342
- - Allow to pass value, UUID, or ID to a sighting. [Raphaël Vinot]
4343
- - Do not use basicConfig in __init__ [Raphaël Vinot]
4344
-
4345
- Fix #170
4346
- - Add_hashes was broken. [Raphaël Vinot]
4347
-
4348
- Fix #174
4349
- - Make python2 happy. [Raphaël Vinot]
4350
- - Download old samples was broken. [Raphaël Vinot]
4351
-
4352
- Other
4353
- ~~~~~
4354
- - Revert "chg: Re-enable python3.4 on travis..." [Raphaël Vinot]
4355
-
4356
- Lief doesn't support python 3.4
4357
-
4358
- This reverts commit 35a8d92acecd7a313bedcf197539eaa82176bcc7.
4359
- - Add: Allow to fetch warninglists. [Raphaël Vinot]
4360
-
4361
- Fix #180
4362
- - Add tag test. [Louis LCE]
4363
- - Add a simple test for uploading samples. [Louis LCE]
4364
- - Add warning when failing to import dependencies. [Louis LCE]
4365
- - Improve and refactor attributes tests. [Louis LCE]
4366
- - Sb-signature library. [garanews]
4367
-
4368
- Created sb-signature library with relative example for testing.
4369
- Thanks @dadokkio
4370
- - Linting. [Kory Kyzar]
4371
- - Bug fix. [Kory Kyzar]
4372
- - Change in add_attachment. Allow explicit attachment naming. [Kory
4373
- Kyzar]
4374
- - Change in new_tag function. Added attributie 'hide_tag' [Armīns Palms]
4375
- - Change the comment of attribute. [Armīns Palms]
4376
- - Fix add_hashes test function parameters. [Louis LCE]
4377
- - Added misp object templates path argument. [Tobias Mainka]
4378
- - Update settings.default.py. [Andras Iklody]
4379
-
4380
-
4381
- v2.4.85.1 (2018-01-10)
4382
- ----------------------
4383
-
4384
- Changes
4385
- ~~~~~~~
4386
4376
  - Bump Changelog. [Raphaël Vinot]
4387
4377
  - Bump version. [Raphaël Vinot]
4388
4378
  - Bump misp-objects. [Raphaël Vinot]
@@ -4408,6 +4398,17 @@ Changes
4408
4398
 
4409
4399
  Fix
4410
4400
  ~~~
4401
+ - Only skip test for 3.0->3.5. [Raphaël Vinot]
4402
+ - Sys.api_version -> sys.version_info. [Raphaël Vinot]
4403
+ - Allow to pass value, UUID, or ID to a sighting. [Raphaël Vinot]
4404
+ - Do not use basicConfig in __init__ [Raphaël Vinot]
4405
+
4406
+ Fix #170
4407
+ - Add_hashes was broken. [Raphaël Vinot]
4408
+
4409
+ Fix #174
4410
+ - Make python2 happy. [Raphaël Vinot]
4411
+ - Download old samples was broken. [Raphaël Vinot]
4411
4412
  - Edited method works as expected, add tests. [Raphaël Vinot]
4412
4413
  - Forgotten test files in last commit... [Raphaël Vinot]
4413
4414
  - Disable_correlation from template not properly used. [Raphaël Vinot]
@@ -4425,6 +4426,31 @@ Fix
4425
4426
 
4426
4427
  Other
4427
4428
  ~~~~~
4429
+ - Revert "chg: Re-enable python3.4 on travis..." [Raphaël Vinot]
4430
+
4431
+ Lief doesn't support python 3.4
4432
+
4433
+ This reverts commit 35a8d92acecd7a313bedcf197539eaa82176bcc7.
4434
+ - Add: Allow to fetch warninglists. [Raphaël Vinot]
4435
+
4436
+ Fix #180
4437
+ - Add tag test. [Louis LCE]
4438
+ - Add a simple test for uploading samples. [Louis LCE]
4439
+ - Add warning when failing to import dependencies. [Louis LCE]
4440
+ - Improve and refactor attributes tests. [Louis LCE]
4441
+ - Sb-signature library. [garanews]
4442
+
4443
+ Created sb-signature library with relative example for testing.
4444
+ Thanks @dadokkio
4445
+ - Linting. [Kory Kyzar]
4446
+ - Bug fix. [Kory Kyzar]
4447
+ - Change in add_attachment. Allow explicit attachment naming. [Kory
4448
+ Kyzar]
4449
+ - Change in new_tag function. Added attributie 'hide_tag' [Armīns Palms]
4450
+ - Change the comment of attribute. [Armīns Palms]
4451
+ - Fix add_hashes test function parameters. [Louis LCE]
4452
+ - Added misp object templates path argument. [Tobias Mainka]
4453
+ - Update settings.default.py. [Andras Iklody]
4428
4454
  - Set_sightings. [AninaAntonie]
4429
4455
 
4430
4456
  Maybe I didn't use it correctly but the method set_sightings didn't work for me. It's working now but I'm not sure whether sending a request for every sighting in the list is the best solution.
@@ -4621,6 +4647,17 @@ Changes
4621
4647
  - Remove warning if PyMISP is too new. [Raphaël Vinot]
4622
4648
  - Add simple asciidoc generator for MISP event. [Raphaël Vinot]
4623
4649
  - Update changelog. [Raphaël Vinot]
4650
+ - Version bump. [Raphaël Vinot]
4651
+ - Update changelog. [Raphaël Vinot]
4652
+ - Bump version. [Raphaël Vinot]
4653
+ - Do not raise an exception when the object template is unknown.
4654
+ [Raphaël Vinot]
4655
+
4656
+ + bump misp-object
4657
+ - Bump misp-objects. [Raphaël Vinot]
4658
+ - Allow to hard delete an attribute by ID. [Raphaël Vinot]
4659
+ - Update comments. [Raphaël Vinot]
4660
+ - Bump misp-objects and describeTypes. [Raphaël Vinot]
4624
4661
 
4625
4662
  Fix
4626
4663
  ~~~
@@ -4642,6 +4679,17 @@ Fix
4642
4679
  fix #120
4643
4680
  - Properly pop the distribution key. [Raphaël Vinot]
4644
4681
  - Update dependencies for VT generator. [Raphaël Vinot]
4682
+ - Properly bundle object templates. [Raphaël Vinot]
4683
+ - Properly bundle object templates. [Raphaël Vinot]
4684
+ - Fix typos and logic mistakes in mispevent. [Raphaël Vinot]
4685
+ - Fix travis build. [Raphaël Vinot]
4686
+ - Min required version of setuptools. [Raphaël Vinot]
4687
+ - Improve dependencies listing. [Raphaël Vinot]
4688
+
4689
+ Partial fix for #110
4690
+ - Missing default category. [Raphaël Vinot]
4691
+
4692
+ Fix #119
4645
4693
 
4646
4694
  Other
4647
4695
  ~~~~~
@@ -4663,51 +4711,6 @@ Other
4663
4711
  python3 add_generic_object.py -e 1683 -t email -d '{"subject":"The Pink Letter", "to":"jon@snow.org"}'
4664
4712
  python3 add_generic_object.py -e 2343 -t person -d '{"first-name":"Daenerys", "last-name":"Targaryen", "place-of-birth":"Dragonstone"}'
4665
4713
  python3 add_generic_object.py -e 3596 -t "domain|ip" -d '{"domain":"stormborn.org", "ip":"50.63.202.33"}'
4666
-
4667
-
4668
- v2.4.81.2 (2017-10-24)
4669
- ----------------------
4670
-
4671
- Changes
4672
- ~~~~~~~
4673
- - Version bump. [Raphaël Vinot]
4674
- - Update changelog. [Raphaël Vinot]
4675
-
4676
- Fix
4677
- ~~~
4678
- - Properly bundle object templates. [Raphaël Vinot]
4679
-
4680
-
4681
- v2.4.81.1 (2017-10-24)
4682
- ----------------------
4683
-
4684
- Changes
4685
- ~~~~~~~
4686
- - Bump version. [Raphaël Vinot]
4687
- - Do not raise an exception when the object template is unknown.
4688
- [Raphaël Vinot]
4689
-
4690
- + bump misp-object
4691
- - Bump misp-objects. [Raphaël Vinot]
4692
- - Allow to hard delete an attribute by ID. [Raphaël Vinot]
4693
- - Update comments. [Raphaël Vinot]
4694
- - Bump misp-objects and describeTypes. [Raphaël Vinot]
4695
-
4696
- Fix
4697
- ~~~
4698
- - Properly bundle object templates. [Raphaël Vinot]
4699
- - Fix typos and logic mistakes in mispevent. [Raphaël Vinot]
4700
- - Fix travis build. [Raphaël Vinot]
4701
- - Min required version of setuptools. [Raphaël Vinot]
4702
- - Improve dependencies listing. [Raphaël Vinot]
4703
-
4704
- Partial fix for #110
4705
- - Missing default category. [Raphaël Vinot]
4706
-
4707
- Fix #119
4708
-
4709
- Other
4710
- ~~~~~
4711
4714
  - Update openioc.py. [Andras Iklody]
4712
4715
  - Added **kwargs to add_named_attribute call in add_attachment.
4713
4716
  [tssbo82]
@@ -4718,25 +4721,13 @@ Other
4718
4721
  v2.4.81 (2017-10-09)
4719
4722
  --------------------
4720
4723
 
4721
- Fix
4722
- ~~~
4723
- - Changelog config + update. [Raphaël Vinot]
4724
-
4725
- Other
4726
- ~~~~~
4727
- - Up: bump version. [Raphaël Vinot]
4728
- - Up: Bump misp-objects. [Raphaël Vinot]
4729
-
4730
-
4731
- v2.4.80.1 (2017-10-04)
4732
- ----------------------
4733
-
4734
4724
  Changes
4735
4725
  ~~~~~~~
4736
4726
  - Update changelog. [Raphaël Vinot]
4737
4727
 
4738
4728
  Fix
4739
4729
  ~~~
4730
+ - Changelog config + update. [Raphaël Vinot]
4740
4731
  - Change readme. [Raphaël Vinot]
4741
4732
  - Create file object. [Raphaël Vinot]
4742
4733
 
@@ -4747,6 +4738,8 @@ Fix
4747
4738
 
4748
4739
  Other
4749
4740
  ~~~~~
4741
+ - Up: bump version. [Raphaël Vinot]
4742
+ - Up: Bump misp-objects. [Raphaël Vinot]
4750
4743
  - Up: Version bump. [Raphaël Vinot]
4751
4744
  - Up: Bump misp-objects & describeTypes. [Raphaël Vinot]
4752
4745
  - Update readme. [Raphaël Vinot]
@@ -5107,14 +5100,6 @@ Other
5107
5100
 
5108
5101
  v2.4.63 (2017-01-31)
5109
5102
  --------------------
5110
- - Version bump. [Raphaël Vinot]
5111
- - Fix regression. [Raphaël Vinot]
5112
-
5113
- Fix #46
5114
-
5115
-
5116
- v2.4.62.1 (2017-01-27)
5117
- ----------------------
5118
5103
 
5119
5104
  Changes
5120
5105
  ~~~~~~~
@@ -5123,6 +5108,10 @@ Changes
5123
5108
  Other
5124
5109
  ~~~~~
5125
5110
  - Version bump. [Raphaël Vinot]
5111
+ - Fix regression. [Raphaël Vinot]
5112
+
5113
+ Fix #46
5114
+ - Version bump. [Raphaël Vinot]
5126
5115
  - Fix testing. [Raphaël Vinot]
5127
5116
  - Bug fixes. [Raphaël Vinot]
5128
5117
 
@@ -5300,10 +5289,6 @@ v2.4.53 (2016-10-21)
5300
5289
  - First batch of changes, will be squashed. [Raphaël Vinot]
5301
5290
  - Fixed search_index. [Hannah Ward]
5302
5291
  - Toggle flag instead of value. [Alexandre Dulaunoy]
5303
-
5304
-
5305
- v2.4.51.1 (2016-09-12)
5306
- ----------------------
5307
5292
  - Version bump. [Raphaël Vinot]
5308
5293
  - Fix examples after removal of MISP XML support. [Raphaël Vinot]
5309
5294
  - Add some examples. [Déborah Servili]
@@ -5404,16 +5389,12 @@ v2.4.49 (2016-08-02)
5404
5389
  examples/treemap/treemap.py. [Deborah Servili]
5405
5390
  - Move files from examples/treemap to examples/situational-awareness/
5406
5391
  [Déborah Servili]
5407
- - Rename examples/treemap/treemap.py to
5408
- examples/statistics/attribute_treemap.py. [Deborah Servili]
5409
-
5410
-
5411
- v2.4.48.2 (2016-07-11)
5412
- ----------------------
5413
5392
  - Version bump. [Raphaël Vinot]
5414
5393
  - Add remove tag method. [Raphaël Vinot]
5415
5394
  - Use same variable names as testing environment. [Raphaël Vinot]
5416
5395
  - Make scripts executable. [Raphaël Vinot]
5396
+ - Rename examples/treemap/treemap.py to
5397
+ examples/statistics/attribute_treemap.py. [Deborah Servili]
5417
5398
  - Random names for dummy files. [Déborah Servili]
5418
5399
  - Add examples "create_dummy_event" and "create_massive_dummy_events"
5419
5400
  [Déborah Servili]
@@ -5425,10 +5406,6 @@ v2.4.48.2 (2016-07-11)
5425
5406
  - Fix python3 compat. Make Pep8 happy. [Raphaël Vinot]
5426
5407
  - Make pep8 happy. [Raphaël Vinot]
5427
5408
  - Comment removed. [Alexandre Dulaunoy]
5428
-
5429
-
5430
- v2.4.48.1 (2016-06-15)
5431
- ----------------------
5432
5409
  - Fix check MISP latest version. [Raphaël Vinot]
5433
5410
  - Add tag script. [Raphaël Vinot]
5434
5411
  - Make pep8 happy. [Raphaël Vinot]
@@ -5536,18 +5513,6 @@ v2.4.36 (2016-04-15)
5536
5513
  - Fixed a typo causing the tests to fail. [iglocska]
5537
5514
  - README updated including keys.py usage. [Alexandre Dulaunoy]
5538
5515
  - Authentication parameters updated. [Alexandre Dulaunoy]
5539
- - Auth parameters updated. [Alexandre Dulaunoy]
5540
- - Updated auth parameters. [Alexandre Dulaunoy]
5541
- - Normalized auth parameters. [Alexandre Dulaunoy]
5542
- - Normalized auth parameters. [Alexandre Dulaunoy]
5543
- - Sample keys file added. [Alexandre Dulaunoy]
5544
- - Normalized auth parameters. [Alexandre Dulaunoy]
5545
- - Normalized auth parameters. [Alexandre Dulaunoy]
5546
- - Auth parameters normalized. [Alexandre Dulaunoy]
5547
-
5548
-
5549
- v2.1.1 (2015-11-05)
5550
- -------------------
5551
5516
  - Add add_ipsrc. [Raphaël Vinot]
5552
5517
  - Add basic support for the proposal API. [Raphaël Vinot]
5553
5518
  - Whitespace cleaned. [grolinet]
@@ -5556,11 +5521,15 @@ v2.1.1 (2015-11-05)
5556
5521
  - Missing types added. [unknown]
5557
5522
  - Missing types added. [unknown]
5558
5523
  - [UnitTest] Add some functions, testing. [Raphaël Vinot]
5524
+ - Auth parameters updated. [Alexandre Dulaunoy]
5525
+ - Updated auth parameters. [Alexandre Dulaunoy]
5526
+ - Normalized auth parameters. [Alexandre Dulaunoy]
5527
+ - Normalized auth parameters. [Alexandre Dulaunoy]
5528
+ - Sample keys file added. [Alexandre Dulaunoy]
5529
+ - Normalized auth parameters. [Alexandre Dulaunoy]
5530
+ - Normalized auth parameters. [Alexandre Dulaunoy]
5531
+ - Auth parameters normalized. [Alexandre Dulaunoy]
5559
5532
  - Improve error handling. [Raphaël Vinot]
5560
-
5561
-
5562
- v2.0.1 (2015-09-22)
5563
- -------------------
5564
5533
  - Add test cases (initial) [Raphaël Vinot]
5565
5534
  - Fix typo in categories names. [Raphaël Vinot]
5566
5535
  - Check the MISP instance to query is valid. [Raphaël Vinot]
@@ -5573,15 +5542,7 @@ v2.0.1 (2015-09-22)
5573
5542
  - Add methods to query the version of MISP (master and local) [Raphaël
5574
5543
  Vinot]
5575
5544
  - Add publish method. [Raphaël Vinot]
5576
-
5577
-
5578
- v1.8.2 (2015-09-12)
5579
- -------------------
5580
5545
  - Try to convert event ID to integer if not None. [Raphaël Vinot]
5581
-
5582
-
5583
- v1.8.1 (2015-09-12)
5584
- -------------------
5585
5546
  - Fix bug in download sample function. [Raphaël Vinot]
5586
5547
 
5587
5548
  Thanks to @kevthehermit
@@ -5613,10 +5574,6 @@ v1.8.1 (2015-09-12)
5613
5574
  - Fix last commit. [Raphaël Vinot]
5614
5575
  - Initial changes to increase flexibility for Viper module. [Raphaël
5615
5576
  Vinot]
5616
-
5617
-
5618
- v1.1.2 (2015-08-05)
5619
- -------------------
5620
5577
  - Fix PyPi package. [Raphaël Vinot]
5621
5578
  - Add netflow filter output. [Koen Van Impe]
5622
5579