hosts icon indicating copy to clipboard operation
hosts copied to clipboard

Take a look at these lists

Open udit-001 opened this issue 6 years ago • 11 comments

Found these lists which might be useful, take a look :

List of Phishing Sites https://openphish.com/feed.txt

List of domains associated with Ransomware https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt

udit-001 avatar Mar 03 '18 19:03 udit-001

Thanks Udit @udit-001. In particular, https://ransomwaretracker.abuse.ch looks very interesting.

StevenBlack avatar Mar 03 '18 19:03 StevenBlack

@StevenBlack i just checked some of the Phishing sites and some were blocked by the hosts file(means they're already in your list) and some by my adblocker(means they're not in the list but are legit pfishing sites). Probably it's a good idea the missing ones to be added for extra protection.

Example

access denied

dnmTX avatar Mar 03 '18 20:03 dnmTX

https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt

Ransomware Tracker has been discontinued on Dec 8th, 2019

that list seems to be gone

buzzdeee avatar Dec 17 '19 09:12 buzzdeee

WHAT??

danmed, back to the code :unamused:

spirillen avatar Dec 17 '19 10:12 spirillen

As for the remaining source, https://openphish.com/feed.txt, that's not a hosts file, so we would need a pre-process transformation for that. Other issues here imply transformations, too...

StevenBlack avatar Dec 17 '19 18:12 StevenBlack

That's simple

wget -qO- 'https://openphish.com/feed.txt' | cut -d "/" -f 3 | sort -u | uniq -u

If you like I can add it to my https://gitlab.com/my-privacy-dns/external-sources/hosts-sources but that would be without the prefixed IP

If requested it can then be added to the https://gitlab.com/my-privacy-dns/rpz-dns-firewall-tools/hosts

@StevenBlack just say the word and it will be alive

spirillen avatar Dec 17 '19 23:12 spirillen

@spirillen yeah but what I mean is, we need an in-framework pipeline for that.

StevenBlack avatar Dec 18 '19 00:12 StevenBlack

Note to self: 1816 unique domains.

StevenBlack avatar Dec 18 '19 00:12 StevenBlack

By the way, it's a feed, so the URLs are updated every 12 hours. https://openphish.com/phishing_feeds.html

liamengland1 avatar Dec 18 '19 00:12 liamengland1

wget -qO- 'https://openphish.com/feed.txt' | cut -d "/" -f 3 | sort -u | uniq -u | wc -l
908

wget -qO- 'https://openphish.com/feed.txt' | cut -d "/" -f 3 | wc -l
1795

spirillen avatar Dec 18 '19 10:12 spirillen

wget -qO- 'https://openphish.com/feed.txt' | cut -d "/" -f 3 | sort -u | uniq -u | wc -l 908

wget -qO- 'https://openphish.com/feed.txt' | cut -d "/" -f 3 | wc -l 1795

williesmith78 avatar Jul 07 '21 12:07 williesmith78