You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I am proposing an (automated) creation of a "hosts" file from the hosts listed. This can then be used by NW admins in academic institutions to point their entire network to an information page that informs the user that they just navigated to a potential scam website. This of course only works for those institutions that handle their own DNS servers or use something like pi-hole
I started on this just now
cat _data/*.csv | grep -oe "http[^,]*" | sed "s/,.*//" | sed "s/http[s]*:\/\///" | sed "s/\/.*//" > _ data/hosts
creates a list but unfortunately, not a good one, because the CSV files are not homogenous enough. I guess doing this in python should be no problem but I wanted to kick off a discussion first
The text was updated successfully, but these errors were encountered:
Hello,
I am proposing an (automated) creation of a "hosts" file from the hosts listed. This can then be used by NW admins in academic institutions to point their entire network to an information page that informs the user that they just navigated to a potential scam website. This of course only works for those institutions that handle their own DNS servers or use something like pi-hole
I started on this just now
creates a list but unfortunately, not a good one, because the CSV files are not homogenous enough. I guess doing this in python should be no problem but I wanted to kick off a discussion first
The text was updated successfully, but these errors were encountered: