parent
462b0a4df9
commit
98a2faae5e
|
@ -3,14 +3,14 @@
|
||||||
# Allowlist #
|
# Allowlist #
|
||||||
###########################
|
###########################
|
||||||
|
|
||||||
## Rules for name-based query allowlisting, one per line
|
## Rules for allowing queries based on name, one per line
|
||||||
##
|
##
|
||||||
## Example of valid patterns:
|
## Example of valid patterns:
|
||||||
##
|
##
|
||||||
## ads.* | matches anything with an "ads." prefix
|
## ads.* | matches anything with an "ads." prefix
|
||||||
## *.example.com | matches example.com and all names within that zone such as www.example.com
|
## *.example.com | matches example.com and all names within that zone such as www.example.com
|
||||||
## example.com | identical to the above
|
## example.com | identical to the above
|
||||||
## =example.com | allowlists example.com but not *.example.com
|
## =example.com | allows example.com but not *.example.com
|
||||||
## *sex* | matches any name containing that substring
|
## *sex* | matches any name containing that substring
|
||||||
## ads[0-9]* | matches "ads" followed by one or more digits
|
## ads[0-9]* | matches "ads" followed by one or more digits
|
||||||
## ads*.example* | *, ? and [] can be used anywhere, but prefixes/suffixes are faster
|
## ads*.example* | *, ? and [] can be used anywhere, but prefixes/suffixes are faster
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
##############################
|
||||||
|
# IP blocklist #
|
||||||
|
##############################
|
||||||
|
|
||||||
|
## Rules for IP-based response blocking
|
||||||
|
##
|
||||||
|
## Sample feeds of suspect IP addresses:
|
||||||
|
## - https://github.com/stamparm/ipsum
|
||||||
|
## - https://github.com/tg12/bad_packets_blocklist
|
||||||
|
## - https://isc.sans.edu/block.txt
|
||||||
|
## - https://block.energized.pro/extensions/ips/formats/list.txt
|
||||||
|
|
||||||
|
163.5.1.4
|
||||||
|
94.46.118.*
|
||||||
|
fe80:53:* # IPv6 prefix example
|
||||||
|
|
Loading…
Reference in New Issue