-
-
Save djdeeles/8578665 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| #Put in /etc/adblock.sh | |
| #Script to grab and sort a list of adservers and malware | |
| #Delete the old block.hosts to make room for the updates | |
| rm -f /etc/block.hosts | |
| #Download and process the files needed to make the lists (add more, if you want) | |
| wget -qO- http://www.mvps.org/winhelp2002/hosts.txt| sed 's/0.0.0.0/127.0.0.1/g' |grep "^127.0.0.1" > /tmp/block.build.list | |
| wget -qO- http://www.malwaredomainlist.com/hostslist/hosts.txt|grep "^127.0.0.1" >> /tmp/block.build.list | |
| wget -qO- "http://hosts-file.net/.\ad_servers.txt"|grep "^127.0.0.1" >> /tmp/block.build.list | |
| wget -qO- "http://adaway.org/hosts.txt"|grep "^127.0.0.1" >> /tmp/block.build.list | |
| #Add black list, if non-empty | |
| [ -s "/etc/black.list" ] && sed -e 's/^/127.0.0.1\t/g' /etc/black.list >> /tmp/block.build.list | |
| #Sort the download/black lists | |
| sed -e 's/\r//g' -e 's/^127.0.0.1[ ]\+/127.0.0.1\t/g' /tmp/block.build.list|sort|uniq > /tmp/block.build.before | |
| if [ -s "/etc/white.list" ] | |
| then | |
| #Filter the blacklist, supressing whitelist matches | |
| sed -e 's/\r//g' /etc/white.list > /tmp/white.list | |
| grep -vf /tmp/white.list /tmp/block.build.before > /etc/block.hosts | |
| rm -f /tmp/white.list | |
| else | |
| cat /tmp/block.build.before > /etc/block.hosts | |
| fi | |
| #Delete files used to build list to free up the limited space | |
| rm -f /tmp/block.build.before | |
| rm -f /tmp/block.build.list | |
| #Restart dnsmasq | |
| /etc/init.d/dnsmasq restart | |
| exit 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/etc/black.list | |
| #add some server that the list doesn't block | |
| example1.block.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/etc/config/dhcp | |
| config dnsmasq | |
| option .... | |
| option ... | |
| etc.... | |
| list addnhosts '/etc/block.hosts' #ADD THIS LINE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/etc/firewall.user | |
| #Add these two lines | |
| iptables -t nat -I PREROUTING -p tcp --dport 53 -j REDIRECT --to-ports 53 | |
| iptables -t nat -I PREROUTING -p udp --dport 53 -j REDIRECT --to-ports 53 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/etc/crontabs/root | |
| #Add the following line | |
| 00 4 * * 0,3 sh /etc/adblock.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/etc/white.list | |
| #Add whitelisted addresses, when appropriate, etc. | |
| a248.e.akamai.net |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment