PyMISP
PyMISP copied to clipboard
Python library using the MISP Rest API
The EventId can be used in an API call or within PyMISP utility to delete or update a specific event. Is there a MISP configuration to enable so when adding...
This PR adds in the functionality to set a taxonomies required status as per #831. Turns out the toggle isn't really a toggle on MISP's API and you in fact...
Hi Community I'm integrating MISP with WAZUH I did all the necessary configuration on the files: -Ossec.conf: on wazuh server -misp.xml: new rule on the wazuh server -custom-misp.py: on the...
Bumps [python-dateutil](https://github.com/dateutil/dateutil) from 2.8.2 to 2.9.0. Release notes Sourced from python-dateutil's releases. 2.9.0 Version 2.9.0 (2024-02-29) Data updates Updated tzdata version to 2024a. (gh pr #1342) Features Made all dateutil...
Hi, i got an issue when trying to upload stix2 event with in-memory file ``` import io inmemoryfile = io.StringIO() json.dump(stix_data, inmmemoryfile) misp_event = misp.upload_stix(inmemoryfile) ``` this code cannot added...
Hi, Appreciate your help to check the below misp error after it was working fine, Traceback (most recent call last): File "/opt/app-root/lib64/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen self._prepare_proxy(conn) File "/opt/app-root/lib64/python3.9/site-packages/urllib3/connectionpool.py", line...
I would like to search for attributes that do not have a set first_seen value (value set to None). When using the PyMISP search functions as follows: **pymisp.search(controller='attributes', first_seen=None)** The...
### Context What: I enrich external organisation events using local tags to ensure that my semantic is not beeing propagated Why: Those tags are used to pivot on if the...
PyMISP exported event fails schema validation. `event.to_json()` returned event is when passed through the standard MISP schema (https://github.com/MISP/MISP/blob/2.4/format/2.4/schema.json), the schema validation fails for: 1. publish_timestamp - is expected to be...
I have created two events with the same tag. One has attributes and the other one is empty. If I run: `event_list = misp.search(collector="event", tags=my_tag)` The list will only contain...