Skip to content

Commit a7f2b95

Browse files
committed
Update 11/28/2025
1 parent b2dc6b8 commit a7f2b95

File tree

8 files changed

+33
-633
lines changed

8 files changed

+33
-633
lines changed

README-es.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -264,14 +264,20 @@ http_access deny punycode
264264
acl blocktlds dstdomain "/path_to/blocktlds.txt"
265265
http_access deny blocktlds
266266

267-
# Block Rule for Words (Optional)
268-
acl blockwords url_regex -i "/etc/acl/blockwords.txt"
269-
http_access deny blockwords
270-
271267
# Block Rule for Domains
272268
acl blockdomains dstdomain "/path_to/blockdomains.txt"
273269
http_access deny blockdomains
274270

271+
# Block Rule for Patterns (Optional)
272+
# https://raw.githubusercontent.com/maravento/vault/refs/heads/master/blackshield/acl/squid/blockpatterns.txt
273+
acl blockwords url_regex -i "/etc/acl/blockpatterns.txt"
274+
http_access deny blockwords
275+
276+
# Block Rule for web3 (Optional)
277+
# https://raw.githubusercontent.com/maravento/vault/refs/heads/master/blackshield/acl/web3/web3domains.txt
278+
acl web3 dstdomain "/path_to/web3domains.txt"
279+
http_access deny web3
280+
275281
# Block Rule for Blackweb
276282
acl blackweb dstdomain "/path_to/blackweb.txt"
277283
http_access deny blackweb
@@ -553,7 +559,6 @@ BlackWeb: Done 06/05/2023 15:47:14
553559
#### Important about BlackWeb Update
554560

555561
- El path por default de BlackWeb es `/etc/acl`. Puede cambiarlo por el de su preferencia.
556-
- `bwupdate.sh` incluye listas de dominios relacionados con soporte remoto (Teamviewer, Anydesk, logmein, etc) y dominios web3. Están comentadas por defecto (excepto que sus dominios estén en las [FUENTES](https://github.com/maravento/blackweb#fuentes--sources)). Para bloquearlas o excluirlas debe activar las líneas correspondientes en el script (# JOIN LIST), aunque no se recomienda para evitar conflictos o falsos positivos.
557562
- Si necesita interrumpir la ejecución de `bwupdate.sh` (ctrl + c) y se detuvo en la parte de [DNS Loockup](https://github.com/maravento/blackweb#dns-loockup), reiniciará en ese punto. Si lo detiene antes deberá comenzar desde el principio o modificar el script manualmente para que inicie desde el punto deseado.
558563
- Si usa `aufs`, cámbielo temporalmente a `ufs` durante la actualización, para evitar: `ERROR: Can't change type of existing cache_dir aufs /var/spool/squid to ufs. Restart required`.
559564

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -264,14 +264,20 @@ http_access deny punycode
264264
acl blocktlds dstdomain "/path_to/blocktlds.txt"
265265
http_access deny blocktlds
266266

267-
# Block Rule for Words (Optional)
268-
acl blockwords url_regex -i "/etc/acl/blockwords.txt"
269-
http_access deny blockwords
270-
271267
# Block Rule for Domains
272268
acl blockdomains dstdomain "/path_to/blockdomains.txt"
273269
http_access deny blockdomains
274270

271+
# Block Rule for Patterns (Optional)
272+
# https://raw.githubusercontent.com/maravento/vault/refs/heads/master/blackshield/acl/squid/blockpatterns.txt
273+
acl blockwords url_regex -i "/etc/acl/blockpatterns.txt"
274+
http_access deny blockwords
275+
276+
# Block Rule for web3 (Optional)
277+
# https://raw.githubusercontent.com/maravento/vault/refs/heads/master/blackshield/acl/web3/web3domains.txt
278+
acl web3 dstdomain "/path_to/web3domains.txt"
279+
http_access deny web3
280+
275281
# Block Rule for Blackweb
276282
acl blackweb dstdomain "/path_to/blackweb.txt"
277283
http_access deny blackweb
@@ -553,7 +559,6 @@ BlackWeb: Done 06/05/2023 15:47:14
553559
#### Important about BlackWeb Update
554560

555561
- The default path of BlackWeb is `/etc/acl`. You can change it for your preference.
556-
- `bwupdate.sh` includes lists of remote support related domains (Teamviewer, Anydesk, logmein, etc) and web3 domains. They are commented by default (unless their domains are in [SOURCES](https://github.com/maravento/blackweb#sources--sources)). To block or exclude them you must activate the corresponding lines in the script (# JOIN LIST), although it is not recommended to avoid conflicts or false positives.
557562
- If you need to interrupt the execution of `bwupdate.sh` (ctrl + c) and it stopped at the [DNS Loockup](https://github.com/maravento/blackweb#dns-loockup) part, it will restart at that point. If you stop it earlier, you will have to start from the beginning or modify the script manually so that it starts from the desired point.
558563
- If you use `aufs`, temporarily change it to `ufs` during the upgrade, to avoid: `ERROR: Can't change type of existing cache_dir aufs /var/spool/squid to ufs. Restart required`.
559564

bwupdate/bwupdate.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -323,13 +323,6 @@ if [ ! -e "$bwupdate"/dnslookup1 ]; then
323323
} | grep -P '^[\x00-\x7F]+$' \
324324
| awk '{if ($1 !~ /^\./) print "." $1; else print $1}' \
325325
| sort -u > capture.txt
326-
# EXPERIMENTAL
327-
# remote
328-
#sed '/^$/d; /#/d' lst/remote.txt | sort -u >> capture.txt
329-
# web3
330-
#sed '/^$/d; /#/d' lst/web3.txt | sort -u >> capture.txt
331-
# uniq capture.txt
332-
#sort -o capture.txt -u capture.txt
333326
echo "OK"
334327

335328
# JOIN AND UPDATE LIST

bwupdate/lst/blocktlds.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@
130130
.social
131131
.song
132132
.store
133-
.tech
134133
.tube
135134
.tv
136135
.video

bwupdate/lst/debugbl.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@
216216
.adriandomini.com.ar
217217
.adshort.co
218218
.adsk2.co
219+
.ads-radiantfusion.co
219220
.adsrt.live
220221
.adsrt.me
221222
.adsrt.org
@@ -396,6 +397,7 @@
396397
.analypia.com
397398
.anandlab.com
398399
.anchor.io
400+
.andbeyond.media
399401
.anderlaw.com
400402
.andresarlemijn.nl
401403
.andrewclark.com.au
@@ -1264,6 +1266,7 @@
12641266
.cinecallidad.xyz
12651267
.cinemaniahdd.net
12661268
.cinemauae.com
1269+
.cinemitas.org
12671270
.cinemultimediaflix.com
12681271
.cinerama91.com
12691272
.cinestentativos.com
@@ -2253,6 +2256,7 @@
22532256
.expresso-sf.com.br
22542257
.expressvpn.com
22552258
.exquisiteescape.com
2259+
.extend.tv
22562260
.extra.hu
22572261
.extramileteam.com
22582262
.extratorrents.ch
@@ -4149,6 +4153,7 @@
41494153
.luible.net
41504154
.luigipellegrini.it
41514155
.lumitech.ro
4156+
.lunamedia.live
41524157
.lunaparkperugia.it
41534158
.lutheranph.com
41544159
.lutz-blades.pl
@@ -7809,3 +7814,9 @@
78097814
.zvideo.at
78107815
.zwei.audio
78117816
.zytrade.cn
7817+
.pelisflix1.art
7818+
.pelikula.es
7819+
.seniorworld.es
7820+
.manhattanstudio.es
7821+
.playdede.cc
7822+
.aldeacavernicoladespedidas.es

0 commit comments

Comments
 (0)