The whitelisting tool of the Ultimate Hosts Blacklist project.
Project description
This is the whitelisting tool provided by the Ultimate Hosts Blacklist project. The script is mainly used to whitelist subject (domains, IP, URL) into our infrastructure but it can also easily be used outside our infrastructure.
The ultimate hosts blacklist whitelist (UHBW) tool allows you:
to append your own whitelist as complementary to our whitelist.
uhb_whitelist -f inputfile -o outputfile -w whitelistfile
to anti-whitelist (reverse) only particular domains while still using our core list.
uhb_whitelist -f inputfile -o outputfile --anti-whitelist antiwhitelistfile
to whitelist and anti-whitelist while still using our core list.
uhb_whitelist -f inputfile -o outputfile --anti-whitelist antiwhitelistfile -w whitelistfile
to override our core whitelist whilst still applying your own personal whitelist and anti-whitelist.
uhb_whitelist -f inputfile -o outputfile --anti-whitelist antiwhitelistfile -w whitelistfile -wc
to have a whitelist tool ready to use as a Python module.
Installation
$ pip3 install --user ultimate-hosts-blacklist-whitelist
The hosted whitelist
The hosted whitelist can be found at whitelist This white-list is maintained by the team of good peoples behind the whitelist project.
Complementary whitelist
UHBW allows you to link one or more file(s) to the system which will be used as complementary to the hosted whitelist, which is downloaded and used by default.
Special markers
If you already have tried to use a whitelist, you’ll probably know, that in generally you can only add one domain or URL per line in a file, for which you want to whitelist.
With UHBW you can do this, but in addition to that tedious way, UHBW allows you
to use Regex, RZD
and ALL
ALL
The ALL
marker will tell the system to escape and regex check against
what follows.
INVALID characters
$
As we automatically append
$
to the end of each line, you should not use this character.
\\
As we automatically escape any given expression, you should not explicitly escape your regular expression when declaring an
ALL
marker.
REG
The REG
marker will tell the system to explicitly check for the given
regex which follows the marker.
RZD
The RZD
marker will tell the system to explicitly check for the given
string plus all possible TDL.
Anti whitelist
Don’t like some of our rule(s)? UHBW allows you to specify a file, which contain a list of rule(s) you don’t want to be applied.
Simply use the --anti-whitelist
flag to provide one or more anti whitelist
files and UHBW will obey your wishes!
Understanding how UHBW whitelist works
If you have your own whitelist, with the following lines:
facebook.com ALL .gov REG face RZD example
UHBW will do as follows:
Remove every line which match
facebook.com
andwww.facebook.com
In complementary convert all lines with
ALL
orREG
to the right format.Remove every line which match
example.*
Check every line against the regular expression. More about this in next chapter.
Print the results on screen or save to output file
-o $output.file
.
The generated regular expression will from this example be:
(\.gov$)|(face)|(example(.*))
Which means UHBW actually will whitelist:
all elements/lines which ends with
.gov
all elements/lines which contain the word
face
all possible TDL combination which starts with
example
File Formats
Your input files of domains / urls should be one domain / url per line and should also preferably be sorted.
sort -u inputfile -o inputfile
Usage of the tool
The script can be called by uhb-whitelist
, uhb_whitelist
or
ultimate-hosts-blacklist-whitelist
.
usage: ultimate-hosts-blacklist-whitelist [-h] [-a ANTI_WHITELIST [ANTI_WHITELIST ...]] [--all ALL [ALL ...]] [-d] [-df] [-f FILE] [--hierachical-sorting] [-o OUTPUT] [-m] [--no-complement] [-p PROCESSES] [--reg REG [REG ...]] [--rzd RZD [RZD ...]] [--standard-sorting] [-v] [-w WHITELIST [WHITELIST ...]] [-wc] UHBW is a tool to clean up lists or hosts files with the hosted and/or your own whitelist. optional arguments: -h, --help show this help message and exit -a ANTI_WHITELIST [ANTI_WHITELIST ...], --anti-whitelist ANTI_WHITELIST [ANTI_WHITELIST ...] Read the given file override rules from the UHBW hosted whitelist which is used by default. (See also `-wc`) --all ALL [ALL ...] Read the given file(s) and append its rules to the whitelisting schema. Note: The rules injected through this argument will be automatically prefixed with the `ALL` marker. -d, --debug Activate the debug mode. This mode will write the whole processes to stdout. -df, --debug-into-file Activate the logging into a file called `uhb_whitelist_debug` at the current location. -f FILE, --file FILE The file to whitelist/clean. --hierachical-sorting Process a hierarchical sorting when outputing into a file. -o OUTPUT, --output OUTPUT Save the result to the given filename or path. (Can not be the same as input file `-f`) -m, --multiprocessing Activate the usage of multiple core processes. --no-complement Forbid us the generation of complements while parsing the whitelist list. Complements are `www.example.org` if `example.org` is given and vice-versa. -p PROCESSES, --processes PROCESSES The number of (maximal) processes core to use. --reg REG [REG ...] Read the given file(s) and append its rules to the whitelisting schema. Note: The rules injected through this argument will be automatically prefixed with the `REG` marker. --rzd RZD [RZD ...] Read the given file(s) and append its rules to the whitelisting schema. Note: The rules injected through this argument will be automatically prefixed with the `RZD` marker. --standard-sorting Process a sorting when outputing into a file. -v, --version Show the version end exist. -w WHITELIST [WHITELIST ...], --whitelist WHITELIST [WHITELIST ...] Read the given file(s) and append its rules to the whitelisting schema. Note: The rules injected through this argument won't be changed. We follow what you give us. That means that if you give any of our supported rules, they will still be appended to the whitelisting schema. -wc, --without-core Disable the usage of the Ultimate Hosts Blacklist whitelist hosted list. Crafted with ♥ by Nissar Chababy (Funilrys)
Contributors
Daniel - @dnmTX
Spirillen - @spirillen
License
MIT License Copyright (c) 2018, 2019, 2020, 2021, 2022 Ultimate-Hosts-Blacklist Copyright (c) 2018, 2019, 2020, 2021, 2022 Nissar Chababy Copyright (c) 2019, 2020, 2021, 2022, 2023, 2024 Mitchell Krog Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ultimate-hosts-blacklist-whitelist-3.27.2.tar.gz
.
File metadata
- Download URL: ultimate-hosts-blacklist-whitelist-3.27.2.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fcd827377b1876aad1c7616688bf188e15e6a34902f83c6cc8d798905680c56 |
|
MD5 | 0adb4e64b1d46454cc00a7ae86821590 |
|
BLAKE2b-256 | 5ffd7a4613e7add594a0f0b21270a1b74de488beed8a76af9b5694234670dbab |
Provenance
File details
Details for the file ultimate_hosts_blacklist_whitelist-3.27.2-py3-none-any.whl
.
File metadata
- Download URL: ultimate_hosts_blacklist_whitelist-3.27.2-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f971614bfe6ffc2f02363dd9274b4ee2166556307db18535a57f675616282348 |
|
MD5 | 17824a51ea6f96a813b4a02d7eab440b |
|
BLAKE2b-256 | 545340673c893c642c4ecd54714d1853e3ef5be2ccdb72c327ae165916886001 |