I recently came across the no-qanon project, and was wondering if there was a way to get this in a plugin. I currently use the DNS Adblocking plugin, and it works well.
They also provide a large list of domains that get blocked. I've used Gargoyle to block individual domains, but I don't see a way to import a list into the hostfile, or similar. Am I missing something?
I can't post a link, but the no-qanon project can be found on github, created by rimu.
no-qanon plugin, or any way to block many domains?
Moderator: Moderators
Re: no-qanon plugin, or any way to block many domains?
Modify the adblock plugin to pull in another source. There is no support for adding sources by config or by GUI, so you have to mod the plugin.
https://github.com/ericpaulbishop/gargo ... ck.sh#L105
Duplicate line 105 and change the source to
https://raw.githubusercontent.com/rimu/ ... _hosts.txt
i.e. add a line such as
https://github.com/ericpaulbishop/gargo ... ck.sh#L105
Duplicate line 105 and change the source to
https://raw.githubusercontent.com/rimu/ ... _hosts.txt
i.e. add a line such as
Code: Select all
ewget https://raw.githubusercontent.com/rimu/no-qanon/master/dnsmasq_hosts.txt 2>/dev/null | awk -v r="$ENDPOINT_IP4" '{sub(/^0.0.0.0/, r)} $0 ~ "^"r' > /tmp/block.build.list
https://lantisproject.com/downloads/gargoylebuilds for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.
Please be respectful when posting. I do this in my free time on a volunteer basis.
Re: no-qanon plugin, or any way to block many domains?
Thanks, I'll give it a try.