nongrata v0.4.0
nongrata
Aggregates multiple IP blacklists, validates each entry, and outputs a new, sanitized, and reduced, newline delimited list.
nongrata
is already very safe as it only connects to services you think are reputable. That being said the assumption has be that it is exploitable are the underlying libraries. As such nongrata
is privilege separated, chroot
ed, and on OpenBSD pledge
d. If someone attempts to exploit this software they will have trouble, won't get far, or will outright kill the process.
Installation
sudo make install
make clean
Usage
Basic Usage:
nongrata
Cron Usage:
nongrata -c
Cron Usage + pf
:
nongrata -c && (pfctl -q -t drop -T replace -f /etc/pf.list/drop)
Help:
Usage: nongrata [arguments]
-f file Specifies the configuration file. The default is /etc/nongrata.conf.
-c, --cron Silences the applications output unless there is an error. Useful for cron.
-v, --version Show the version number.
-h, --help Show this help.
Configuration
There are included sample configurations under the sample subdirectory.
I recommend whitelisting your LAN block, WAN address, and any other known good addresses or blocks. This will prevent them from being on the resultant list.
Lists:
The configuration is a collection of named lists you would like to construct. Each List should contain an output
where the list will be written and optionally a whitelist
, which can contain addresses or address blocks which will not be allowed in the resulting list. Additionally It needs to contain a collection of named sources from which to get the source data.
output
: stringwhitelist
: [ optional, list, of, addresses, and, blocks ]
BadGuyList: {
output: /etc/pf.lists/badguys
whitelist: [ "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16" ]
sources: {
// Your collection of named sources.
}
}
Sources:
Sources can currently be 1 of 2 types, list
or table
. By default if type is not specified list
is used. Both types have the url
key which contains the url for the source.
A source which is a list
is (by default) a newline delimited list of addresses and blocks. With this type you also have the option of selecting the entry delimiter with the delimiter
key (by default a newline), as well as the comment style with the comment
key (by default a #
).
url
: url stringtype
: listdelimiter
: string - by default \ncomment
: string - by default #
Spamhaus: {
url: https://www.spamhaus.org/drop/drop.txt
type: list
comment: ;
}
A source which is a table
is a table with newline delimited rows where a column contains an address or block. With this type you also have the option of selecting the column whcih will be interpreted as an address or block with the column
key (by default 0), the column delimiter with the delimiter
key (by default a comma), the comment style with the comment
key (by default a #
), and selectors of a line based on the lines prefix, or suffix using the keys prefix
, and suffix
respectively.
url
: url stringtype
: tablecolumn
: integerdelimiter
: string - by default ,comment
: string - by default #prefix
: string or null - disabled by defaultsuffix
: string or null - disabled by default
Tor: {
url: https://check.torproject.org/exit-addresses
type: table
column: 1
delimiter: " "
prefix: ExitAddress
suffix: nil
}
Contributing
- Fork it ( https://github.com/chris-huxtable/nongrata/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- Chris Huxtable - creator, maintainer
nongrata
- 4
- 0
- 0
- 0
- 8
- about 6 years ago
- February 23, 2018
ISC License
Thu, 07 Nov 2024 15:44:25 GMT