CLI tool for pulling known malicious domains into a blackhole list. Primarily meant to be used with PDNS Recursor. The tool can pull in blackholed domains from multiple adlist sources and output them into multiple places in various formats.
Requires a stable build of Rust, preferably the latest one. I haven't checked what is the minimum stable version the tool builds on.
cargo install singularity
cargo install --path .
singularity
All CLI options can be seen with the --help
flag. The options are:
-v
, --verbose
: enable additional debug output to stdout-c
, --config
: a custom configuration file to use instead of the default-t
, --timeout
: timeout in milliseconds to wait for each HTTP request to succeed (default: 1000)By default, the tool will use a confiuration file in the current system-dependent location. On Linux, this is $HOME/.config/singularity/singularity.conf
. The file will be created if it doesn't exist and will contain empty values.
Complete example configuration file:
```toml [[adlist]] source = "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" format = "hosts"
[[adlist]] source = "file:/absolute/path" format = "domains"
[[output]] type = "hosts" destination = "/etc/powerdns/hosts" blackhole-address = "0.0.0.0" include = ["extra-hosts"]
[[output]] type = "pdns-lua" destination = "/etc/powerdns/blackhole.lua" blackhole-address = "::" outputmetric = true metricname = "blocked-queries" ```
adlist
An array of objects describing adlist sources. They have two keys:
* source
: URL to the source of the adlist. The URL scheme can be http
, https
or file
. If it's a file
URL, its path will be interpreted as an absolute filesystem path in the local system.
* format
: the format the adlist's entries are in. This option can be omitted for the default hosts
value. The value can be either:
* hosts
: standard /etc/hosts
-style entries; 0.0.0.0 malicious.domain
. It is assumed the address in each entry is the unspecfied 0.0.0.0
IP address. Entries that have a different IP address or have an IP address as the domain are ignored.
* domains
: each line is just a domain name: malicious.domain
.
Regardless of the source or format, any lines in an adlist beginning with a #
are ignored and will not be included in the output.
output
An array of objects describing where and how to output the blackholed domains. The type of each output is specified with the type
key. The possible types are:
* hosts
: output a standard hosts-format where each line is in the format of <blackhole-address> <name>
. Other hosts-files can be included in the output by settings their paths in the include
array option.
* pdns-lua
: output a Lua script that can be used with the lua-dns-script
configuration option in PDNS Recursor. The script will have each blackholed domain hardcoded into it. By using the preresolve()
function, the script will respond to queries for the blackholed domains with either an A
-record or an AAAA
-record containing the blackhole-address
. The type of the record depends on whether the blackhole-address
is an IPv4- or an IPv6-address. By default, the script will output a metric called blocked-queries
that is incremented every time the script responds to a blocked domain. It is accessible through the same means as every other Recursor metric. It can be disabled with the output_metric
setting, and the metric's name can be customised with the metric_name
setting. Both settings can be omitted for their default values.
In all output types, the default blackhole-address
is 0.0.0.0
and can be changed per-output.