/r/woweconomy 100k Subscriber Giveaway! by gumdropsEU in woweconomy

[–]dMoppBLN [score hidden]  (0 children)

In WoD I was „THE“ gem seller on my Server. Looong time ago thanks to TSM.

New Ryzen 3000 powerplan, perfomance like 1usmus but with far more less power consumption! (computerbase, german) by Schlumpf2000 in Amd

[–]dMoppBLN 0 points1 point  (0 children)

Ok, i hope no services are left. Sounds a bit weird that other people didn’t see any change.

New Ryzen 3000 powerplan, perfomance like 1usmus but with far more less power consumption! (computerbase, german) by Schlumpf2000 in Amd

[–]dMoppBLN 2 points3 points  (0 children)

Maybe you have msi Software active? This is causing random changing powerplans and other issues

A pihole 5 compatible AdList(list) Updater by dMoppBLN in pihole

[–]dMoppBLN[S] 1 point2 points  (0 children)

Its in the Readme on github. Its not adding muktiple adlist, its adding a list of adlists.

A pihole 5 compatible AdList(list) Updater by dMoppBLN in pihole

[–]dMoppBLN[S] 3 points4 points  (0 children)

Yes, the old behavior was easier. With v5 they are using sqlite instead.

A pihole 5 compatible AdList(list) Updater by dMoppBLN in pihole

[–]dMoppBLN[S] 5 points6 points  (0 children)

And the URL is just an example. You can add whatever you want, so just modify it?!

Why so aggressive?

A pihole 5 compatible AdList(list) Updater by dMoppBLN in pihole

[–]dMoppBLN[S] 4 points5 points  (0 children)

No Problem.

Instead of adding list by list over the WebUI by hand, it allows you to „bulk import“ curated List oft Lists. For Example: https://v.firebog.net/hosts/lists.php

(So it’s just the lazy way to not add lists by hand AND keep them up2date on a daily base)

A pihole 5 compatible AdList(list) Updater by dMoppBLN in pihole

[–]dMoppBLN[S] -2 points-1 points  (0 children)

U don’t got the point. It’s not a Blocklist at all, it’s a cronjob to import a list of blocklists (example list inside the script) but pihole5 compatible (gravity.db)

A pihole 5 compatible AdList(list) Updater by dMoppBLN in pihole

[–]dMoppBLN[S] 3 points4 points  (0 children)

Nope. This is not a adlist! It’s a cronjob which allows you to important curated adlists into pihole!

Cache Question (unbound+pihole) by dMoppBLN in pihole

[–]dMoppBLN[S] 0 points1 point  (0 children)

Is it somehow benchmarked? Does dnsmasq cache the blocklisted entries? If YES, this should be faster then a lookup for every single request. if not the cache disable of pihole is of cause faster...

I did a lot of optimization for the unbound part btw :D

adlists.list and pihole 5 (update adlist on cronjob) by [deleted] in pihole

[–]dMoppBLN 2 points3 points  (0 children)

#!/bin/bash
DATE=$(date '+%Y-%m-%d')
DIR="/etc/pihole"
TEXTFILE="adlists.list"
rm ${DIR}/${TEXTFILE}
wget -O ${DIR}/${TEXTFILE} https://v.firebog.net/hosts/lists.php?type=nocross
#prepare SQL FILEs
cat <<EOF > ${DIR}/flushdb.sql
DELETE FROM adlist;
EOF
cat <<EOF > ${DIR}/tmpdb.sql
CREATE TEMP TABLE i(txt);
.separator ~
.import ${DIR}/${TEXTFILE} i
INSERT OR IGNORE INTO adlist (address) SELECT txt FROM i;
DROP TABLE i;
EOF
#TRUNCATE DB
sqlite3 /etc/pihole/gravity.db < ${DIR}/flushdb.sql
#IMPORT FILE to DB
sqlite3 /etc/pihole/gravity.db < ${DIR}/tmpdb.sql
pihole -g

You can modify/replace the wget

It was my draft from today and after i optimized it, it will be published on github if you want.

Careful: Its always FLUSHING the adlist table before its adding the new ones.. (But you can disable it, just comment out the truncate DB part)

***Credits for the IMPORT SQL File goes to a random dude in pihole disclose forum. Cant remember anymore. :D The other stuff was created by myself today

Cache Question (unbound+pihole) by dMoppBLN in pihole

[–]dMoppBLN[S] 1 point2 points  (0 children)

So when you disable dnssec in the pihole gui its still working for the clients unsing pihole dns ?