From 214798e47a134867cef3f9d72baab25cf28f578d Mon Sep 17 00:00:00 2001 From: Brian Cunnie Date: Sun, 17 Aug 2025 07:03:04 -0700 Subject: [PATCH] Unclutter git history by removing blocked sites Our commit history is cluttered with blocking sites due to takedown notices. It's unseemly, so we've created a new repo, , to be used exclusively for blocking phishers, scammers, and grifters. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index f709301..aff945f 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ import ( func main() { var blocklistURL = flag.String("blocklistURL", - "https://raw.githubusercontent.com/cunnie/sslip.io/main/etc/blocklist.txt", + "https://raw.githubusercontent.com/cunnie/sslip.io-blocklist/main/blocklist.txt", `URL containing a list of non-resolvable IPs/names/CIDRs, usually phishing or scamming sites. Example "file://etc/blocklist.txt"`) var nameservers = flag.String("nameservers", "ns-do-sg.sslip.io.,ns-gce.sslip.io.,ns-hetzner.sslip.io.,ns-ovh.sslip.io.", "comma-separated list of FQDNs of nameservers. If you're running your own sslip.io nameservers, set them here")