https://cdn.jsdelivr.net/gh/ProtoConsent/data@main/lists/domains/protoconsent_third_parties.txt Rohliste öffnen Beschreibung
Filterliste aus den Bereichen Privatsphäre. Format: Domains. Betreut von ProtoConsent. Einzelheiten und Aufnahmekriterien stehen auf der Projektseite.
Integration
Pi-hole v6 (web interface)
- Open the admin interface and go to Settings → Lists.
- Paste the address below into Address, optionally add a comment and click Add.
- Go to Tools → Update Gravity (or run
pihole -g) to download the list.
https://cdn.jsdelivr.net/gh/ProtoConsent/data@main/lists/domains/protoconsent_third_parties.txt Pi-hole v5
- Go to Group Management → Adlists.
- Paste the address into Address and click Add.
- Run
pihole -gor use Tools → Update Gravity.
Command line (v5 / v6)
sudo sqlite3 /etc/pihole/gravity.db "INSERT INTO adlist (address, enabled, comment) VALUES ('https://cdn.jsdelivr.net/gh/ProtoConsent/data@main/lists/domains/protoconsent_third_parties.txt', 1, 'ProtoConsent Third Parties');"
pihole -g Pi-hole v5 only understands hosts and plain domain lists. Since v6 ABP-style entries (||example.com^) are supported as well.
- Open the AdGuard Home dashboard and go to Filters → DNS blocklists.
- Click Add blocklist → Add a custom list.
- Enter ProtoConsent Third Parties as name and paste the URL below, then click Save.
- AdGuard Home refreshes lists automatically; use Check for updates to force it.
https://cdn.jsdelivr.net/gh/ProtoConsent/data@main/lists/domains/protoconsent_third_parties.txt banIP (recommended)
- Install the package:
opkg update && opkg install banip luci-app-banip - Open LuCI → Services → banIP → Feeds and add a custom feed with the URL below.
- Enable the feed and click Save & Apply.
https://cdn.jsdelivr.net/gh/ProtoConsent/data@main/lists/domains/protoconsent_third_parties.txt Manual with nftables
wget -qO /tmp/blocklist.txt "https://cdn.jsdelivr.net/gh/ProtoConsent/data@main/lists/domains/protoconsent_third_parties.txt"
nft add set inet fw4 blocklist { type ipv4_addr; flags interval; }
nft -f - <<EOF
$(awk '!/^[#;]/ && NF {print "add element inet fw4 blocklist { " $1 " }"}' /tmp/blocklist.txt)
EOF
nft add rule inet fw4 forward ip saddr @blocklist drop 