(Edit: typo)
Block Adware and Malware with /etc/hosts
11–20 of 79 posts
Re: Block Adware and Malware with /etc/hosts
#12This is the default list used by the pihole project as well; it's a very good list. FWIW, something like ublock origin is going to be better for in-browser blocking (for example, DNS poisoning won't work with youtube ads, which are served from youtube.com, but addins like UBO can remove them because they can hook into the actual traffic). The ultimate adblocking solution is to use UBO in your browsers AND spin up a p…
Re: Block Adware and Malware with /etc/hosts
#13To ensure there are no nefarious redirects in such a massive list, this one-liner comes in handy[1]: grep -v '#' steves_hosts | awk '{print $1}'| sort | uniq -c [1] https://news.ycombinator.com/item?id=11456562
Re: Block Adware and Malware with /etc/hosts
#14Reminds me of SlashDot where there was a relatively well known submitter that was a huge proponent of host-based ad blocking on Windows and was also a proponent of getting very angry at almost anyone else. (Edit: typo)
Slashdot has a, shall we say _engaged_, community.
Re: Block Adware and Malware with /etc/hosts
#15To ensure there are no nefarious redirects in such a massive list, this one-liner comes in handy[1]: grep -v '#' steves_hosts | awk '{print $1}'| sort | uniq -c [1] https://news.ycombinator.com/item?id=11456562
What is a nefarious redirect? Does it look for entries without 127.0.0.1?
190625 0.0.0.0
3 127.0.0.1
1 255.255.255.255
3 ::1
1 fe80::1%lo0
2 ff00::0
1 ff02::1
1 ff02::2
1 ff02::3Re: Block Adware and Malware with /etc/hosts
#16To ensure there are no nefarious redirects in such a massive list, this one-liner comes in handy[1]: grep -v '#' steves_hosts | awk '{print $1}'| sort | uniq -c [1] https://news.ycombinator.com/item?id=11456562
What is a nefarious redirect? Does it look for entries without 127.0.0.1?
Re: Block Adware and Malware with /etc/hosts
#17If you can manage it, a pihole/pivpn instance may be better. Both of those can be installed on any debian distro easily.
Re: Block Adware and Malware with /etc/hosts
#18To ensure there are no nefarious redirects in such a massive list, this one-liner comes in handy[1]: grep -v '#' steves_hosts | awk '{print $1}'| sort | uniq -c [1] https://news.ycombinator.com/item?id=11456562
* https://porkmail.org/era/unix/award#grep
awk '!/#/ { seen[$1]++; } END { for (k in seen) { print seen[k],k; } }' steves_hostsRe: Block Adware and Malware with /etc/hosts
#19A tech as old as Kazaa lite. But people like to use heavy ram chrome browser extension to do the same thing.
Re: Block Adware and Malware with /etc/hosts
#20This is the default list used by the pihole project as well; it's a very good list. FWIW, something like ublock origin is going to be better for in-browser blocking (for example, DNS poisoning won't work with youtube ads, which are served from youtube.com, but addins like UBO can remove them because they can hook into the actual traffic). The ultimate adblocking solution is to use UBO in your browsers AND spin up a p…
pi-hole also makes it super easy to block .zip and .mov TLDs.