Email or username:

Password:

Forgot your password?
3 comments
jbaggs

@TexJoachim @faoluin This list filters on more than just sites, so you're not going to be able to get 100% there with DNS filtering.

RooneyMcNibNug

@TexJoachim @faoluin I just did a

$ perl -lne 'print $1 while /"(.*?)"/g' list.txt > root_ai_urls.txt

against that list to produce a nice blocklist with all of the main URLs.

You could use something like adblockplus syntax w/those if you want.

I also did a full enumeration of subdomains on that list (code in the comment of one of the files below) for a more verbose URLs output.

I put it all in this repo for now - do whatever you want with this info, of course: github.com/RooneyMcNibNug/piho

@TexJoachim @faoluin I just did a

$ perl -lne 'print $1 while /"(.*?)"/g' list.txt > root_ai_urls.txt

against that list to produce a nice blocklist with all of the main URLs.

You could use something like adblockplus syntax w/those if you want.

I also did a full enumeration of subdomains on that list (code in the comment of one of the files below) for a more verbose URLs output.

Go Up