Skip to content

Commit

Permalink
chg: [tools publicdns] add missing composite attribute type
Browse files Browse the repository at this point in the history
  • Loading branch information
adulau committed Jun 15, 2024
1 parent dbdb8f0 commit b951949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/generate-publicdns.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def process(ipv4: List, ipv6: List, hostname: List):
'description': 'Event contains one or more public IPv4 DNS resolvers as attribute with an IDS flag set',
'name': 'List of known IPv4 public DNS resolvers',
'type': 'cidr',
'matching_attributes': ['ip-src', 'ip-dst', 'domain|ip']
'matching_attributes': ['ip-src', 'ip-dst', 'domain|ip', 'ip-src|port', 'ip-dst|port']
}
generate(ipv4, publicdns_ipv4_warninglist, publicdns_ipv4_dst)

Expand All @@ -37,7 +37,7 @@ def process(ipv4: List, ipv6: List, hostname: List):
'description': 'Event contains one or more public IPv6 DNS resolvers as attribute with an IDS flag set',
'name': 'List of known IPv6 public DNS resolvers',
'type': 'cidr',
'matching_attributes': ['ip-src', 'ip-dst', 'domain|ip']
'matching_attributes': ['ip-src', 'ip-dst', 'domain|ip', 'ip-src|port', 'ip-dst|port']
}
generate(ipv6, publicdns_ipv6_warninglist, publicdns_ipv6_dst)

Expand Down

0 comments on commit b951949

Please sign in to comment.