← Back to all feeds

🔗 Domains & URLs Blocklist

Malicious domains and URLs used for phishing, malware distribution, C2 infrastructure, and other malicious activities. Use for DNS filtering and web security.

Domain Feed

All malicious domains and URLs

all_domains.txt
Complete domain and URL feed
View Download

How to Use Domain Blocklists

Pi-hole DNS Blocking:

#!/bin/bash
# Add to Pi-hole blocklist

curl -s https://www.check-the-sum.fr/feeds/domains/all_domains.txt \
  >> /etc/pihole/custom.list

pihole -g  # Reload gravity database

AdGuard Home:

# Add as custom filtering rule
# Settings > DNS blocklists > Add blocklist
# URL: https://www.check-the-sum.fr/feeds/domains/all_domains.txt

hosts File Blocking:

#!/bin/bash
# Block via /etc/hosts

curl -s https://www.check-the-sum.fr/feeds/domains/all_domains.txt | \
  awk '{print "0.0.0.0 " $1}' >> /etc/hosts