Add parser to allow all IPv6 address in a /64 to be combined into one shared bucket #1420
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.
Add parser to allow all IPv6 addresses in a /64 to be combined into one shared bucket. This parser must be used with the crowdsecurity/ipv6_to_range postoverflow. Should there be an IPv6 collection that has both?
This is accomplished by using
TrimSuffix(IpToRange(evt.Meta.source_ip,"/64"),"/64")
to rewrite the source IP in the parser/s02-enrich stage to force the lower 64 bits to zero, which is still a valid IPv6 address. When going to scenarios designed for IP addresses all IPv6 addresses in a /64 will now go into a single bucket. On overflow, the crowdsecurity/ipv6_to_range postoverflow remediates on the entire /64 range.Example effects on source_ip:
2001:db8:1234:5678::abcd => 2001:db8:1234:5678::
2001:db8:1234:5678::1234 => 2001:db8:1234:5678::
2001:db8:1234:5678::5678 => 2001:db8:1234:5678::
2001:db8:1234:5678:abcd:1234:ef10:5678 => 2001:db8:1234:5678::
2001:db8:1234:5678:4545:cdcd:6868:dada => 2001:db8:1234:5678::
2001:db8:abcd:2020:abcd:1234:ef10:5678 => 2001:db8:abcd:2020::