Welche Listen machen für den deutschen Raum Sinn?

Listen für den XXX-Bereich:
Gibt es eigentlich Domainlisten, womit man die am meisten besuchten XXX-Seiten (z.B. red*tube.*com) aussperrt? Ich habe Kinder und dafür fänd ich es schon ganz passend hier ein wenig den Kanal dicht zu machen. Im Moment arbeite ich bei meinem 6jährigen noch mit einer Whitelist über die Fritzbox.


Für das Umwandeln der Easylist gibt es ein Script vom Kuketz-Blog:

# Download AdBlock Lists (EasyList, EasyPrivacy, Fanboy Annoyance / Social Blocking)
curl -s -L https://easylist.to/easylist/easylist.txt https://easylist.to/easylist/easyprivacy.txt https://easylist.to/easylist/fanboy-annoyance.txt https://easylist.to/easylist/fanboy-social.txt > adblock.unsorted

# Look for: ||domain.tld^
sort -u adblock.unsorted | grep ^\|\|.*\^$ | grep -v \/ > adblock.sorted

# Remove extra chars and put list under lighttpd web root
sed 's/[\|^]//g' < adblock.sorted > /var/www/html/adblock.hosts

# Remove files we no longer need
rm adblock.unsorted adblock.sorted
1 Like