pymisp 2.5.2.dev1__tar.gz → 2.5.32__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.
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/CHANGELOG.txt +758 -767
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/PKG-INFO +27 -31
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/README.md +2 -3
- pymisp-2.5.32/docs/source/MISP-pymisp-hori-color.png +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/source/conf.py +2 -7
- pymisp-2.5.32/docs/source/tools.rst +101 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_attributes_from_csv.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_fail2ban_object.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_feed.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_filetype_object_from_csv.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_generic_object.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_named_attribute.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_organisations.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_ssh_authorized_keys.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_user.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/cache_all.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/create_events.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/cytomic_orion.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/del.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/delete_user.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/edit_organisation.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/edit_user.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/falsepositive_disabletoids.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/fetch_events_feed.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/freetext.py +1 -1
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/get.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/get_csv.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/last.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/proofpoint_tap.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/proofpoint_vap.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/sharing_groups.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/show_sightings.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/stats_report.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/tags.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/up.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/upload.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/users_list.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/vmray_automation.py +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/__init__.py +1 -1
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/abstract.py +1 -1
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/api.py +84 -13
- pymisp-2.5.32/pymisp/data/describeTypes.json +1502 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/administrative-decision/definition.json +58 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/android-app/definition.json +8 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/asn/definition.json +11 -1
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/coin-address/definition.json +38 -19
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cryptocurrency-transaction/definition.json +37 -18
- pymisp-2.5.32/pymisp/data/misp-objects/objects/detection/definition.json +300 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/device/definition.json +12 -1
- {pymisp-2.5.2.dev1/pymisp/data/misp-objects/objects/flowintel-cm-case → pymisp-2.5.32/pymisp/data/misp-objects/objects/flowintel-case}/definition.json +11 -4
- {pymisp-2.5.2.dev1/pymisp/data/misp-objects/objects/flowintel-cm-task → pymisp-2.5.32/pymisp/data/misp-objects/objects/flowintel-task}/definition.json +11 -4
- {pymisp-2.5.2.dev1/pymisp/data/misp-objects/objects/flowintel-cm-task-note → pymisp-2.5.32/pymisp/data/misp-objects/objects/flowintel-task-note}/definition.json +11 -4
- pymisp-2.5.32/pymisp/data/misp-objects/objects/flowintel-task-resource/definition.json +42 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/github-action/definition.json +59 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/github-repo/definition.json +142 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/google-account/definition.json +116 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/greynoise-ip/definition.json +56 -8
- pymisp-2.5.32/pymisp/data/misp-objects/objects/instagram-account/definition.json +66 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ip-port/definition.json +6 -1
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/lnk/definition.json +13 -1
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/network-connection/definition.json +1 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/network-data/definition.json +167 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/opentide/definition.json +24 -7
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/original-imported-file/definition.json +1 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/phone/definition.json +2 -1
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/query/definition.json +4 -2
- pymisp-2.5.32/pymisp/data/misp-objects/objects/rmm/definition.json +88 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/shadowserver-beacon-ttl-report/definition.json +110 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/shadowserver-beacon-url-overlap/definition.json +83 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/sigma/definition.json +2 -2
- pymisp-2.5.32/pymisp/data/misp-objects/objects/spambee-report/definition.json +54 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/spearphishing-campaign/definition.json +94 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/summariser-output/definition.json +90 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/taranis-news-item/definition.json +66 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/taranis-story/definition.json +52 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/target-system/definition.json +2 -2
- pymisp-2.5.32/pymisp/data/misp-objects/objects/trusted-timestamp/definition.json +74 -0
- pymisp-2.5.32/pymisp/data/misp-objects/objects/uav/definition.json +201 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/vehicle/definition.json +5 -5
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/vulnerability/definition.json +18 -5
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/yara/definition.json +2 -2
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/relationships/definition.json +17 -1
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/schema_objects.json +2 -1
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/mispevent.py +163 -51
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/create_misp_object.py +5 -6
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/elfobject.py +3 -3
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/emailobject.py +97 -40
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/fileobject.py +6 -3
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/machoobject.py +3 -3
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/peobject.py +4 -4
- pymisp-2.5.32/pymisp/tools/urlobject.py +83 -0
- pymisp-2.5.32/pyproject.toml +92 -0
- pymisp-2.5.32/tests/email_testfiles/mail_1.msg.zip +0 -0
- pymisp-2.5.32/tests/test_analyst_data.py +123 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/test_emailobject.py +7 -3
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/test_mispevent.py +23 -23
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/testlive_comprehensive.py +1 -0
- pymisp-2.5.2.dev1/docs/source/tools.rst +0 -69
- pymisp-2.5.2.dev1/examples/admin/setup_sync.py +0 -40
- pymisp-2.5.2.dev1/examples/climate/scrippsco2.py +0 -493
- pymisp-2.5.2.dev1/examples/covid19/import_csse_covid19_daily.py +0 -152
- pymisp-2.5.2.dev1/examples/covid19/import_dxy_covid19_live.py +0 -77
- pymisp-2.5.2.dev1/examples/events/README.md +0 -53
- pymisp-2.5.2.dev1/examples/events/create_dummy_event.py +0 -23
- pymisp-2.5.2.dev1/examples/events/create_massive_dummy_events.py +0 -31
- pymisp-2.5.2.dev1/examples/events/dummy +0 -21
- pymisp-2.5.2.dev1/examples/events/tools.py +0 -71
- pymisp-2.5.2.dev1/examples/feed-generator/README.md +0 -30
- pymisp-2.5.2.dev1/examples/feed-generator/generate.py +0 -106
- pymisp-2.5.2.dev1/examples/feed-generator/output/empty +0 -0
- pymisp-2.5.2.dev1/examples/feed-generator/settings.default.py +0 -56
- pymisp-2.5.2.dev1/examples/feed-generator-from-redis/MISPItemToRedis.py +0 -90
- pymisp-2.5.2.dev1/examples/feed-generator-from-redis/ObjectConstructor/CowrieMISPObject.py +0 -33
- pymisp-2.5.2.dev1/examples/feed-generator-from-redis/README.md +0 -90
- pymisp-2.5.2.dev1/examples/feed-generator-from-redis/fromredis.py +0 -160
- pymisp-2.5.2.dev1/examples/feed-generator-from-redis/generator.py +0 -267
- pymisp-2.5.2.dev1/examples/feed-generator-from-redis/install.sh +0 -4
- pymisp-2.5.2.dev1/examples/feed-generator-from-redis/server.py +0 -12
- pymisp-2.5.2.dev1/examples/feed-generator-from-redis/settings.default.py +0 -63
- pymisp-2.5.2.dev1/examples/freetext.txt +0 -5
- pymisp-2.5.2.dev1/examples/get_network_activity.event_id +0 -4
- pymisp-2.5.2.dev1/examples/graphdb/make_neo4j.py +0 -45
- pymisp-2.5.2.dev1/examples/ioc_2_misp/README.md +0 -25
- pymisp-2.5.2.dev1/examples/ioc_2_misp/ioc2misp.py +0 -337
- pymisp-2.5.2.dev1/examples/ioc_2_misp/keys.py.sample +0 -94
- pymisp-2.5.2.dev1/examples/ioc_2_misp/taxonomy.csv +0 -12
- pymisp-2.5.2.dev1/examples/keys.py.sample +0 -9
- pymisp-2.5.2.dev1/examples/profiles/daily_report.py +0 -37
- pymisp-2.5.2.dev1/examples/profiles/weekly_report.py +0 -33
- pymisp-2.5.2.dev1/examples/sighting.json +0 -2
- pymisp-2.5.2.dev1/examples/situational_awareness/README.md +0 -38
- pymisp-2.5.2.dev1/examples/situational_awareness/__init__.py +0 -0
- pymisp-2.5.2.dev1/examples/situational_awareness/attribute_treemap.py +0 -31
- pymisp-2.5.2.dev1/examples/situational_awareness/bokeh_tools.py +0 -33
- pymisp-2.5.2.dev1/examples/situational_awareness/date_tools.py +0 -70
- pymisp-2.5.2.dev1/examples/situational_awareness/pygal_tools.py +0 -54
- pymisp-2.5.2.dev1/examples/situational_awareness/style.css +0 -50
- pymisp-2.5.2.dev1/examples/situational_awareness/style2.css +0 -41
- pymisp-2.5.2.dev1/examples/situational_awareness/tag_scatter.py +0 -71
- pymisp-2.5.2.dev1/examples/situational_awareness/tag_search.py +0 -70
- pymisp-2.5.2.dev1/examples/situational_awareness/tags_count.py +0 -64
- pymisp-2.5.2.dev1/examples/situational_awareness/tags_to_graphs.py +0 -96
- pymisp-2.5.2.dev1/examples/situational_awareness/test_attribute_treemap.html +0 -25
- pymisp-2.5.2.dev1/examples/situational_awareness/tools.py +0 -390
- pymisp-2.5.2.dev1/examples/suricata_search/README.md +0 -3
- pymisp-2.5.2.dev1/examples/trustar.conf +0 -14
- pymisp-2.5.2.dev1/examples/user_sample.json +0 -6
- pymisp-2.5.2.dev1/pymisp/data/describeTypes.json +0 -1496
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/.git +0 -1
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/.gitchangelog.rc +0 -289
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/.github/workflows/codeql.yml +0 -41
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/.github/workflows/nosetests.yml +0 -39
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/.travis.yml +0 -16
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/LICENSE-software-only.md +0 -661
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/LICENSE.md +0 -36
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/README.md +0 -566
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/docs/time-related-objects.ods +0 -0
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/docs/time-related-objects.pdf +0 -0
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/jq_all_the_things.sh +0 -29
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/tools/adoc_objects.py +0 -145
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/tools/alfred_links_to_relarelationships.py +0 -48
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/tools/list_of_objects.py +0 -50
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/tools/updated.sh +0 -6
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/tools/validate_opposites.sh +0 -17
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/unique_uuid.py +0 -16
- pymisp-2.5.2.dev1/pymisp/data/misp-objects/validate_all.sh +0 -38
- pymisp-2.5.2.dev1/pymisp/tools/urlobject.py +0 -59
- pymisp-2.5.2.dev1/pyproject.toml +0 -96
- pymisp-2.5.2.dev1/tests/__init__.py +0 -0
- pymisp-2.5.2.dev1/tests/email_testfiles/mail_1.msg +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/LICENSE +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/Makefile +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/PDF-export/ExportPDF.png +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/PDF-export/Internationalization_parameters.png +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/PDF-export/Internationalization_path.png +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/PDF-export/Parameters.png +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/PDF-export/README.MD +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/source/index.rst +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/source/modules.rst +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/tutorial/FullOverview.ipynb +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/tutorial/Search-FullOverview.ipynb +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/tutorial/a.7-rest-api-extensive-restsearch.ipynb +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/tutorial/install_notebook.sh +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/tutorial/old/PyMISP_tutorial.ipynb +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/tutorial/old/Search.ipynb +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/docs/tutorial/old/Usage-NG.ipynb +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/__init__.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_email_object.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_file_object.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_github_user.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_gitlab_user.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/add_vehicle_object.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/addtag2.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/asciidoc_generator.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/copyTagsFromAttributesToEvent.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/copy_list.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/fetch_warninglist_hits.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/generate_file_objects.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/generate_meta_feed.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/get_network_activity.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/load_csv.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/lookup.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/misp2cef.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/misp2clamav.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/openioc_to_misp.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/search.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/search_attributes_yara.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/search_sighting.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/server_sync_check_conn.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/sync_sighting.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/test_sign.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/trustar_misp.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/vt_to_misp.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/warninglists.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/yara.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/examples/yara_dump.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ADS/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/abuseipdb/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ai-chat-prompt/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ail-leak/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ais/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ais-info/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/android-permission/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/annotation/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/anonymisation/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/apivoid-email-verification/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/artifact/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/attack-pattern/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/attack-step/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/attacker-infra/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/authentication-failure-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/authenticode-signerinfo/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/av-signature/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/availability-impact/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/bank-account/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/bgp-hijack/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/bgp-ranking/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/blog/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/boleto/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/btc-transaction/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/btc-wallet/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/c2-list/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cap-alert/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cap-info/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cap-resource/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cert-pl-phishing/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cloth/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/command/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/command-line/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/concordia-mtmf-intrusion-set/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/confidentiality-impact/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cookie/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cortex/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cortex-taxonomy/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/course-of-action/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/covid19-csse-daily-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/covid19-dxy-live-city/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/covid19-dxy-live-province/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cowrie/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cpe-asset/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/credential/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/credit-card/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/crowdsec-ip-context/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/crowdstrike-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/crypto-material/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cs-beacon-config/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ctf-challenge/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cytomic-orion-file/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/cytomic-orion-machine/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/dark-pattern-item/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ddos/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ddos-claim/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ddos-config/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/diameter-attack/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/diamond/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/directory/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/dkim/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/dns-record/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/dom-hash/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/domain-crawled/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/domain-ip/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/edr-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/elf/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/elf-section/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/email/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/employee/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/error-message/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/event/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/exploit/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/exploit-poc/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/external-impact/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/facebook-account/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/facebook-group/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/facebook-page/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/facebook-post/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/facebook-reaction/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/facial-composite/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/fail2ban/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/favicon/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/file/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/forensic-case/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/forensic-evidence/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/forged-document/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Airplane/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Assessment/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Asset/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Associate/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Audio/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-BankAccount/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Call/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Company/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Contract/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-ContractAward/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-CourtCase/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-CourtCaseParty/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Debt/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Directorship/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Document/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Documentation/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-EconomicActivity/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Email/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Event/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Family/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Folder/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-HyperText/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Image/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Land/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-LegalEntity/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-License/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Membership/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Message/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Organization/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Ownership/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Package/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Page/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Pages/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Passport/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Payment/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Person/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-PlainText/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-PublicBody/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-RealEstate/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Representation/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Row/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Sanction/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Succession/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Table/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-TaxRoll/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-UnknownLink/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-UserAccount/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Vehicle/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Vessel/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Video/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ftm-Workbook/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/game-cheat/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/generalizing-persuasion-framework/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/geolocation/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/git-vuln-finder/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/github-user/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/gitlab-user/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/google-safe-browsing/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/google-threat-intelligence-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/gtp-attack/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/hashlookup/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/hhhash/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/http-request/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/identity/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ilr-impact/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ilr-notification-incident/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/image/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/impersonation/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/imsi-catcher/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/incident/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/infrastructure/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/instant-message/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/instant-message-group/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/integrity-impact/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/intel471-vulnerability-intelligence/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/intelmq_event/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/intelmq_report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/internal-reference/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/interpol-notice/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/intrusion-set/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/iot-device/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/iot-firmware/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ip-api-address/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/irc/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ja3/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ja3s/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ja4-plus/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/jarm/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/keybase-account/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/language-content/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/leaked-document/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/legal-entity/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/macho/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/macho-section/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/mactime-timeline-analysis/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/malware/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/malware-analysis/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/malware-config/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/meme-image/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/microblog/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/monetary-impact/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/mutex/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/narrative/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/netflow/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/network-profile/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/network-socket/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/network-traffic/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/news-agency/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/news-media/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/open-data-security/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/organization/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/paloalto-threat-event/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/parler-account/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/parler-comment/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/parler-post/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/passive-dns/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/passive-dns-dnsdbflex/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/passive-ssh/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/paste/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/pcap-metadata/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/pe/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/pe-optional-header/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/pe-section/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/persnona/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/person/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/personification/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/pgp-meta/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/phishing/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/phishing-kit/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/phone-number/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/physical-impact/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/postal-address/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/probabilistic-data-structure/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/process/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/publication/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/python-etvx-event-log/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/r2graphity/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ransom-negotiation/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ransomware-group-post/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/reddit-account/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/reddit-comment/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/reddit-post/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/reddit-subreddit/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regexp/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/registry-key/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/registry-key-value/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-NTUser/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-sam-hive-single-user/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-sam-hive-user-group/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-software-hive-BHO/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-software-hive-appInit-DLLS/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-software-hive-application-paths/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-software-hive-applications-installed/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-software-hive-command-shell/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-software-hive-software-run/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-software-hive-userprofile-winlogon/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-software-hive-windows-general-info/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-system-hive-firewall-configuration/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-system-hive-general-configuration/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-system-hive-network-information/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/regripper-system-hive-services-drivers/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/research-scanner/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/risk-assessment-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/rogue-dns/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/rtir/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/sandbox-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/sb-signature/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/scan-result/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/scheduled-event/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/scheduled-task/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/scrippsco2-c13-daily/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/scrippsco2-c13-monthly/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/scrippsco2-co2-daily/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/scrippsco2-co2-monthly/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/scrippsco2-o18-daily/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/scrippsco2-o18-monthly/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/script/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/security-playbook/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/shadowserver-malware-url-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/shadowserver-scan-http-proxy/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/shell-commands/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/shodan-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/short-message-service/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/shortened-link/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/sigmf-archive/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/sigmf-expanded-recording/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/sigmf-recording/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/social-media-group/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/software/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/spearphishing-attachment/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/spearphishing-link/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/splunk/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ss7-attack/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/ssh-authorized-keys/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/stairwell/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/stix2-pattern/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/stock/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/submarine/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/suricata/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/task/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tattoo/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/telegram-account/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/telegram-bot/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/temporal-event/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/thaicert-group-cards/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/threatgrid-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/timecode/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/timesketch-timeline/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/timesketch_message/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/timestamp/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tor-hiddenservice/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tor-node/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/traceability-impact/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tracking-id/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/transaction/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/translation/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/transport-ticket/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/trustar_report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tsk-chats/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tsk-web-bookmark/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tsk-web-cookie/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tsk-web-downloads/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tsk-web-history/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/tsk-web-search-query/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/twitter-account/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/twitter-list/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/twitter-post/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/typosquatting-finder/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/typosquatting-finder-result/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/url/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/user-account/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/user-action/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/victim/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/virustotal-graph/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/virustotal-report/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/virustotal-submission/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/weakness/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/whois/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/windows-service/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/x-header/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/x509/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/yabin/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/youtube-channel/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/youtube-comment/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/youtube-playlist/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/objects/youtube-video/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/misp-objects/schema_relationships.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/schema-lax.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/data/schema.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/exceptions.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/py.typed +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/__init__.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/_psl_faup.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/abstractgenerator.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/asnobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/csvloader.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/domainipobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/ext_lookups.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/fail2banobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/feed.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/genericgenerator.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/geolocationobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/git_vuln_finder_object.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/load_warninglists.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/microblogobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/neo4j.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/openioc.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/reportlab_generator.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/sbsignatureobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/sshauthkeyobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/update_objects.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/vehicleobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/pymisp/tools/vtreportobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/57c4445b-c548-4654-af0b-4be3950d210f.json +0 -0
- {pymisp-2.5.2.dev1/examples/profiles → pymisp-2.5.32/tests}/__init__.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/csv_testfiles/invalid_fieldnames.csv +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/csv_testfiles/valid_fieldnames.csv +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/mail_1.eml.zip +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/mail_1_bom.eml +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/mail_1_headers_only.eml +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/mail_2.eml +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/mail_3.eml +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/mail_3.msg +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/mail_4.msg +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/mail_5.msg +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/mail_multiple_to.eml +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/email_testfiles/source +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/git-vuln-finder-quagga.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/misp_event.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/attribute.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/attribute_del.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/def_param.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/event.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/event_obj_attr_tag.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/event_obj_def_param.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/event_obj_tag.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/event_tags.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/existing_event.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/existing_event_edited.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/galaxy.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/malware.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/malware_exist.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/misp_custom_obj.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/overwrite_file/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/proposals.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/shadow.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/sighting.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/simple.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/mispevent_testfiles/test_object_template/definition.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/new_misp_event.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/HTML_event.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/galaxy_1.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/image_event.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/japanese_test.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/japanese_test_heavy.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/long_event.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/mainly_objects_1.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/mainly_objects_2.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/sighting_1.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/sighting_2.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/to_delete1.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/to_delete2.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/to_delete3.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testfiles/very_long_event.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testoutputs/to_delete1.json.pdf +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testoutputs/to_delete2.json.pdf +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/reportlab_testoutputs/to_delete3.json.pdf +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/search_index_result.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/sharing_groups.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/stix1.xml-utf8 +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/stix2.json +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/test_fileobject.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/test_reportlab.py +0 -0
- {pymisp-2.5.2.dev1 → pymisp-2.5.32}/tests/testlive_sync.py +0 -0
|
@@ -2,6 +2,454 @@ Changelog
|
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
v2.5.32 (2026-01-14)
|
|
6
|
+
--------------------
|
|
7
|
+
|
|
8
|
+
New
|
|
9
|
+
~~~
|
|
10
|
+
- Add missing workers endpoints. [Raphaël Vinot]
|
|
11
|
+
|
|
12
|
+
Fix #1372
|
|
13
|
+
- Add logo. [Raphaël Vinot]
|
|
14
|
+
|
|
15
|
+
Changes
|
|
16
|
+
~~~~~~~
|
|
17
|
+
- Bump deps, version. [Raphaël Vinot]
|
|
18
|
+
- Bump doc. [Raphaël Vinot]
|
|
19
|
+
- Remove outdated dep. [Raphaël Vinot]
|
|
20
|
+
- Bump deps. [Raphaël Vinot]
|
|
21
|
+
- [poetry] Bumped latest lock file with minimum python version >= 3.10.
|
|
22
|
+
[Christian Studer]
|
|
23
|
+
- Bump changelog, one last time. [Raphaël Vinot]
|
|
24
|
+
- Setting new minimum python version to 3.10. [Christian Studer]
|
|
25
|
+
|
|
26
|
+
Fix
|
|
27
|
+
~~~
|
|
28
|
+
- Revert bump to sphinx 9. [Raphaël Vinot]
|
|
29
|
+
- [actions] Changed python versions to align with the currently
|
|
30
|
+
supported ones. [Christian Studer]
|
|
31
|
+
|
|
32
|
+
Other
|
|
33
|
+
~~~~~
|
|
34
|
+
- Chg; Bump deps. [Raphaël Vinot]
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
v2.5.17.3 (2025-11-25)
|
|
38
|
+
----------------------
|
|
39
|
+
|
|
40
|
+
New
|
|
41
|
+
~~~
|
|
42
|
+
- Improve doc for CSV loader. [Raphaël Vinot]
|
|
43
|
+
|
|
44
|
+
Changes
|
|
45
|
+
~~~~~~~
|
|
46
|
+
- Bump changelog, again. [Raphaël Vinot]
|
|
47
|
+
- Bump changelog. [Raphaël Vinot]
|
|
48
|
+
- Bump version. [Raphaël Vinot]
|
|
49
|
+
- Use pure-magic-rs. [Raphaël Vinot]
|
|
50
|
+
- [describeTypes] updated to the latest version. [Alexandre Dulaunoy]
|
|
51
|
+
- Bump deps. [Raphaël Vinot]
|
|
52
|
+
- Bump deps, really. [Raphaël Vinot]
|
|
53
|
+
- Bump deps. [Raphaël Vinot]
|
|
54
|
+
- Quick cleanup. [Raphaël Vinot]
|
|
55
|
+
- Optionally use faup-rs for URL parsing. [Raphaël Vinot]
|
|
56
|
+
|
|
57
|
+
Fix
|
|
58
|
+
~~~
|
|
59
|
+
- Call order & typo in magic call. [Raphaël Vinot]
|
|
60
|
+
- [tools:emailobject] Gracefully handle case where getStringStream
|
|
61
|
+
cannot find the requested stream. [Sami Mokaddem]
|
|
62
|
+
- [tools-emailobject] Circuvent crashes when dealing with ms-tnef
|
|
63
|
+
messages. [Sami Mokaddem]
|
|
64
|
+
- Properly use pyfaup-rs. [Raphaël Vinot]
|
|
65
|
+
|
|
66
|
+
Other
|
|
67
|
+
~~~~~
|
|
68
|
+
- Build(deps): bump actions/checkout from 5 to 6. [dependabot[bot]]
|
|
69
|
+
|
|
70
|
+
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
|
|
71
|
+
- [Release notes](https://github.com/actions/checkout/releases)
|
|
72
|
+
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
|
|
73
|
+
- [Commits](https://github.com/actions/checkout/compare/v5...v6)
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
updated-dependencies:
|
|
77
|
+
- dependency-name: actions/checkout
|
|
78
|
+
dependency-version: '6'
|
|
79
|
+
dependency-type: direct:production
|
|
80
|
+
update-type: version-update:semver-major
|
|
81
|
+
...
|
|
82
|
+
- Build(deps): bump github/codeql-action from 3 to 4. [dependabot[bot]]
|
|
83
|
+
|
|
84
|
+
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3 to 4.
|
|
85
|
+
- [Release notes](https://github.com/github/codeql-action/releases)
|
|
86
|
+
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
|
|
87
|
+
- [Commits](https://github.com/github/codeql-action/compare/v3...v4)
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
updated-dependencies:
|
|
91
|
+
- dependency-name: github/codeql-action
|
|
92
|
+
dependency-version: '4'
|
|
93
|
+
dependency-type: direct:production
|
|
94
|
+
update-type: version-update:semver-major
|
|
95
|
+
...
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
v2.5.17.2 (2025-09-24)
|
|
99
|
+
----------------------
|
|
100
|
+
|
|
101
|
+
Changes
|
|
102
|
+
~~~~~~~
|
|
103
|
+
- Bump deps, objects. [Raphaël Vinot]
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
v2.5.17.1 (2025-09-15)
|
|
107
|
+
----------------------
|
|
108
|
+
|
|
109
|
+
Changes
|
|
110
|
+
~~~~~~~
|
|
111
|
+
- Bump version. [Raphaël Vinot]
|
|
112
|
+
- Bump lief, fix code to support new release. [Raphaël Vinot]
|
|
113
|
+
|
|
114
|
+
Fix #1352
|
|
115
|
+
- Bump deps. [Raphaël Vinot]
|
|
116
|
+
|
|
117
|
+
Fix
|
|
118
|
+
~~~
|
|
119
|
+
- Properly support lief 0.17. [Raphaël Vinot]
|
|
120
|
+
|
|
121
|
+
Other
|
|
122
|
+
~~~~~
|
|
123
|
+
- Build(deps): bump actions/setup-python from 5 to 6. [dependabot[bot]]
|
|
124
|
+
|
|
125
|
+
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6.
|
|
126
|
+
- [Release notes](https://github.com/actions/setup-python/releases)
|
|
127
|
+
- [Commits](https://github.com/actions/setup-python/compare/v5...v6)
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
updated-dependencies:
|
|
131
|
+
- dependency-name: actions/setup-python
|
|
132
|
+
dependency-version: '6'
|
|
133
|
+
dependency-type: direct:production
|
|
134
|
+
update-type: version-update:semver-major
|
|
135
|
+
...
|
|
136
|
+
- Build(deps): bump actions/checkout from 4 to 5. [dependabot[bot]]
|
|
137
|
+
|
|
138
|
+
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
|
|
139
|
+
- [Release notes](https://github.com/actions/checkout/releases)
|
|
140
|
+
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
|
|
141
|
+
- [Commits](https://github.com/actions/checkout/compare/v4...v5)
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
updated-dependencies:
|
|
145
|
+
- dependency-name: actions/checkout
|
|
146
|
+
dependency-version: '5'
|
|
147
|
+
dependency-type: direct:production
|
|
148
|
+
update-type: version-update:semver-major
|
|
149
|
+
...
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
v2.5.17 (2025-08-04)
|
|
153
|
+
--------------------
|
|
154
|
+
|
|
155
|
+
Changes
|
|
156
|
+
~~~~~~~
|
|
157
|
+
- Bump deps, version. [Raphaël Vinot]
|
|
158
|
+
- Bump deps. [Raphaël Vinot]
|
|
159
|
+
- Expose missing exception. [Raphaël Vinot]
|
|
160
|
+
- Add missing optional value in MISPAttribute. [Raphaël Vinot]
|
|
161
|
+
- Bump deps. [Raphaël Vinot]
|
|
162
|
+
- Bump deps. [Raphaël Vinot]
|
|
163
|
+
|
|
164
|
+
Fix
|
|
165
|
+
~~~
|
|
166
|
+
- Exception when a first/last seen is invalid. [Raphaël Vinot]
|
|
167
|
+
|
|
168
|
+
Fix #1330
|
|
169
|
+
|
|
170
|
+
Other
|
|
171
|
+
~~~~~
|
|
172
|
+
- Revert "chg: Add missing optional value in MISPAttribute" [Raphaël
|
|
173
|
+
Vinot]
|
|
174
|
+
|
|
175
|
+
This reverts commit 0e241b481c74246765f877d665e0064bb5cac99f.
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
v2.5.12 (2025-05-13)
|
|
179
|
+
--------------------
|
|
180
|
+
|
|
181
|
+
Changes
|
|
182
|
+
~~~~~~~
|
|
183
|
+
- Bump version. [Raphaël Vinot]
|
|
184
|
+
- Bump deps. [Raphaël Vinot]
|
|
185
|
+
- Bump changelog. [Raphaël Vinot]
|
|
186
|
+
|
|
187
|
+
Fix
|
|
188
|
+
~~~
|
|
189
|
+
- Incorrect calls in to_feed. [Raphaël Vinot]
|
|
190
|
+
|
|
191
|
+
Other
|
|
192
|
+
~~~~~
|
|
193
|
+
- Chg; Bump changelog. [Raphaël Vinot]
|
|
194
|
+
- Replace deprecated ExpandedPyMISP with PyMISP. [Jure Sah]
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
v2.5.10 (2025-04-04)
|
|
198
|
+
--------------------
|
|
199
|
+
|
|
200
|
+
Changes
|
|
201
|
+
~~~~~~~
|
|
202
|
+
- Bump deps, templates. [Raphaël Vinot]
|
|
203
|
+
|
|
204
|
+
Fix
|
|
205
|
+
~~~
|
|
206
|
+
- Missing attribute in object should not be a warning (way too noisy)
|
|
207
|
+
[Raphaël Vinot]
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
v2.5.9 (2025-03-26)
|
|
211
|
+
-------------------
|
|
212
|
+
|
|
213
|
+
Changes
|
|
214
|
+
~~~~~~~
|
|
215
|
+
- Bump version, changelog. [Raphaël Vinot]
|
|
216
|
+
- Make mypy happy. [Raphaël Vinot]
|
|
217
|
+
- Bump deps. [Raphaël Vinot]
|
|
218
|
+
- Bump deps. [Raphaël Vinot]
|
|
219
|
+
|
|
220
|
+
Fix
|
|
221
|
+
~~~
|
|
222
|
+
- [emailobject] Improve parsing of the Received headers. [Sami Tainio]
|
|
223
|
+
|
|
224
|
+
- Rewrite of the section that deals with the logic handling the Received headers
|
|
225
|
+
- Previous version was not picking picking up e.g. Reverse DNS hostnames at all and some of the IPs were not ever handled
|
|
226
|
+
- [emailobject] Improve parsing of the Received headers. [Sami Tainio]
|
|
227
|
+
|
|
228
|
+
- Rewrite of the section that deals with the logic handling the Received headers
|
|
229
|
+
- Previous version was not picking picking up e.g. Reverse DNS hostnames at all and some of the IPs were not ever handled
|
|
230
|
+
|
|
231
|
+
Other
|
|
232
|
+
~~~~~
|
|
233
|
+
- [chg] Satisfy tests. [Sami Tainio]
|
|
234
|
+
- Improve the logging message. [Peter Leitmann]
|
|
235
|
+
- Add a check if add_attributes() method truly has values to add. [Peter
|
|
236
|
+
Leitmann]
|
|
237
|
+
- [chg] Satisfy tests. [Sami Tainio]
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
v2.5.8.1 (2025-03-18)
|
|
241
|
+
---------------------
|
|
242
|
+
|
|
243
|
+
Changes
|
|
244
|
+
~~~~~~~
|
|
245
|
+
- Bump changelog. [Raphaël Vinot]
|
|
246
|
+
- Bump changelog. [Raphaël Vinot]
|
|
247
|
+
- Bump objects, version. [Raphaël Vinot]
|
|
248
|
+
|
|
249
|
+
Fix
|
|
250
|
+
~~~
|
|
251
|
+
- Typo in objects. [Raphaël Vinot]
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
v2.5.8 (2025-03-18)
|
|
255
|
+
-------------------
|
|
256
|
+
|
|
257
|
+
Changes
|
|
258
|
+
~~~~~~~
|
|
259
|
+
- Bump changelog. [Raphaël Vinot]
|
|
260
|
+
- Bump deps, version. [Raphaël Vinot]
|
|
261
|
+
- Bump deps. [Raphaël Vinot]
|
|
262
|
+
|
|
263
|
+
Fix
|
|
264
|
+
~~~
|
|
265
|
+
- Remove top level files from wheel. [Raphaël Vinot]
|
|
266
|
+
|
|
267
|
+
As per doc
|
|
268
|
+
(https://python-poetry.org/docs/pyproject#exclude-and-include), we
|
|
269
|
+
cannot have them in the wheel.
|
|
270
|
+
|
|
271
|
+
Fix #1319
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
v2.5.7.1 (2025-02-22)
|
|
275
|
+
---------------------
|
|
276
|
+
|
|
277
|
+
Changes
|
|
278
|
+
~~~~~~~
|
|
279
|
+
- Bump changelog. [Raphaël Vinot]
|
|
280
|
+
- Remove tests from wheel. [Raphaël Vinot]
|
|
281
|
+
- Make mypy happy. [Raphaël Vinot]
|
|
282
|
+
- Bump objects. [Raphaël Vinot]
|
|
283
|
+
- Move email MSG to PW protected archive to fool bumb AVs. [Raphaël
|
|
284
|
+
Vinot]
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
v2.5.7 (2025-02-20)
|
|
288
|
+
-------------------
|
|
289
|
+
|
|
290
|
+
New
|
|
291
|
+
~~~
|
|
292
|
+
- Enrich event/attribute endpoints. [Raphaël Vinot]
|
|
293
|
+
|
|
294
|
+
Related #1318
|
|
295
|
+
|
|
296
|
+
Changes
|
|
297
|
+
~~~~~~~
|
|
298
|
+
- Bump changelog. [Raphaël Vinot]
|
|
299
|
+
- Bump objects. [Raphaël Vinot]
|
|
300
|
+
- Bump changelog. [Raphaël Vinot]
|
|
301
|
+
- Bump deps, version. [Raphaël Vinot]
|
|
302
|
+
- Update readme. [Raphaël Vinot]
|
|
303
|
+
- Bump deps, use poetry 2.0. [Raphaël Vinot]
|
|
304
|
+
|
|
305
|
+
Fix
|
|
306
|
+
~~~
|
|
307
|
+
- Allow MD in docs. [Raphaël Vinot]
|
|
308
|
+
- Remove ref to recommonmark. [Raphaël Vinot]
|
|
309
|
+
- [AnalystData] Added missing properties for Notes and Opinions.
|
|
310
|
+
[Christian Studer]
|
|
311
|
+
|
|
312
|
+
- This is now needed because MISPNote and MISPOpinion
|
|
313
|
+
are no longer part of AnalystDataBehaviorMixin and
|
|
314
|
+
cannot then get them from there
|
|
315
|
+
- [api] Notes, Opinions and Relationships are no longer
|
|
316
|
+
AnalystDataBehaviorMixin. [Christian Studer]
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
v2.5.4 (2024-12-20)
|
|
320
|
+
-------------------
|
|
321
|
+
|
|
322
|
+
Changes
|
|
323
|
+
~~~~~~~
|
|
324
|
+
- Bump changelog. [Raphaël Vinot]
|
|
325
|
+
- Update objects templates. [Raphaël Vinot]
|
|
326
|
+
- Make python 3.9 happy. [Raphaël Vinot]
|
|
327
|
+
- Bump deps. [Raphaël Vinot]
|
|
328
|
+
- [AnalystData] Flattening analyst data based on the recent changes on
|
|
329
|
+
MISP standard format. [Christian Studer]
|
|
330
|
+
|
|
331
|
+
- Adding a note or an opinion will always add the
|
|
332
|
+
new analyst data object to the list of notes or
|
|
333
|
+
opinions at the parent data layer level
|
|
334
|
+
- `from_dict` on a JSON blob is also able to parse
|
|
335
|
+
properly analyst data and generate flat lists
|
|
336
|
+
regardless of whether the given data described
|
|
337
|
+
in the new flat or previously nested format
|
|
338
|
+
- Bump deps. [Raphaël Vinot]
|
|
339
|
+
- Bump deps. [Raphaël Vinot]
|
|
340
|
+
|
|
341
|
+
Fix
|
|
342
|
+
~~~
|
|
343
|
+
- [tests] Removed typing. [Christian Studer]
|
|
344
|
+
- [MISPAnalystData] Added missing typing. [Christian Studer]
|
|
345
|
+
- [MISPAnalystData] Reverted the declaration of Analyst data objects
|
|
346
|
+
lists back to the mixin parent class. [Christian Studer]
|
|
347
|
+
- [MISPAnalystData] Better handling of the different use cases.
|
|
348
|
+
[Christian Studer]
|
|
349
|
+
|
|
350
|
+
- Additional checks for parent to support both
|
|
351
|
+
the standalone and attached analyst data objects
|
|
352
|
+
- Standalone Analyst data objects with nested
|
|
353
|
+
notes or opinions are defined with the nesting
|
|
354
|
+
as they have no parent. When they are added to
|
|
355
|
+
a parent data layer, the nested objects are then
|
|
356
|
+
flattened
|
|
357
|
+
- [AnalystData] Typo... [Christian Studer]
|
|
358
|
+
- [AnalystData] Avoiding issues with analyst data objects. [Christian
|
|
359
|
+
Studer]
|
|
360
|
+
|
|
361
|
+
Other
|
|
362
|
+
~~~~~
|
|
363
|
+
- Chg; Bump version. [Raphaël Vinot]
|
|
364
|
+
- Revert "fix: [tests] Removed typing" [Christian Studer]
|
|
365
|
+
|
|
366
|
+
This reverts commit a7cf9dc3f03ffda5ee6c1b614792455fe43d8704.
|
|
367
|
+
- Add: [tests] Testing Analyst Data in different scenarios. [Christian
|
|
368
|
+
Studer]
|
|
369
|
+
|
|
370
|
+
- Testing different ways to attach analyst data
|
|
371
|
+
- Testing that no matter what object type the
|
|
372
|
+
analyst data is attached to, the `object_type`
|
|
373
|
+
& `object_uuid` are correct, and the parent
|
|
374
|
+
container does contain every analyst data object
|
|
375
|
+
in flat lists with no nesting
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
v2.5.3 (2024-12-16)
|
|
379
|
+
-------------------
|
|
380
|
+
|
|
381
|
+
New
|
|
382
|
+
~~~
|
|
383
|
+
- Create a sign_blob method to sign events. [Raphaël Vinot]
|
|
384
|
+
- [support for signing] added. [iglocska]
|
|
385
|
+
|
|
386
|
+
- added new class CryptographicKeys
|
|
387
|
+
- added functions to to_feed calls to include crypto keys
|
|
388
|
+
- added protected boolean field to misp event
|
|
389
|
+
|
|
390
|
+
- updated feed generator to support signing
|
|
391
|
+
- if the new setting is set to True signing will be attempted for protected events
|
|
392
|
+
- protected events are now passed to the /cryptographic_keys/serverSign endpoint of misp for signing
|
|
393
|
+
- signatures are included as a .asc file in the output directory
|
|
394
|
+
|
|
395
|
+
- TODO:
|
|
396
|
+
- currently the JSON dumping is moved from a streamed dumping to an in memory dump before saving to disk
|
|
397
|
+
- add a check for protected events and revert to streamed dumping for non protected events
|
|
398
|
+
- alternatively use the already saved files to request signing from MISP
|
|
399
|
+
|
|
400
|
+
Changes
|
|
401
|
+
~~~~~~~
|
|
402
|
+
- Bump changelog. [Raphaël Vinot]
|
|
403
|
+
- Bump release. [Raphaël Vinot]
|
|
404
|
+
- Bump deps. [Raphaël Vinot]
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
v2.4.199 (2024-11-26)
|
|
408
|
+
---------------------
|
|
409
|
+
|
|
410
|
+
New
|
|
411
|
+
~~~
|
|
412
|
+
- Publish to PyPi on release. [Raphaël Vinot]
|
|
413
|
+
|
|
414
|
+
Changes
|
|
415
|
+
~~~~~~~
|
|
416
|
+
- Bump changelog. [Raphaël Vinot]
|
|
417
|
+
- Skip PyMISP version check. [Raphaël Vinot]
|
|
418
|
+
- Bump deps, version. [Raphaël Vinot]
|
|
419
|
+
- Bump deps, version. [Raphaël Vinot]
|
|
420
|
+
- Bump version, deps, templates. [Raphaël Vinot]
|
|
421
|
+
- Bump version, test for GH action release. [Raphaël Vinot]
|
|
422
|
+
- Drop python 3.8, add python 3.13. [Raphaël Vinot]
|
|
423
|
+
- Bump templates. [Raphaël Vinot]
|
|
424
|
+
- Bump deps. [Raphaël Vinot]
|
|
425
|
+
- Remove fonts from submodules, on-demand download if needed. [Raphaël
|
|
426
|
+
Vinot]
|
|
427
|
+
|
|
428
|
+
Fix
|
|
429
|
+
~~~
|
|
430
|
+
- Avoid exception on dev releases. [Raphaël Vinot]
|
|
431
|
+
- Template versions in tests. [Raphaël Vinot]
|
|
432
|
+
- [AnalystData] A quick and simple typing fix. [Christian Studer]
|
|
433
|
+
|
|
434
|
+
Other
|
|
435
|
+
~~~~~
|
|
436
|
+
- Build(deps): bump codecov/codecov-action from 4 to 5.
|
|
437
|
+
[dependabot[bot]]
|
|
438
|
+
|
|
439
|
+
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5.
|
|
440
|
+
- [Release notes](https://github.com/codecov/codecov-action/releases)
|
|
441
|
+
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
|
|
442
|
+
- [Commits](https://github.com/codecov/codecov-action/compare/v4...v5)
|
|
443
|
+
|
|
444
|
+
---
|
|
445
|
+
updated-dependencies:
|
|
446
|
+
- dependency-name: codecov/codecov-action
|
|
447
|
+
dependency-type: direct:production
|
|
448
|
+
update-type: version-update:semver-major
|
|
449
|
+
...
|
|
450
|
+
- Update pytest.yml for python 3.13. [Raphaël Vinot]
|
|
451
|
+
|
|
452
|
+
|
|
5
453
|
v2.5.1 (2024-10-17)
|
|
6
454
|
-------------------
|
|
7
455
|
|
|
@@ -11,6 +459,7 @@ New
|
|
|
11
459
|
|
|
12
460
|
Changes
|
|
13
461
|
~~~~~~~
|
|
462
|
+
- Re-bump changelog. [Raphaël Vinot]
|
|
14
463
|
- Bump changelog. [Raphaël Vinot]
|
|
15
464
|
- Bump objects. [Raphaël Vinot]
|
|
16
465
|
- Bump version. [Raphaël Vinot]
|
|
@@ -353,21 +802,18 @@ Changes
|
|
|
353
802
|
~~~~~~~
|
|
354
803
|
- Bump changelog. [Raphaël Vinot]
|
|
355
804
|
- Bump deps, version. [Raphaël Vinot]
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
v2.4.184.3 (2024-02-12)
|
|
359
|
-
-----------------------
|
|
360
|
-
|
|
361
|
-
Changes
|
|
362
|
-
~~~~~~~
|
|
363
805
|
- Bump changelog. [Raphaël Vinot]
|
|
364
806
|
- Bump version. [Raphaël Vinot]
|
|
365
807
|
- Bump deps. [Raphaël Vinot]
|
|
808
|
+
- Add changelog. [Raphaël Vinot]
|
|
809
|
+
- Bump changelog. [Raphaël Vinot]
|
|
810
|
+
- Re-add ExpandedPyMISP, with a warning. [Raphaël Vinot]
|
|
366
811
|
|
|
367
812
|
Fix
|
|
368
813
|
~~~
|
|
369
814
|
- Properly get body from message, without headers. [Raphaël Vinot]
|
|
370
815
|
- Remove from __all__ entries that shouldn't be there. [Raphaël Vinot]
|
|
816
|
+
- Do not throw a warning every time one import pymisp... [Raphaël Vinot]
|
|
371
817
|
|
|
372
818
|
Other
|
|
373
819
|
~~~~~
|
|
@@ -384,23 +830,6 @@ Other
|
|
|
384
830
|
- dependency-name: jupyter-lsp
|
|
385
831
|
dependency-type: indirect
|
|
386
832
|
...
|
|
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
833
|
- Build(deps): bump codecov/codecov-action from 3 to 4.
|
|
405
834
|
[dependabot[bot]]
|
|
406
835
|
|
|
@@ -417,15 +846,6 @@ Other
|
|
|
417
846
|
...
|
|
418
847
|
|
|
419
848
|
|
|
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
849
|
v2.4.184 (2024-02-02)
|
|
430
850
|
---------------------
|
|
431
851
|
|
|
@@ -797,11 +1217,19 @@ Changes
|
|
|
797
1217
|
- Bump changelog. [Raphaël Vinot]
|
|
798
1218
|
- Bump version. [Raphaël Vinot]
|
|
799
1219
|
- Remove old setup files, bump deps. [Raphaël Vinot]
|
|
1220
|
+
- Bump changelog. [Raphaël Vinot]
|
|
1221
|
+
- Bump version. [Raphaël Vinot]
|
|
1222
|
+
- Bump deps. [Raphaël Vinot]
|
|
1223
|
+
- Bump deps. [Raphaël Vinot]
|
|
1224
|
+
- Disable fail fast in GHA. [Raphaël Vinot]
|
|
1225
|
+
- Bump version. [Raphaël Vinot]
|
|
1226
|
+
- Bump deps. [Raphaël Vinot]
|
|
800
1227
|
|
|
801
1228
|
Fix
|
|
802
1229
|
~~~
|
|
803
1230
|
- Extra print breaking the CI on MISP side. [Raphaël Vinot]
|
|
804
1231
|
- Properly use lief on a file. [Raphaël Vinot]
|
|
1232
|
+
- Update lief code to v0.13. [Raphaël Vinot]
|
|
805
1233
|
|
|
806
1234
|
Other
|
|
807
1235
|
~~~~~
|
|
@@ -820,31 +1248,6 @@ Other
|
|
|
820
1248
|
See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details.
|
|
821
1249
|
|
|
822
1250
|
|
|
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
1251
|
v2.4.170 (2023-04-12)
|
|
849
1252
|
---------------------
|
|
850
1253
|
|
|
@@ -853,85 +1256,40 @@ Changes
|
|
|
853
1256
|
- Bump changelog. [Raphaël Vinot]
|
|
854
1257
|
- Bump version. [Raphaël Vinot]
|
|
855
1258
|
- 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
1259
|
- Bump changelog. [Raphaël Vinot]
|
|
870
1260
|
- Bump deps, version. [Raphaël Vinot]
|
|
871
1261
|
- 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
1262
|
- Bump changelog. [Raphaël Vinot]
|
|
884
1263
|
- Bump version. [Raphaël Vinot]
|
|
885
1264
|
- Include event reports by default in feed. [Raphaël Vinot]
|
|
886
1265
|
- Bump deps. [Raphaël Vinot]
|
|
1266
|
+
- Bump changelog. [Raphaël Vinot]
|
|
1267
|
+
- Bump version. [Raphaël Vinot]
|
|
1268
|
+
- Add greynoise-ip object. [Raphaël Vinot]
|
|
1269
|
+
|
|
1270
|
+
Fix #951
|
|
887
1271
|
|
|
888
1272
|
Fix
|
|
889
1273
|
~~~
|
|
1274
|
+
- Invalid check if taxo is enabled. [Raphaël Vinot]
|
|
890
1275
|
- Use proper parameter to trigger the request in search_galaxy_clusters.
|
|
891
1276
|
[Raphaël Vinot]
|
|
892
1277
|
- Use POST in search galaxy cluster. [Raphaël Vinot]
|
|
893
1278
|
|
|
894
1279
|
Other
|
|
895
1280
|
~~~~~
|
|
1281
|
+
- Add: support breakOnDuplicate option for attributes:add() [Luciano
|
|
1282
|
+
Righetti]
|
|
1283
|
+
- Update reportlab_generator.py. [CarlosLoureiro]
|
|
896
1284
|
- Rename include_event_reports kwarg to with_event_reports, in-line with
|
|
897
1285
|
other kwarg naming. [UFOSmuggler]
|
|
898
1286
|
- Add kwarg to allow the inclusion of event reports into to_feed(),
|
|
899
1287
|
honour with_distribution and valid_distributions kwargs. [UFOSmuggler]
|
|
900
1288
|
|
|
901
1289
|
|
|
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
1290
|
v2.4.169 (2023-03-10)
|
|
915
1291
|
---------------------
|
|
916
1292
|
|
|
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
1293
|
New
|
|
936
1294
|
~~~
|
|
937
1295
|
- [doc] added the Jupyter notebook used in a.7-rest-api-extensive-
|
|
@@ -939,6 +1297,10 @@ New
|
|
|
939
1297
|
|
|
940
1298
|
Changes
|
|
941
1299
|
~~~~~~~
|
|
1300
|
+
- Bump changelog. [Raphaël Vinot]
|
|
1301
|
+
- Bump version. [Raphaël Vinot]
|
|
1302
|
+
- Bump templates. [Raphaël Vinot]
|
|
1303
|
+
- Bump deps. [Raphaël Vinot]
|
|
942
1304
|
- Bump changelog, version. [Raphaël Vinot]
|
|
943
1305
|
- Bump templates, again. [Raphaël Vinot]
|
|
944
1306
|
- Bump templates. [Raphaël Vinot]
|
|
@@ -952,6 +1314,10 @@ Changes
|
|
|
952
1314
|
|
|
953
1315
|
Fix
|
|
954
1316
|
~~~
|
|
1317
|
+
- Add local key in MISPTag. [Raphaël Vinot]
|
|
1318
|
+
|
|
1319
|
+
Related #947
|
|
1320
|
+
- Use pytest for the tests. [Raphaël Vinot]
|
|
955
1321
|
- Properly handle missing parameter in CSV importer. [Raphaël Vinot]
|
|
956
1322
|
|
|
957
1323
|
Fix #931
|
|
@@ -964,39 +1330,18 @@ Fix
|
|
|
964
1330
|
v2.4.168 (2023-01-23)
|
|
965
1331
|
---------------------
|
|
966
1332
|
|
|
1333
|
+
New
|
|
1334
|
+
~~~
|
|
1335
|
+
- Add relationship_type in Tag entries for feeds. [Raphaël Vinot]
|
|
1336
|
+
|
|
967
1337
|
Changes
|
|
968
1338
|
~~~~~~~
|
|
969
1339
|
- Bump changelog. [Raphaël Vinot]
|
|
970
1340
|
- Bump version. [Raphaël Vinot]
|
|
971
1341
|
- Bump deps. [Raphaël Vinot]
|
|
972
1342
|
- Bump deps. [Raphaël Vinot]
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
v2.4.167.2 (2023-01-17)
|
|
976
|
-
-----------------------
|
|
977
|
-
|
|
978
|
-
Changes
|
|
979
|
-
~~~~~~~
|
|
980
1343
|
- Bump changelog. [Raphaël Vinot]
|
|
981
1344
|
- 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
1345
|
- Bump changelog. [Raphaël Vinot]
|
|
1001
1346
|
- Bump version. [Raphaël Vinot]
|
|
1002
1347
|
- Bump deps. [Raphaël Vinot]
|
|
@@ -1011,6 +1356,10 @@ Changes
|
|
|
1011
1356
|
|
|
1012
1357
|
Fix
|
|
1013
1358
|
~~~
|
|
1359
|
+
- Set relationship_type default in MISPTag to empty string. [Raphaël
|
|
1360
|
+
Vinot]
|
|
1361
|
+
- Another typo in readme. [Raphaël Vinot]
|
|
1362
|
+
- Typo in readme. [Raphaël Vinot]
|
|
1014
1363
|
- Update whl files. [Raphaël Vinot]
|
|
1015
1364
|
- Nvm, readthedocs requires python 3.8 at most. [Raphaël Vinot]
|
|
1016
1365
|
|
|
@@ -1067,23 +1416,13 @@ Changes
|
|
|
1067
1416
|
- Bump deps. [Raphaël Vinot]
|
|
1068
1417
|
- Bump deps. [Raphaël Vinot]
|
|
1069
1418
|
- 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
1419
|
- Bump changelog. [Raphaël Vinot]
|
|
1083
1420
|
- Bump deps. [Raphaël Vinot]
|
|
1084
1421
|
|
|
1085
1422
|
Fix
|
|
1086
1423
|
~~~
|
|
1424
|
+
- [describetypes] updated with the latest output from MISP. [iglocska]
|
|
1425
|
+
- [types] added missing type value. [iglocska]
|
|
1087
1426
|
- Properly bump version. [Raphaël Vinot]
|
|
1088
1427
|
|
|
1089
1428
|
Other
|
|
@@ -1099,21 +1438,6 @@ Other
|
|
|
1099
1438
|
v2.4.165 (2022-11-09)
|
|
1100
1439
|
---------------------
|
|
1101
1440
|
|
|
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
1441
|
New
|
|
1118
1442
|
~~~
|
|
1119
1443
|
- Add in ability to set a taxonomies required status. [Tom King]
|
|
@@ -1121,6 +1445,10 @@ New
|
|
|
1121
1445
|
Changes
|
|
1122
1446
|
~~~~~~~
|
|
1123
1447
|
- Bump changelog. [Raphaël Vinot]
|
|
1448
|
+
- Bump mypy. [Raphaël Vinot]
|
|
1449
|
+
- Add links to doc. [Raphaël Vinot]
|
|
1450
|
+
- Bump deps. [Raphaël Vinot]
|
|
1451
|
+
- Bump changelog. [Raphaël Vinot]
|
|
1124
1452
|
- Bump lief (CVEs), version. [Raphaël Vinot]
|
|
1125
1453
|
- Bump deps. [Raphaël Vinot]
|
|
1126
1454
|
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
|
|
@@ -1128,6 +1456,16 @@ Changes
|
|
|
1128
1456
|
[Alexandre Dulaunoy]
|
|
1129
1457
|
- Bump deps. [Raphaël Vinot]
|
|
1130
1458
|
- Add dependabot. [Raphaël Vinot]
|
|
1459
|
+
- Bump changelog. [Raphaël Vinot]
|
|
1460
|
+
- Bump deps and version. [Raphaël Vinot]
|
|
1461
|
+
|
|
1462
|
+
Fix LIEF vuln.
|
|
1463
|
+
- Bump deps, objects. [Raphaël Vinot]
|
|
1464
|
+
|
|
1465
|
+
Fix
|
|
1466
|
+
~~~
|
|
1467
|
+
- Issue with EMailObject. [Raphaël Vinot]
|
|
1468
|
+
- Change DNS warning list test. [Raphaël Vinot]
|
|
1131
1469
|
|
|
1132
1470
|
Other
|
|
1133
1471
|
~~~~~
|
|
@@ -1177,22 +1515,6 @@ Other
|
|
|
1177
1515
|
- Create codeql-analysis.yml. [Raphaël Vinot]
|
|
1178
1516
|
|
|
1179
1517
|
|
|
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
1518
|
v2.4.162 (2022-09-09)
|
|
1197
1519
|
---------------------
|
|
1198
1520
|
|
|
@@ -1210,22 +1532,12 @@ Changes
|
|
|
1210
1532
|
- Add in sort/desc for sorting results and limit/page for pagination.
|
|
1211
1533
|
[Tom King]
|
|
1212
1534
|
- 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
1535
|
- Bump changelog. [Raphaël Vinot]
|
|
1225
1536
|
- Bump deps. [Raphaël Vinot]
|
|
1226
1537
|
|
|
1227
1538
|
Fix
|
|
1228
1539
|
~~~
|
|
1540
|
+
- Missing place to update version. [Raphaël Vinot]
|
|
1229
1541
|
- Make keepalive configuration linux only. [Raphaël Vinot]
|
|
1230
1542
|
|
|
1231
1543
|
Bump deps
|
|
@@ -1317,24 +1629,14 @@ Changes
|
|
|
1317
1629
|
- [tests] reverted. [Alexandre Dulaunoy]
|
|
1318
1630
|
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
|
|
1319
1631
|
- [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
1632
|
- Bump changelog. [Raphaël Vinot]
|
|
1333
1633
|
- Bump required python version for doc. [Raphaël Vinot]
|
|
1334
1634
|
- Remove python 3.6 from metadata. [Raphaël Vinot]
|
|
1335
1635
|
|
|
1336
1636
|
Fix
|
|
1337
1637
|
~~~
|
|
1638
|
+
- [tests] check if the version is a substring as PyMISP might contain
|
|
1639
|
+
sub version. [Alexandre Dulaunoy]
|
|
1338
1640
|
- Incorrect call when requesting a new API key. [Raphaël Vinot]
|
|
1339
1641
|
|
|
1340
1642
|
|
|
@@ -1420,6 +1722,10 @@ v2.4.151 (2021-11-19)
|
|
|
1420
1722
|
New
|
|
1421
1723
|
~~~
|
|
1422
1724
|
- Add Blind Carbon Copy (bcc) headers. [Sami Tainio]
|
|
1725
|
+
- Add few keys to email object creator. [Raphaël Vinot]
|
|
1726
|
+
|
|
1727
|
+
Fix #787
|
|
1728
|
+
- Test cases for edit objects and upload stix. [Raphaël Vinot]
|
|
1423
1729
|
|
|
1424
1730
|
Changes
|
|
1425
1731
|
~~~~~~~
|
|
@@ -1452,9 +1758,28 @@ Changes
|
|
|
1452
1758
|
or organisation (users) [Tom King]
|
|
1453
1759
|
- [test] Check if all category types exists. [Jakub Onderka]
|
|
1454
1760
|
- Bump changelog. [Raphaël Vinot]
|
|
1761
|
+
- Bump misp-objects. [Raphaël Vinot]
|
|
1762
|
+
- Bump version. [Raphaël Vinot]
|
|
1763
|
+
- Bump deps. [Raphaël Vinot]
|
|
1455
1764
|
- [py] Typo. [Steve Clement]
|
|
1456
1765
|
- [describeTypes] updated to include ssh-fingerprint. [Alexandre
|
|
1457
1766
|
Dulaunoy]
|
|
1767
|
+
- [doc] Minor fixes, note and typo. [Steve Clement]
|
|
1768
|
+
- Bump deps. [Raphaël Vinot]
|
|
1769
|
+
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
|
|
1770
|
+
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
|
|
1771
|
+
- Update tutorial for custom objects. [Raphaël Vinot]
|
|
1772
|
+
- Bump deps. [Raphaël Vinot]
|
|
1773
|
+
- Bump live tests. [Raphaël Vinot]
|
|
1774
|
+
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
|
|
1775
|
+
- [types] updated types/categories mapping. [Christophe Vandeplas]
|
|
1776
|
+
- Remove test files. [Raphaël Vinot]
|
|
1777
|
+
- Automatically pull the malwares repo when running
|
|
1778
|
+
tests/testlive_comprehensive.py. [Raphaël Vinot]
|
|
1779
|
+
- Remove submodules with malware. [Raphaël Vinot]
|
|
1780
|
+
- Add test for updating a objects from a custom template. [Raphaël
|
|
1781
|
+
Vinot]
|
|
1782
|
+
- Re-bump changelog. [Raphaël Vinot]
|
|
1458
1783
|
|
|
1459
1784
|
Fix
|
|
1460
1785
|
~~~
|
|
@@ -1475,47 +1800,6 @@ Fix
|
|
|
1475
1800
|
Fix #796
|
|
1476
1801
|
- [tests] Fixed stix test. [chrisr3d]
|
|
1477
1802
|
- [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
1803
|
- Message_from_bytes really dislikes newline at the beginning of a mail.
|
|
1520
1804
|
[Raphaël Vinot]
|
|
1521
1805
|
- Skip IPs in Received header. [Raphaël Vinot]
|
|
@@ -1534,6 +1818,7 @@ Fix
|
|
|
1534
1818
|
|
|
1535
1819
|
Other
|
|
1536
1820
|
~~~~~
|
|
1821
|
+
- Update README.md. [Raphaël Vinot]
|
|
1537
1822
|
- Remove unicode to ascii parts. [Sami Tainio]
|
|
1538
1823
|
- Fix #787 and add Unicode to ASCII function. [Sami Tainio]
|
|
1539
1824
|
|
|
@@ -1711,6 +1996,9 @@ Changes
|
|
|
1711
1996
|
- Bump deps. [Raphaël Vinot]
|
|
1712
1997
|
- Bump deps. [Raphaël Vinot]
|
|
1713
1998
|
- Add comment for controller attribute in search. [Raphaël Vinot]
|
|
1999
|
+
- Bump changelog. [Raphaël Vinot]
|
|
2000
|
+
- Re-bump changelog. [Raphaël Vinot]
|
|
2001
|
+
- Bump version. [Raphaël Vinot]
|
|
1714
2002
|
|
|
1715
2003
|
Fix
|
|
1716
2004
|
~~~
|
|
@@ -1718,16 +2006,6 @@ Fix
|
|
|
1718
2006
|
- Mistake in mypy config. [Raphaël Vinot]
|
|
1719
2007
|
- Exclude data from mypy. [Raphaël Vinot]
|
|
1720
2008
|
|
|
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
2009
|
Other
|
|
1732
2010
|
~~~~~
|
|
1733
2011
|
- Fix bump version, deps, templates. [Raphaël Vinot]
|
|
@@ -1886,55 +2164,35 @@ Other
|
|
|
1886
2164
|
v2.4.138 (2021-02-08)
|
|
1887
2165
|
---------------------
|
|
1888
2166
|
|
|
2167
|
+
New
|
|
2168
|
+
~~~
|
|
2169
|
+
- Add in ability to create/update/delete MISP Event Reports. [Tom King]
|
|
2170
|
+
- Hard delete flag for objects. [Raphaël Vinot]
|
|
2171
|
+
- Fail if a duplicate object is added to an event. [Raphaël Vinot]
|
|
2172
|
+
- Support brotli compression. [Jakub Onderka]
|
|
2173
|
+
- Hard delete flag for objects. [Raphaël Vinot]
|
|
2174
|
+
- Fail if a duplicate object is added to an event. [Raphaël Vinot]
|
|
2175
|
+
- Add in ability to create/update/delete MISP Event Reports. [Tom King]
|
|
2176
|
+
- Add in ability to create/update/delete MISP Event Reports. [Tom King]
|
|
2177
|
+
- Hard delete flag for objects. [Raphaël Vinot]
|
|
2178
|
+
- Fail if a duplicate object is added to an event. [Raphaël Vinot]
|
|
2179
|
+
|
|
1889
2180
|
Changes
|
|
1890
2181
|
~~~~~~~
|
|
1891
2182
|
- Bump changelog. [Raphaël Vinot]
|
|
1892
2183
|
- Bump version. [Raphaël Vinot]
|
|
1893
2184
|
- Bump deps. [Raphaël Vinot]
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
v2.4.137.4 (2021-02-04)
|
|
1897
|
-
-----------------------
|
|
1898
|
-
|
|
1899
|
-
Changes
|
|
1900
|
-
~~~~~~~
|
|
1901
2185
|
- Bump changelog. [Raphaël Vinot]
|
|
1902
2186
|
- Bump version. [Raphaël Vinot]
|
|
1903
2187
|
- Bump objects. [Raphaël Vinot]
|
|
1904
2188
|
- Add kw_params to tags. [Raphaël Vinot]
|
|
1905
2189
|
- Bump objects. [Raphaël Vinot]
|
|
1906
2190
|
- 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
2191
|
- Bump version. [Raphaël Vinot]
|
|
1915
2192
|
- Bump changelog. [Raphaël Vinot]
|
|
1916
2193
|
- Bump objects. [Raphaël Vinot]
|
|
1917
2194
|
- Fix and improve optional dependencies. [Raphaël Vinot]
|
|
1918
2195
|
- 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
2196
|
- Bump changelog. [Raphaël Vinot]
|
|
1939
2197
|
- Bump version. [Raphaël Vinot]
|
|
1940
2198
|
- Add brotli support in the dependencies. [Raphaël Vinot]
|
|
@@ -2021,6 +2279,14 @@ Changes
|
|
|
2021
2279
|
- Add test case fir add_attribute and enforceWarninglist=True. [Raphaël
|
|
2022
2280
|
Vinot]
|
|
2023
2281
|
- Add testcase with breakOnDuplicate in a MISPObject. [Raphaël Vinot]
|
|
2282
|
+
- Bump changelog. [Raphaël Vinot]
|
|
2283
|
+
- Bump version. [Raphaël Vinot]
|
|
2284
|
+
- Add test case for page/limit in logs search. [Raphaël Vinot]
|
|
2285
|
+
- Bump deps. [Raphaël Vinot]
|
|
2286
|
+
- Improve docstring for get_event. [Raphaël Vinot]
|
|
2287
|
+
|
|
2288
|
+
fix #686
|
|
2289
|
+
- Bump changelog. [Raphaël Vinot]
|
|
2024
2290
|
|
|
2025
2291
|
Fix
|
|
2026
2292
|
~~~
|
|
@@ -2042,28 +2308,6 @@ Fix
|
|
|
2042
2308
|
- Add python 3.9 in GH Actions. [Raphaël Vinot]
|
|
2043
2309
|
- Call the AbstractMISP.from_dict at the end of the function to ensure
|
|
2044
2310
|
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
2311
|
- Better warning if lief is outdated. [Raphaël Vinot]
|
|
2068
2312
|
- Update minimal dependency for lief in setup.py. [Raphaël Vinot]
|
|
2069
2313
|
|
|
@@ -2077,6 +2321,7 @@ New
|
|
|
2077
2321
|
Vinot]
|
|
2078
2322
|
|
|
2079
2323
|
MISPObject part of #6670
|
|
2324
|
+
- Add Github workflow. [Raphaël Vinot]
|
|
2080
2325
|
|
|
2081
2326
|
Changes
|
|
2082
2327
|
~~~~~~~
|
|
@@ -2103,6 +2348,21 @@ Changes
|
|
|
2103
2348
|
- On-demand decryption of malware-binary, speeds up pythonify. [Raphaël
|
|
2104
2349
|
Vinot]
|
|
2105
2350
|
- Force a few packages versions. [Raphaël Vinot]
|
|
2351
|
+
- Bump changelog. [Raphaël Vinot]
|
|
2352
|
+
- Bump version. [Raphaël Vinot]
|
|
2353
|
+
- Improve typing. [Raphaël Vinot]
|
|
2354
|
+
- Improve add_attribute with a list. [Raphaël Vinot]
|
|
2355
|
+
- Bump changelog. [Raphaël Vinot]
|
|
2356
|
+
- Bump version. [Raphaël Vinot]
|
|
2357
|
+
- Improve error message if a type in missing. [Raphaël Vinot]
|
|
2358
|
+
- [type] process-state added. [Alexandre Dulaunoy]
|
|
2359
|
+
- Bump misp-objects. [Raphaël Vinot]
|
|
2360
|
+
- [misp-objects] updated. [Alexandre Dulaunoy]
|
|
2361
|
+
- Add path to CSV sample files. [Raphaël Vinot]
|
|
2362
|
+
- [types] jarm-fingerprint added. [Alexandre Dulaunoy]
|
|
2363
|
+
- Bump changelog. [Raphaël Vinot]
|
|
2364
|
+
- Bump version, travis install. [Raphaël Vinot]
|
|
2365
|
+
- Make mail-parser an optional dependency. [Raphaël Vinot]
|
|
2106
2366
|
|
|
2107
2367
|
Fix
|
|
2108
2368
|
~~~
|
|
@@ -2118,6 +2378,11 @@ Fix
|
|
|
2118
2378
|
- Typing on recent mypy. [Raphaël Vinot]
|
|
2119
2379
|
- Typing edge case. [Raphaël Vinot]
|
|
2120
2380
|
- Add attribute dict as proposal. [Raphaël Vinot]
|
|
2381
|
+
- Do not fail on PyMISP import when mail-parser is not present. [Raphaël
|
|
2382
|
+
Vinot]
|
|
2383
|
+
- Remove python 3.9 from action (lief not supported yet) [Raphaël Vinot]
|
|
2384
|
+
- Initialize submodules in gh action. [Raphaël Vinot]
|
|
2385
|
+
- Make mail-parser really optional. [Raphaël Vinot]
|
|
2121
2386
|
|
|
2122
2387
|
Other
|
|
2123
2388
|
~~~~~
|
|
@@ -2135,57 +2400,6 @@ Other
|
|
|
2135
2400
|
- Update mispevent.py. [Raphaël Vinot]
|
|
2136
2401
|
|
|
2137
2402
|
|
|
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
2403
|
v2.4.135 (2020-11-23)
|
|
2190
2404
|
---------------------
|
|
2191
2405
|
|
|
@@ -2503,17 +2717,6 @@ Other
|
|
|
2503
2717
|
v2.4.128 (2020-06-22)
|
|
2504
2718
|
---------------------
|
|
2505
2719
|
|
|
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
2720
|
New
|
|
2518
2721
|
~~~
|
|
2519
2722
|
- Optionally include deleted attributes/objects in feed. [Raphaël Vinot]
|
|
@@ -2522,6 +2725,10 @@ Changes
|
|
|
2522
2725
|
~~~~~~~
|
|
2523
2726
|
- Bump changelog. [Raphaël Vinot]
|
|
2524
2727
|
- Bump version. [Raphaël Vinot]
|
|
2728
|
+
- Add a few test cases. [Raphaël Vinot]
|
|
2729
|
+
- Bump objects. [Raphaël Vinot]
|
|
2730
|
+
- Bump changelog. [Raphaël Vinot]
|
|
2731
|
+
- Bump version. [Raphaël Vinot]
|
|
2525
2732
|
- Bump misp-objects. [Raphaël Vinot]
|
|
2526
2733
|
- Add test case for get event deleted. [Raphaël Vinot]
|
|
2527
2734
|
- Add test case for search deleted. [Raphaël Vinot]
|
|
@@ -2768,6 +2975,10 @@ Changes
|
|
|
2768
2975
|
- Fix typo in readme. [Raphaël Vinot]
|
|
2769
2976
|
- Use bionic on travis. [Raphaël Vinot]
|
|
2770
2977
|
- Add poetry support. [Raphaël Vinot]
|
|
2978
|
+
- Bump changelog. [Raphaël Vinot]
|
|
2979
|
+
- Bump objects. [Raphaël Vinot]
|
|
2980
|
+
- Bump changelog. [Raphaël Vinot]
|
|
2981
|
+
- Bump version. [Raphaël Vinot]
|
|
2771
2982
|
|
|
2772
2983
|
Fix
|
|
2773
2984
|
~~~
|
|
@@ -2775,29 +2986,15 @@ Fix
|
|
|
2775
2986
|
- Mypy, more typing. [Raphaël Vinot]
|
|
2776
2987
|
- Do not skip data in add_attribute methods. [Raphaël Vinot]
|
|
2777
2988
|
- Remove references to the old API. [Raphaël Vinot]
|
|
2989
|
+
- Make lief optional again. [Raphaël Vinot]
|
|
2990
|
+
|
|
2991
|
+
fix #538
|
|
2778
2992
|
|
|
2779
2993
|
Other
|
|
2780
2994
|
~~~~~
|
|
2781
2995
|
- Use poetry everywhere, fix readme. [Raphaël Vinot]
|
|
2782
2996
|
|
|
2783
2997
|
|
|
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
2998
|
v2.4.121 (2020-02-06)
|
|
2802
2999
|
---------------------
|
|
2803
3000
|
|
|
@@ -2870,6 +3067,7 @@ New
|
|
|
2870
3067
|
to search large dataset. It's used in Windows Defender ATP Hunting-Queries
|
|
2871
3068
|
and also Azure Sentinel (Cloud-native SIEM).
|
|
2872
3069
|
- Remove python < 3.6 support. [Raphaël Vinot]
|
|
3070
|
+
- URLObject (requires pyfaup) [Raphaël Vinot]
|
|
2873
3071
|
|
|
2874
3072
|
Changes
|
|
2875
3073
|
~~~~~~~
|
|
@@ -2889,6 +3087,18 @@ Changes
|
|
|
2889
3087
|
- Bump misp-objects. [Raphaël Vinot]
|
|
2890
3088
|
- Bump Dependencies. [Raphaël Vinot]
|
|
2891
3089
|
- Bump misp-objects. [Raphaël Vinot]
|
|
3090
|
+
- Bump changelog. [Raphaël Vinot]
|
|
3091
|
+
- Version bump. [Raphaël Vinot]
|
|
3092
|
+
- Bump test files. [Raphaël Vinot]
|
|
3093
|
+
- Bump misp-objects. [Raphaël Vinot]
|
|
3094
|
+
- Debug travis error message. [Raphaël Vinot]
|
|
3095
|
+
- [types] eppn type added. [Alexandre Dulaunoy]
|
|
3096
|
+
- Fix typo. [Raphaël Vinot]
|
|
3097
|
+
- Move scrippsco2 feed generator to a sub directory. [Raphaël Vinot]
|
|
3098
|
+
- Update documentation. [Raphaël Vinot]
|
|
3099
|
+
|
|
3100
|
+
Fix #396
|
|
3101
|
+
- Bump objects. [Raphaël Vinot]
|
|
2892
3102
|
|
|
2893
3103
|
Fix
|
|
2894
3104
|
~~~
|
|
@@ -2901,6 +3111,12 @@ Fix
|
|
|
2901
3111
|
- Event without hashable attribute. [Raphaël Vinot]
|
|
2902
3112
|
|
|
2903
3113
|
Related #506
|
|
3114
|
+
- Properly test custom objects. [Raphaël Vinot]
|
|
3115
|
+
- Adding a sighting takes a little bit of time. [Raphaël Vinot]
|
|
3116
|
+
- Test case on reference. [Raphaël Vinot]
|
|
3117
|
+
- Add missing fields to event & attribute for the feed output. [Raphaël
|
|
3118
|
+
Vinot]
|
|
3119
|
+
- Make sure the publish timestamp is bumped on update. [Raphaël Vinot]
|
|
2904
3120
|
|
|
2905
3121
|
Other
|
|
2906
3122
|
~~~~~
|
|
@@ -2926,59 +3142,9 @@ Other
|
|
|
2926
3142
|
- Update README.md. [Raphaël Vinot]
|
|
2927
3143
|
|
|
2928
3144
|
|
|
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
3145
|
v2.4.119 (2019-12-02)
|
|
2962
3146
|
---------------------
|
|
2963
3147
|
|
|
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
3148
|
New
|
|
2983
3149
|
~~~
|
|
2984
3150
|
- Script to generate the metadata of a feed out of a directory. [Raphaël
|
|
@@ -2993,12 +3159,16 @@ New
|
|
|
2993
3159
|
- Get Database Schema Diagnostic. [Raphaël Vinot]
|
|
2994
3160
|
|
|
2995
3161
|
Fix #492
|
|
3162
|
+
- Add support for UserSettings. [Raphaël Vinot]
|
|
2996
3163
|
|
|
2997
3164
|
Changes
|
|
2998
3165
|
~~~~~~~
|
|
2999
3166
|
- Bump changelog. [Raphaël Vinot]
|
|
3000
3167
|
- Bump version. [Raphaël Vinot]
|
|
3001
3168
|
- Bump dependencies. [Raphaël Vinot]
|
|
3169
|
+
- Bump changelog. [Raphaël Vinot]
|
|
3170
|
+
- Bump version. [Raphaël Vinot]
|
|
3171
|
+
- Bump dependencies. [Raphaël Vinot]
|
|
3002
3172
|
- Require stable version of lief again. [Raphaël Vinot]
|
|
3003
3173
|
- Few more improvements on the feed export. [Raphaël Vinot]
|
|
3004
3174
|
- Bump misp-objects. [Raphaël Vinot]
|
|
@@ -3010,43 +3180,7 @@ Changes
|
|
|
3010
3180
|
- Bump dependencies. [Raphaël Vinot]
|
|
3011
3181
|
- [test] feed test updated as botvrij is now TLS by default. [Alexandre
|
|
3012
3182
|
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
3183
|
- 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
3184
|
- Bump changelog. [Raphaël Vinot]
|
|
3051
3185
|
- Bump version. [Raphaël Vinot]
|
|
3052
3186
|
- Bump misp-objects. [Raphaël Vinot]
|
|
@@ -3057,6 +3191,19 @@ Changes
|
|
|
3057
3191
|
|
|
3058
3192
|
Fix
|
|
3059
3193
|
~~~
|
|
3194
|
+
- Bump lief to 0.10.1. [Raphaël Vinot]
|
|
3195
|
+
- Update tests. [Raphaël Vinot]
|
|
3196
|
+
- Raise PyMISPError instead of Exception. [Raphaël Vinot]
|
|
3197
|
+
- Rename feed_meta_generator so it clearly fails with python<3.6.
|
|
3198
|
+
[Raphaël Vinot]
|
|
3199
|
+
- Improve stability of feed output. [Raphaël Vinot]
|
|
3200
|
+
- Do not unitialize the uuid in MISPEvent. [Raphaël Vinot]
|
|
3201
|
+
- Bump url template version in test cases. [Raphaël Vinot]
|
|
3202
|
+
- Python 2.7 tests. [Raphaël Vinot]
|
|
3203
|
+
- Print the full json blob in debug mode. [Raphaël Vinot]
|
|
3204
|
+
|
|
3205
|
+
Related https://github.com/MISP/PyMISP/issues/462
|
|
3206
|
+
- Avoid exception on legacy MISP. [Raphaël Vinot]
|
|
3060
3207
|
- [examples] typo uuid. [Jean-Louis Huynen]
|
|
3061
3208
|
|
|
3062
3209
|
give me a hoodie.
|
|
@@ -3070,6 +3217,7 @@ Fix
|
|
|
3070
3217
|
|
|
3071
3218
|
Other
|
|
3072
3219
|
~~~~~
|
|
3220
|
+
- Cch: Bump misp-objects. [Raphaël Vinot]
|
|
3073
3221
|
- Added example for checking sync servers. [wotschel]
|
|
3074
3222
|
- Corrected docstring. [Shortfinga]
|
|
3075
3223
|
- Include to_ids and replace newlines in title. [Koen Van Impe]
|
|
@@ -3297,6 +3445,12 @@ New
|
|
|
3297
3445
|
- Get_objects_by_name in MISPEvent. [Raphaël Vinot]
|
|
3298
3446
|
|
|
3299
3447
|
new: Convert datetime objects to python datetime.
|
|
3448
|
+
- [Sightings] Delete method. [Raphaël Vinot]
|
|
3449
|
+
|
|
3450
|
+
Fix #230
|
|
3451
|
+
- [tests] non-exportable tags. [Raphaël Vinot]
|
|
3452
|
+
- Add option to locally expand malware samples with LIEF. [Raphaël
|
|
3453
|
+
Vinot]
|
|
3300
3454
|
|
|
3301
3455
|
Changes
|
|
3302
3456
|
~~~~~~~
|
|
@@ -3311,6 +3465,23 @@ Changes
|
|
|
3311
3465
|
- [examples] pythonify properly when needed. [Raphaël Vinot]
|
|
3312
3466
|
- [tests] Toggle pythonify in create_massive_dummy_events. [Raphaël
|
|
3313
3467
|
Vinot]
|
|
3468
|
+
- Bump Changelog. [Raphaël Vinot]
|
|
3469
|
+
- Bump verison. [Raphaël Vinot]
|
|
3470
|
+
- Make pythonify=False default everywhere. [Raphaël Vinot]
|
|
3471
|
+
|
|
3472
|
+
Add a method to toggle pythonify globally
|
|
3473
|
+
- [tests] Update stats. [Raphaël Vinot]
|
|
3474
|
+
- [tests] Remove travis exceptions. [Raphaël Vinot]
|
|
3475
|
+
- Bump Changelog. [Raphaël Vinot]
|
|
3476
|
+
- Bump version. [Raphaël Vinot]
|
|
3477
|
+
- Bump misp-objects. [Raphaël Vinot]
|
|
3478
|
+
- Remove legacy tests. [Raphaël Vinot]
|
|
3479
|
+
- Improve deprecation message on PyMISP. [Raphaël Vinot]
|
|
3480
|
+
- [describeTypes] updated to add community-id. [Alexandre Dulaunoy]
|
|
3481
|
+
- Bump examples to python3. [Raphaël Vinot]
|
|
3482
|
+
- Reorganise ExpandedPyMISP methods, normalise the parameters. [Raphaël
|
|
3483
|
+
Vinot]
|
|
3484
|
+
- Deprecate everything in PyMISP. [Raphaël Vinot]
|
|
3314
3485
|
|
|
3315
3486
|
Fix
|
|
3316
3487
|
~~~
|
|
@@ -3323,38 +3494,6 @@ Fix
|
|
|
3323
3494
|
Also, deprecated method was broken.
|
|
3324
3495
|
|
|
3325
3496
|
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
3497
|
- [tests] Path to test file. [Raphaël Vinot]
|
|
3359
3498
|
|
|
3360
3499
|
Fix #423
|
|
@@ -3365,39 +3504,16 @@ Fix
|
|
|
3365
3504
|
- Properly handle fallbacks add/update/delete attributes. [Raphaël
|
|
3366
3505
|
Vinot]
|
|
3367
3506
|
- [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
3507
|
- Python < 3.6 support. [Raphaël Vinot]
|
|
3398
3508
|
|
|
3399
3509
|
Other
|
|
3400
3510
|
~~~~~
|
|
3511
|
+
- Add: New attribute type weakness. [chrisr3d]
|
|
3512
|
+
- Fix missing f in f-string. [Paal Braathen]
|
|
3513
|
+
- Wrong variable. [Georges Toth]
|
|
3514
|
+
- Remove unused line. [kovacsbalu]
|
|
3515
|
+
- Fix tag help text Minor pycodestyle. [kovacsbalu]
|
|
3516
|
+
- Fix for issue 420. [github-pba]
|
|
3401
3517
|
- Create statistical reports for MISP. [Koen Van Impe]
|
|
3402
3518
|
|
|
3403
3519
|
PyMISP script to run every x-days to get an overview of new
|
|
@@ -3918,6 +4034,7 @@ Changes
|
|
|
3918
4034
|
- Update order parameters & doc. [Raphaël Vinot]
|
|
3919
4035
|
- Add an extra IP from the warninglists. [Raphaël Vinot]
|
|
3920
4036
|
- Test for event UUID in attribute. [Raphaël Vinot]
|
|
4037
|
+
- Bump changelog. [Raphaël Vinot]
|
|
3921
4038
|
|
|
3922
4039
|
Fix
|
|
3923
4040
|
~~~
|
|
@@ -3953,14 +4070,6 @@ Other
|
|
|
3953
4070
|
Toth]
|
|
3954
4071
|
|
|
3955
4072
|
|
|
3956
|
-
v2.4.95.1 (2018-09-06)
|
|
3957
|
-
----------------------
|
|
3958
|
-
|
|
3959
|
-
Changes
|
|
3960
|
-
~~~~~~~
|
|
3961
|
-
- Bump changelog. [Raphaël Vinot]
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
4073
|
v2.4.95 (2018-09-06)
|
|
3965
4074
|
--------------------
|
|
3966
4075
|
|
|
@@ -4060,6 +4169,12 @@ Changes
|
|
|
4060
4169
|
- Fix sample retrieval from new-style zips. [Xavier Mehrenberger]
|
|
4061
4170
|
- Bump misp-objects. [Raphaël Vinot]
|
|
4062
4171
|
- Raise an exception if the response is not in JSON. [Raphaël Vinot]
|
|
4172
|
+
- Bump version. [Raphaël Vinot]
|
|
4173
|
+
- Bump changelog. [Raphaël Vinot]
|
|
4174
|
+
|
|
4175
|
+
Fix
|
|
4176
|
+
~~~
|
|
4177
|
+
- Index out of range in add_object. [Raphaël Vinot]
|
|
4063
4178
|
|
|
4064
4179
|
Other
|
|
4065
4180
|
~~~~~
|
|
@@ -4070,25 +4185,13 @@ Other
|
|
|
4070
4185
|
added: download_samples(..., unzip=True)
|
|
4071
4186
|
|
|
4072
4187
|
|
|
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
4188
|
v2.4.92 (2018-06-05)
|
|
4087
4189
|
--------------------
|
|
4088
4190
|
|
|
4089
4191
|
New
|
|
4090
4192
|
~~~
|
|
4091
4193
|
- Add edit_object, simplify add_object. [Raphaël Vinot]
|
|
4194
|
+
- Properly implement the Email object creator. [Raphaël Vinot]
|
|
4092
4195
|
|
|
4093
4196
|
Changes
|
|
4094
4197
|
~~~~~~~
|
|
@@ -4096,30 +4199,6 @@ Changes
|
|
|
4096
4199
|
- Bump misp-objects. [Raphaël Vinot]
|
|
4097
4200
|
- Bump version. [Raphaël Vinot]
|
|
4098
4201
|
- 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
4202
|
- Bump changelog. [Raphaël Vinot]
|
|
4124
4203
|
- Version bump. [Raphaël Vinot]
|
|
4125
4204
|
- Bump misp-objects. [Raphaël Vinot]
|
|
@@ -4128,13 +4207,23 @@ Changes
|
|
|
4128
4207
|
|
|
4129
4208
|
Fix
|
|
4130
4209
|
~~~
|
|
4210
|
+
- Correct docstring of search method. [iso]
|
|
4211
|
+
- Response data type mismatch in _send_attributes() [Raphaël Vinot]
|
|
4212
|
+
|
|
4213
|
+
Fix #206
|
|
4131
4214
|
- Wrong version. [Raphaël Vinot]
|
|
4215
|
+
- Decoding issue. [Raphaël Vinot]
|
|
4132
4216
|
- Properly get and decode the body of the email. [Raphaël Vinot]
|
|
4133
4217
|
- Provide the extension of the EML file to attach. [Raphaël Vinot]
|
|
4134
4218
|
- Properly handle attachments. [Raphaël Vinot]
|
|
4135
4219
|
- Test cases & attributes automatically getting an UUID. [Raphaël Vinot]
|
|
4136
4220
|
- Typo in the *feed methods. [Raphaël Vinot]
|
|
4137
4221
|
|
|
4222
|
+
Other
|
|
4223
|
+
~~~~~
|
|
4224
|
+
- Fix issue when adding multiple attributes and the instance is too
|
|
4225
|
+
slow. [Raphaël Vinot]
|
|
4226
|
+
|
|
4138
4227
|
|
|
4139
4228
|
v2.4.90 (2018-04-25)
|
|
4140
4229
|
--------------------
|
|
@@ -4208,6 +4297,12 @@ New
|
|
|
4208
4297
|
~~~
|
|
4209
4298
|
- Add email object generator. [Raphaël Vinot]
|
|
4210
4299
|
- Method to return an object by uuid. [chrisr3d]
|
|
4300
|
+
- APIs to manage sharing groups. [Raphaël Vinot]
|
|
4301
|
+
|
|
4302
|
+
Fix #185
|
|
4303
|
+
- ReturnMetaAttributes flag for freeTextImport API. [Raphaël Vinot]
|
|
4304
|
+
|
|
4305
|
+
Fix #188
|
|
4211
4306
|
|
|
4212
4307
|
Changes
|
|
4213
4308
|
~~~~~~~
|
|
@@ -4215,6 +4310,13 @@ Changes
|
|
|
4215
4310
|
- Bump version. [Raphaël Vinot]
|
|
4216
4311
|
- Bump Changelog. [Raphaël Vinot]
|
|
4217
4312
|
- Bump misp-objects. [Raphaël Vinot]
|
|
4313
|
+
- Bump Changelog. [Raphaël Vinot]
|
|
4314
|
+
- Version bump. [Raphaël Vinot]
|
|
4315
|
+
- Bump misp-objects. [Raphaël Vinot]
|
|
4316
|
+
- Bump describeTypes (add mime) [Raphaël Vinot]
|
|
4317
|
+
- Bump misp-objects. [Raphaël Vinot]
|
|
4318
|
+
- Bump describeType. [Raphaël Vinot]
|
|
4319
|
+
- Bump describeType. [Raphaël Vinot]
|
|
4218
4320
|
|
|
4219
4321
|
Fix
|
|
4220
4322
|
~~~
|
|
@@ -4225,6 +4327,7 @@ Fix
|
|
|
4225
4327
|
Fix #192
|
|
4226
4328
|
- Typo. [chrisr3d]
|
|
4227
4329
|
- Update reference test cases. [Raphaël Vinot]
|
|
4330
|
+
- Encode string in _encode_file_to_upload. [Raphaël Vinot]
|
|
4228
4331
|
|
|
4229
4332
|
Other
|
|
4230
4333
|
~~~~~
|
|
@@ -4274,36 +4377,6 @@ Other
|
|
|
4274
4377
|
The return will be a sighting list of event 42 with a filter for organisation 2.
|
|
4275
4378
|
- Add attributes within objects as well, for tagging via value/id/uuid.
|
|
4276
4379
|
[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
4380
|
- Prevent unpublished events to be included in feed. [Koen Van Impe]
|
|
4308
4381
|
|
|
4309
4382
|
Change default proposed config
|
|
@@ -4334,55 +4407,6 @@ Changes
|
|
|
4334
4407
|
- Allow to pass a directory with custom object templates. [Raphaël
|
|
4335
4408
|
Vinot]
|
|
4336
4409
|
- 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
4410
|
- Bump Changelog. [Raphaël Vinot]
|
|
4387
4411
|
- Bump version. [Raphaël Vinot]
|
|
4388
4412
|
- Bump misp-objects. [Raphaël Vinot]
|
|
@@ -4408,6 +4432,17 @@ Changes
|
|
|
4408
4432
|
|
|
4409
4433
|
Fix
|
|
4410
4434
|
~~~
|
|
4435
|
+
- Only skip test for 3.0->3.5. [Raphaël Vinot]
|
|
4436
|
+
- Sys.api_version -> sys.version_info. [Raphaël Vinot]
|
|
4437
|
+
- Allow to pass value, UUID, or ID to a sighting. [Raphaël Vinot]
|
|
4438
|
+
- Do not use basicConfig in __init__ [Raphaël Vinot]
|
|
4439
|
+
|
|
4440
|
+
Fix #170
|
|
4441
|
+
- Add_hashes was broken. [Raphaël Vinot]
|
|
4442
|
+
|
|
4443
|
+
Fix #174
|
|
4444
|
+
- Make python2 happy. [Raphaël Vinot]
|
|
4445
|
+
- Download old samples was broken. [Raphaël Vinot]
|
|
4411
4446
|
- Edited method works as expected, add tests. [Raphaël Vinot]
|
|
4412
4447
|
- Forgotten test files in last commit... [Raphaël Vinot]
|
|
4413
4448
|
- Disable_correlation from template not properly used. [Raphaël Vinot]
|
|
@@ -4425,6 +4460,31 @@ Fix
|
|
|
4425
4460
|
|
|
4426
4461
|
Other
|
|
4427
4462
|
~~~~~
|
|
4463
|
+
- Revert "chg: Re-enable python3.4 on travis..." [Raphaël Vinot]
|
|
4464
|
+
|
|
4465
|
+
Lief doesn't support python 3.4
|
|
4466
|
+
|
|
4467
|
+
This reverts commit 35a8d92acecd7a313bedcf197539eaa82176bcc7.
|
|
4468
|
+
- Add: Allow to fetch warninglists. [Raphaël Vinot]
|
|
4469
|
+
|
|
4470
|
+
Fix #180
|
|
4471
|
+
- Add tag test. [Louis LCE]
|
|
4472
|
+
- Add a simple test for uploading samples. [Louis LCE]
|
|
4473
|
+
- Add warning when failing to import dependencies. [Louis LCE]
|
|
4474
|
+
- Improve and refactor attributes tests. [Louis LCE]
|
|
4475
|
+
- Sb-signature library. [garanews]
|
|
4476
|
+
|
|
4477
|
+
Created sb-signature library with relative example for testing.
|
|
4478
|
+
Thanks @dadokkio
|
|
4479
|
+
- Linting. [Kory Kyzar]
|
|
4480
|
+
- Bug fix. [Kory Kyzar]
|
|
4481
|
+
- Change in add_attachment. Allow explicit attachment naming. [Kory
|
|
4482
|
+
Kyzar]
|
|
4483
|
+
- Change in new_tag function. Added attributie 'hide_tag' [Armīns Palms]
|
|
4484
|
+
- Change the comment of attribute. [Armīns Palms]
|
|
4485
|
+
- Fix add_hashes test function parameters. [Louis LCE]
|
|
4486
|
+
- Added misp object templates path argument. [Tobias Mainka]
|
|
4487
|
+
- Update settings.default.py. [Andras Iklody]
|
|
4428
4488
|
- Set_sightings. [AninaAntonie]
|
|
4429
4489
|
|
|
4430
4490
|
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 +4681,17 @@ Changes
|
|
|
4621
4681
|
- Remove warning if PyMISP is too new. [Raphaël Vinot]
|
|
4622
4682
|
- Add simple asciidoc generator for MISP event. [Raphaël Vinot]
|
|
4623
4683
|
- Update changelog. [Raphaël Vinot]
|
|
4684
|
+
- Version bump. [Raphaël Vinot]
|
|
4685
|
+
- Update changelog. [Raphaël Vinot]
|
|
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]
|
|
4624
4695
|
|
|
4625
4696
|
Fix
|
|
4626
4697
|
~~~
|
|
@@ -4642,6 +4713,17 @@ Fix
|
|
|
4642
4713
|
fix #120
|
|
4643
4714
|
- Properly pop the distribution key. [Raphaël Vinot]
|
|
4644
4715
|
- Update dependencies for VT generator. [Raphaël Vinot]
|
|
4716
|
+
- Properly bundle object templates. [Raphaël Vinot]
|
|
4717
|
+
- Properly bundle object templates. [Raphaël Vinot]
|
|
4718
|
+
- Fix typos and logic mistakes in mispevent. [Raphaël Vinot]
|
|
4719
|
+
- Fix travis build. [Raphaël Vinot]
|
|
4720
|
+
- Min required version of setuptools. [Raphaël Vinot]
|
|
4721
|
+
- Improve dependencies listing. [Raphaël Vinot]
|
|
4722
|
+
|
|
4723
|
+
Partial fix for #110
|
|
4724
|
+
- Missing default category. [Raphaël Vinot]
|
|
4725
|
+
|
|
4726
|
+
Fix #119
|
|
4645
4727
|
|
|
4646
4728
|
Other
|
|
4647
4729
|
~~~~~
|
|
@@ -4663,51 +4745,6 @@ Other
|
|
|
4663
4745
|
python3 add_generic_object.py -e 1683 -t email -d '{"subject":"The Pink Letter", "to":"jon@snow.org"}'
|
|
4664
4746
|
python3 add_generic_object.py -e 2343 -t person -d '{"first-name":"Daenerys", "last-name":"Targaryen", "place-of-birth":"Dragonstone"}'
|
|
4665
4747
|
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
4748
|
- Update openioc.py. [Andras Iklody]
|
|
4712
4749
|
- Added **kwargs to add_named_attribute call in add_attachment.
|
|
4713
4750
|
[tssbo82]
|
|
@@ -4718,25 +4755,13 @@ Other
|
|
|
4718
4755
|
v2.4.81 (2017-10-09)
|
|
4719
4756
|
--------------------
|
|
4720
4757
|
|
|
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
4758
|
Changes
|
|
4735
4759
|
~~~~~~~
|
|
4736
4760
|
- Update changelog. [Raphaël Vinot]
|
|
4737
4761
|
|
|
4738
4762
|
Fix
|
|
4739
4763
|
~~~
|
|
4764
|
+
- Changelog config + update. [Raphaël Vinot]
|
|
4740
4765
|
- Change readme. [Raphaël Vinot]
|
|
4741
4766
|
- Create file object. [Raphaël Vinot]
|
|
4742
4767
|
|
|
@@ -4747,6 +4772,8 @@ Fix
|
|
|
4747
4772
|
|
|
4748
4773
|
Other
|
|
4749
4774
|
~~~~~
|
|
4775
|
+
- Up: bump version. [Raphaël Vinot]
|
|
4776
|
+
- Up: Bump misp-objects. [Raphaël Vinot]
|
|
4750
4777
|
- Up: Version bump. [Raphaël Vinot]
|
|
4751
4778
|
- Up: Bump misp-objects & describeTypes. [Raphaël Vinot]
|
|
4752
4779
|
- Update readme. [Raphaël Vinot]
|
|
@@ -5107,14 +5134,6 @@ Other
|
|
|
5107
5134
|
|
|
5108
5135
|
v2.4.63 (2017-01-31)
|
|
5109
5136
|
--------------------
|
|
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
5137
|
|
|
5119
5138
|
Changes
|
|
5120
5139
|
~~~~~~~
|
|
@@ -5123,6 +5142,10 @@ Changes
|
|
|
5123
5142
|
Other
|
|
5124
5143
|
~~~~~
|
|
5125
5144
|
- Version bump. [Raphaël Vinot]
|
|
5145
|
+
- Fix regression. [Raphaël Vinot]
|
|
5146
|
+
|
|
5147
|
+
Fix #46
|
|
5148
|
+
- Version bump. [Raphaël Vinot]
|
|
5126
5149
|
- Fix testing. [Raphaël Vinot]
|
|
5127
5150
|
- Bug fixes. [Raphaël Vinot]
|
|
5128
5151
|
|
|
@@ -5300,10 +5323,6 @@ v2.4.53 (2016-10-21)
|
|
|
5300
5323
|
- First batch of changes, will be squashed. [Raphaël Vinot]
|
|
5301
5324
|
- Fixed search_index. [Hannah Ward]
|
|
5302
5325
|
- Toggle flag instead of value. [Alexandre Dulaunoy]
|
|
5303
|
-
|
|
5304
|
-
|
|
5305
|
-
v2.4.51.1 (2016-09-12)
|
|
5306
|
-
----------------------
|
|
5307
5326
|
- Version bump. [Raphaël Vinot]
|
|
5308
5327
|
- Fix examples after removal of MISP XML support. [Raphaël Vinot]
|
|
5309
5328
|
- Add some examples. [Déborah Servili]
|
|
@@ -5404,16 +5423,12 @@ v2.4.49 (2016-08-02)
|
|
|
5404
5423
|
examples/treemap/treemap.py. [Deborah Servili]
|
|
5405
5424
|
- Move files from examples/treemap to examples/situational-awareness/
|
|
5406
5425
|
[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
5426
|
- Version bump. [Raphaël Vinot]
|
|
5414
5427
|
- Add remove tag method. [Raphaël Vinot]
|
|
5415
5428
|
- Use same variable names as testing environment. [Raphaël Vinot]
|
|
5416
5429
|
- Make scripts executable. [Raphaël Vinot]
|
|
5430
|
+
- Rename examples/treemap/treemap.py to
|
|
5431
|
+
examples/statistics/attribute_treemap.py. [Deborah Servili]
|
|
5417
5432
|
- Random names for dummy files. [Déborah Servili]
|
|
5418
5433
|
- Add examples "create_dummy_event" and "create_massive_dummy_events"
|
|
5419
5434
|
[Déborah Servili]
|
|
@@ -5425,10 +5440,6 @@ v2.4.48.2 (2016-07-11)
|
|
|
5425
5440
|
- Fix python3 compat. Make Pep8 happy. [Raphaël Vinot]
|
|
5426
5441
|
- Make pep8 happy. [Raphaël Vinot]
|
|
5427
5442
|
- Comment removed. [Alexandre Dulaunoy]
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
v2.4.48.1 (2016-06-15)
|
|
5431
|
-
----------------------
|
|
5432
5443
|
- Fix check MISP latest version. [Raphaël Vinot]
|
|
5433
5444
|
- Add tag script. [Raphaël Vinot]
|
|
5434
5445
|
- Make pep8 happy. [Raphaël Vinot]
|
|
@@ -5536,18 +5547,6 @@ v2.4.36 (2016-04-15)
|
|
|
5536
5547
|
- Fixed a typo causing the tests to fail. [iglocska]
|
|
5537
5548
|
- README updated including keys.py usage. [Alexandre Dulaunoy]
|
|
5538
5549
|
- 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
5550
|
- Add add_ipsrc. [Raphaël Vinot]
|
|
5552
5551
|
- Add basic support for the proposal API. [Raphaël Vinot]
|
|
5553
5552
|
- Whitespace cleaned. [grolinet]
|
|
@@ -5556,11 +5555,15 @@ v2.1.1 (2015-11-05)
|
|
|
5556
5555
|
- Missing types added. [unknown]
|
|
5557
5556
|
- Missing types added. [unknown]
|
|
5558
5557
|
- [UnitTest] Add some functions, testing. [Raphaël Vinot]
|
|
5558
|
+
- Auth parameters updated. [Alexandre Dulaunoy]
|
|
5559
|
+
- Updated auth parameters. [Alexandre Dulaunoy]
|
|
5560
|
+
- Normalized auth parameters. [Alexandre Dulaunoy]
|
|
5561
|
+
- Normalized auth parameters. [Alexandre Dulaunoy]
|
|
5562
|
+
- Sample keys file added. [Alexandre Dulaunoy]
|
|
5563
|
+
- Normalized auth parameters. [Alexandre Dulaunoy]
|
|
5564
|
+
- Normalized auth parameters. [Alexandre Dulaunoy]
|
|
5565
|
+
- Auth parameters normalized. [Alexandre Dulaunoy]
|
|
5559
5566
|
- Improve error handling. [Raphaël Vinot]
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
v2.0.1 (2015-09-22)
|
|
5563
|
-
-------------------
|
|
5564
5567
|
- Add test cases (initial) [Raphaël Vinot]
|
|
5565
5568
|
- Fix typo in categories names. [Raphaël Vinot]
|
|
5566
5569
|
- Check the MISP instance to query is valid. [Raphaël Vinot]
|
|
@@ -5573,15 +5576,7 @@ v2.0.1 (2015-09-22)
|
|
|
5573
5576
|
- Add methods to query the version of MISP (master and local) [Raphaël
|
|
5574
5577
|
Vinot]
|
|
5575
5578
|
- Add publish method. [Raphaël Vinot]
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
v1.8.2 (2015-09-12)
|
|
5579
|
-
-------------------
|
|
5580
5579
|
- Try to convert event ID to integer if not None. [Raphaël Vinot]
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
v1.8.1 (2015-09-12)
|
|
5584
|
-
-------------------
|
|
5585
5580
|
- Fix bug in download sample function. [Raphaël Vinot]
|
|
5586
5581
|
|
|
5587
5582
|
Thanks to @kevthehermit
|
|
@@ -5613,10 +5608,6 @@ v1.8.1 (2015-09-12)
|
|
|
5613
5608
|
- Fix last commit. [Raphaël Vinot]
|
|
5614
5609
|
- Initial changes to increase flexibility for Viper module. [Raphaël
|
|
5615
5610
|
Vinot]
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
v1.1.2 (2015-08-05)
|
|
5619
|
-
-------------------
|
|
5620
5611
|
- Fix PyPi package. [Raphaël Vinot]
|
|
5621
5612
|
- Add netflow filter output. [Koen Van Impe]
|
|
5622
5613
|
|