Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds a new processing handler that, not unlike the Bloom filter handler, emits alerts when source or destination IPs in any incoming event are within a list of CIDR ranges previously given to FEVER.
For instance, one could provide a list such as
which would cause any traffic from or to, say, 10.0.0.45 or 35.190.247.122 to generate an alert. The original contents of the EVE metadata item that caused the alert is attached inside the alert EVE, as it is done with traditional alerts generated by Suricata.
Here's what an alert would look like:
Ranges to alert on are held in a trie implemented by cidranger (https://github.com/yl2chen/cidranger) so lookups are fast enough to be done on both IPs in potentially high-volume input data selections.