You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an administrator configure TheHive to poll events from one or several MISP instances, TheHive will fetch all the events and analysts end up drowning under new alerts.
Possible Solutions
Add the ability to filter MISP events according multiple criteria, such as tags, before they can make it to TheHive's alerting panel.
The text was updated successfully, but these errors were encountered:
MISP event can be excluded according to the following filters:
- the maximum number of attributes (max-attributes)
- the maximum size of the event json message
- the age of the last publication
- the organisation is black-listed
- one of the tags is black-listed
The filters are configurable in each connexion settings:
misp {
"MISP-SERVER-ID" {
url = "http://127.0.0.1"
key = "MISP-KEY"
# filters:
max-attributes = 1000
max-size = 1 MiB
max-age = 7 days
exclusion {
organisation = ["bad organisation", "other orga"]
tags = ["tag1", "tag2"]
}
}
}
Request Type
Feature Request
Work Environment
Problem Description
When an administrator configure TheHive to poll events from one or several MISP instances, TheHive will fetch all the events and analysts end up drowning under new alerts.
Possible Solutions
Add the ability to filter MISP events according multiple criteria, such as tags, before they can make it to TheHive's alerting panel.
The text was updated successfully, but these errors were encountered: