PyMISP icon indicating copy to clipboard operation
PyMISP copied to clipboard

Python library using the MISP Rest API

Results 104 PyMISP issues
Sort by recently updated
recently updated
newest added

When doing a search I get the error message **The template (vulnerability) doesn't have the object_relation (vulnerable_configuration) you're trying to add.** (> https://github.com/MISP/PyMISP/blob/main/pymisp/mispevent.py#L1032) ``` events_object = misp.search(object_name="vulnerability", date_from="2022-01-01", pythonify=True, limit=250)...

After upgrading one of my pymisp instances that runs on OpenBSD system to 2.4.160, it presented the following error: ``` In [1]: import pymisp --------------------------------------------------------------------------- AttributeError Traceback (most recent call...

When using the WebUI and creating an attribute under an event, selecting a type and value that are not compatible will present an error message with an explanation and deny...

When requesting all warninglists to be returned (yes, this can consume a lot of memory), the list is capped at 60 warninglists (limit of the index page?). ``` warninglists =...

### Environment pyMISP version: 2.4.159: Python Notebooks running on Azure Databricks Cloud Clusters MISP Servers (2.4.159) are On-Premise ### Issue: We are unable to query 'real-world' data sets via MISP...

We've noticed that `search_index` does not include events with zero attributes in the result. ``` eventList = misp.search_index( published = False, pythonify = False, minimal = True) ``` Is there...

When using `api.add_event_report()`, I get two errors. 1. When a MISPEvent is provided, `api.get_uuid_or_id_from_abstract_misp()` returns the UUID, but the `add_event_report()` for the `event` value must be the MISPEvent['id'] integer or...

In order to not break our MISP feeds, we have been updating attributes and editing them with `update_attribute` when we have new attribute data to provide. Namely, we keep updating...

Hi, I'm trying to write a Python script to take a clean install of MISP to a fully configured production instnace, the bit I'm currently stuck on is making a...

good first issue

Hi, I am having an issue with the retrieving events with PyMISP. When I use the _search()_ function from _PyMISP_ class with the _date_to_ argument, the returned list of events...