block/README.md

59 lines
3.9 KiB
Markdown
Raw Permalink Normal View History

2021-12-26 00:34:03 +00:00
# block
2020-02-22 09:51:02 +00:00
Hardened blocklist project designed for [dnscrypt-proxy](https://github.com/DNSCrypt/dnscrypt-proxy) [filter method](https://github.com/DNSCrypt/dnscrypt-proxy/wiki/Filters).
2020-02-22 10:13:45 +00:00
## Introduction
- `allowed-names.txt` is the file used to bypass a specific domain blocked by `blocked-names.txt` file.
- `blocked-names.txt` is the file used to block domains.
- `domains-blocklist.conf` is used before the generation process to define the sources to merge.
- `domains-blocklist-local-additions.txt` is used before the generation process to merge your inclusions.
- `domains-allowlist.txt` is used before the generation process to merge your exclusions.
- `generate-domains-blocklist.py` is the script used during the build process.
2020-02-22 10:13:45 +00:00
2021-01-22 09:23:19 +00:00
## Sources
2020-05-19 19:08:04 +00:00
### allowed-names.txt
2022-04-06 21:58:40 +00:00
| Source | Maintainer(s) | Description | Home Page | RAW Source | License |
|--------|:-------------:|-------------|:---------:|:----------:|:-------:|
### blocked-ips.txt
| Source | Maintainer(s) | Description | Home Page | RAW Source | License |
|--------|:-------------:|-------------|:---------:|:----------:|:-------:|
DNSCrypt: Rebind Protection | jedisct1 | DNS rebinding protection | [LINK](https://github.com/DNSCrypt/dnscrypt-proxy/wiki/Filters#dns-rebinding-protection) | - | [ISC](https://github.com/DNSCrypt/dnscrypt-proxy/blob/master/LICENSE) |
### blocked-names.txt
2021-01-22 09:23:19 +00:00
#### Inclusions
2020-05-19 19:08:04 +00:00
| Source | Maintainer(s) | Description | Home Page | RAW Source | License |
|--------|:-------------:|-------------|:---------:|:----------:|:-------:|
2021-10-24 20:06:41 +00:00
Developer Dan: AMP Hosts | Daniel (lightswitch05) | Block Google's Accelerated Mobile Pages (AMP). | [LINK](https://github.com/lightswitch05/hosts) | [RAW](https://www.github.developerdan.com/hosts/lists/amp-hosts-extended.txt) | [Apache-2.0](https://github.com/lightswitch05/hosts/blob/master/LICENSE) |
2024-01-12 21:50:20 +00:00
domains-blocklist-local-additions.txt | d3cim | Domains, wildcards and substrings collection. | [LINK](https://github.com/d3cim) | [RAW](https://raw.githubusercontent.com/d3cim/block/master/config/domains-blocklist-local-additions.txt) | [GPLv3](https://github.com/d3cim/block/blob/master/LICENSE.md) |
2024-01-21 23:52:12 +00:00
hagezi: DoH Bypass | hagezi (Gerd) | A merged list from a variety of other lists. | [LINK](https://github.com/hagezi/dns-blocklists) | [RAW](https://raw.githubusercontent.com/hagezi/dns-blocklists/main/wildcard/doh-onlydomains.txt) | [GPLv3](https://github.com/hagezi/dns-blocklists/blob/main/LICENSE) |
hagezi: Threat Intelligence Feeds | hagezi (Gerd) | A merged list from a variety of other lists. | [LINK](https://github.com/hagezi/dns-blocklists) | [RAW](https://raw.githubusercontent.com/hagezi/dns-blocklists/main/wildcard/tif-onlydomains.txt) | [GPLv3](https://github.com/hagezi/dns-blocklists/blob/main/LICENSE) |
hagezi: Ultimate | hagezi (Gerd) | A merged list from a variety of other lists. | [LINK](https://github.com/hagezi/dns-blocklists) | [RAW](https://raw.githubusercontent.com/hagezi/dns-blocklists/main/wildcard/ultimate-onlydomains.txt) | [GPLv3](https://github.com/hagezi/dns-blocklists/blob/main/LICENSE) |
2023-02-19 19:44:15 +00:00
OISD: big | Stephan (sjhgvr) | A merged list from a variety of other lists. | [LINK](https://oisd.nl/) | [RAW](https://big.oisd.nl/domainswild) | All Rights Reserved |
2021-01-22 09:23:19 +00:00
#### Exclusions
2021-01-22 09:23:19 +00:00
| Source | Maintainer(s) | Description | Home Page | RAW Source | License |
|--------|:-------------:|-------------|:---------:|:----------:|:-------:|
2024-01-12 21:50:20 +00:00
domains-allowlist.txt | d3cim | Legit domains collection. | [LINK](https://github.com/d3cim) | [RAW](https://raw.githubusercontent.com/d3cim/block/master/config/domains-allowlist.txt) | [GPLv3](https://github.com/d3cim/block/blob/master/LICENSE.md) |
2020-05-19 19:08:04 +00:00
2021-01-22 09:23:19 +00:00
## Build
2020-10-27 09:54:30 +00:00
2021-02-25 09:24:06 +00:00
To generate your own list you can clone this repo, move into the `config` folder, edit files according to your needs and run this command:
2022-11-16 00:25:32 +00:00
#### Linux
2020-10-27 09:54:30 +00:00
```
python3 generate-domains-blocklist.py > list.txt.tmp && mv -f list.txt.tmp list
2022-02-05 18:36:55 +00:00
```
2022-11-16 00:25:32 +00:00
#### Windows
```
py generate-domains-blocklist.py > list.txt
```