Skip to content

Commit c39444a

Browse files
committed
Update 08/30/2025
1 parent f51b739 commit c39444a

File tree

9 files changed

+43
-21
lines changed

9 files changed

+43
-21
lines changed

README-es.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ BlackWeb es un proyecto que recopila y unifica listas públicas de bloqueo de do
2323

2424
| ACL | Blocked Domains | File Size |
2525
| :---: | :---: | :---: |
26-
| blackweb.txt | 5086616 | 127 MB |
26+
| blackweb.txt | 5042665 | 125,5 MB |
2727

2828
## GIT CLONE
2929

@@ -201,7 +201,7 @@ ASCII Output:
201201
202202
```bash
203203
# Download ACL:
204-
sudo wget -P /etc/acl/ https://raw.githubusercontent.com/maravento/vault/refs/heads/master/blackword/blockwords.txt
204+
sudo wget -P /etc/acl/ https://raw.githubusercontent.com/maravento/vault/refs/heads/master/blackshield/acl/squid/blockwords.txt
205205
# Squid Rule to Block Words:
206206
acl blockwords url_regex -i "/etc/acl/blockwords.txt"
207207
http_access deny blockwords
@@ -235,11 +235,11 @@ http_access deny streaming
235235

236236
>Nota: Esta lista puede contener dominios superpuestos. Es importante depurarla manualmente según el objetivo propuesto. Ejemplo:
237237
>- Si el objetivo es bloquear Facebook, conserva los dominios principales y elimina los subdominios específicos.
238-
>- Si el objetivo es bloquear funcionalidades como el streaming de Facebook, mantén los subdominios específicos y elimina los dominios principales para no afectar el acceso general al sitio.
238+
>- Si el objetivo es bloquear funcionalidades, como el streaming de Facebook, mantén los subdominios específicos y elimina los dominios principales para no afectar el acceso general al sitio.
239239
240240
```bash
241-
.fbcdn.net, facebook.com, etc # Bloquea Facebook
242-
.z-p3-video.flpb1-1.fna.fbcdn.net, etc # Solo bloquea streaming en Facebook
241+
.fbcdn.net, facebook.com, etc # Block Facebook
242+
.z-p3-video.flpb1-1.fna.fbcdn.net, etc # Block Streaming on Facebook
243243
```
244244

245245
#### Advanced Rules Summary
@@ -537,7 +537,7 @@ Output:
537537

538538
#### Run Squid-Cache with BlackWeb
539539

540-
>Corre Squid-Cache con BlackWeb y cualquier error lo envía a `SquidError.txt` en su escritorio.
540+
>Corre Squid-Cache con BlackWeb y cualquier error lo envía a `SquidError.txt`.
541541
542542
#### Check execution (/var/log/syslog)
543543

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ BlackWeb is a project that collects and unifies public blocklists of domains (po
2323

2424
| ACL | Blocked Domains | File Size |
2525
| :---: | :---: | :---: |
26-
| blackweb.txt | 5086616 | 127 MB |
26+
| blackweb.txt | 5042665 | 125,5 MB |
2727

2828
## GIT CLONE
2929

@@ -135,7 +135,7 @@ http_access allow allowdomains
135135

136136
##### Block Rule for Domains
137137

138-
>Use `blockdomains.txt` to block any other domain not included in `blackweb.txt`
138+
>Use `blockdomains.txt` to block any other domain not included in `blackweb.txt`
139139
140140
```bash
141141
acl blockdomains dstdomain "/path_to/blockdomains.txt"
@@ -201,7 +201,7 @@ ASCII Output:
201201
202202
```bash
203203
# Download ACL:
204-
sudo wget -P /etc/acl/ https://raw.githubusercontent.com/maravento/vault/refs/heads/master/blackword/blockwords.txt
204+
sudo wget -P /etc/acl/ https://raw.githubusercontent.com/maravento/vault/refs/heads/master/blackshield/acl/squid/blockwords.txt
205205
# Squid Rule to Block Words:
206206
acl blockwords url_regex -i "/etc/acl/blockwords.txt"
207207
http_access deny blockwords
@@ -235,11 +235,11 @@ http_access deny streaming
235235

236236
>Note: This list may contain overlapping domains. It is important to manually clean it according to the proposed objective. Example:
237237
>- If your goal is to block Facebook, keep the primary domains and remove specific subdomains.
238-
>- If your goal is to block features like Facebook streaming, keep the specific subdomains and remove the primary domains to avoid impacting overall site access.
238+
>- If your goal is to block features, like Facebook streaming, keep the specific subdomains and remove the primary domains to avoid impacting overall site access.
239239
240240
```bash
241-
.fbcdn.net, facebook.com, etc. # Blocks Facebook
242-
.z-p3-video.flpb1-1.fna.fbcdn.net, etc. # Only blocks streaming on Facebook
241+
.fbcdn.net, facebook.com, etc # Block Facebook
242+
.z-p3-video.flpb1-1.fna.fbcdn.net, etc # Block Streaming on Facebook
243243
```
244244

245245
#### Advanced Rules Summary
@@ -537,7 +537,7 @@ Output:
537537

538538
#### Run Squid-Cache with BlackWeb
539539

540-
>Run Squid-Cache with BlackWeb and any error sends it to `SquidError.txt` on your desktop.
540+
>Run Squid-Cache with BlackWeb and any error sends it to `SquidError.txt`.
541541
542542
#### Check execution (/var/log/syslog)
543543

blackweb.tar.gz

-275 KB
Binary file not shown.

bwupdate/bwupdate.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ wgetd="wget -q -c --show-progress --no-check-certificate --retry-connrefused --t
4747
route="/etc/acl"
4848
# CREATE PATH
4949
if [ ! -d "$route" ]; then sudo mkdir -p "$route"; fi
50+
# Absolute path
51+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
5052

5153
clear
5254
echo
@@ -439,7 +441,7 @@ python tools/debugerror.py
439441
sort -o final.txt -u final.txt
440442
iconv -f "$(file -bi final.txt | sed 's/.*charset=//')" -t UTF-8//IGNORE final.txt | grep -P '^[\x00-\x7F]+$' > blackweb.txt
441443
sudo cp -f blackweb.txt "$route"/blackweb.txt >/dev/null 2>&1
442-
sudo bash -c 'squid -k reconfigure' 2> "$(pwd)/SquidErrors.txt"
444+
sudo bash -c 'squid -k reconfigure' 2> "$SCRIPT_DIR/SquidErrors.txt"
443445

444446
# DELETE REPOSITORY (Optional)
445447
cd ..

bwupdate/lst/blockdomains.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
.put-any-domain-here.com
2+
# example
3+
.mega.co.nz
4+
.mega.io
5+
.mega.nz

bwupdate/lst/debugbl.txt

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,7 @@
762762
.best-service.jp
763763
.bestsourcecode.com
764764
.bestyoutubeproxy.info
765+
.betaseries.com
765766
.betconstruct.com
766767
.betplay.com.co
767768
.bet.plus
@@ -1470,7 +1471,6 @@
14701471
.creartnet.com
14711472
.create-enable.com
14721473
.createvalue.org
1473-
.creativecdn.com
14741474
.crecrec.com
14751475
.credit-it.com
14761476
.creditospresta.com
@@ -1519,6 +1519,7 @@
15191519
.cuevana-3.lol
15201520
.cuevana3.nu
15211521
.cuevana3.re
1522+
.cuevana3.rs
15221523
.cuevana3.video
15231524
.cuevana3.vip
15241525
.cuevana3.ws
@@ -1720,6 +1721,7 @@
17201721
.detectodecolombia.com
17211722
.detik.com
17221723
.deturl.com
1724+
.dev-buzz.site
17231725
.devere-uk.co.uk
17241726
.deviantart.com
17251727
.devyog.com
@@ -1870,6 +1872,7 @@
18701872
.douyu.com
18711873
.dowfrecap.net
18721874
.downcargas.com
1875+
.downlaod-here.com
18731876
.downloadgeral.com
18741877
.downloadne.co.in
18751878
.downloadpirate.com
@@ -3111,6 +3114,7 @@
31113114
.his.name
31123115
.historielag.org
31133116
.hitfile.net
3117+
.hitmeup.space
31143118
.hiveam.com
31153119
.hiveapps.co
31163120
.hjarne.dk
@@ -3259,6 +3263,7 @@
32593263
.hwayou.com.tw
32603264
.hydrodesign.net
32613265
.hydroenergie.fr
3266+
.hydrofiles.com
32623267
.hyperurl.co
32633268
.hypstarcdn.com
32643269
.hyves.nl
@@ -4530,6 +4535,7 @@
45304535
.movienna.com
45314536
.movierulz.video
45324537
.moviesbark.com
4538+
.movieshdwatch.to
45334539
.moviesthenumber.blogspot.com
45344540
.movies-web.com
45354541
.movietimes.com.au
@@ -5301,6 +5307,7 @@
53015307
.platinumrainbow.com
53025308
.playdede.us
53035309
.playlist-youtu.be
5310+
.playlust-goddess.com
53045311
.playocio.com
53055312
.playpaste.com
53065313
.playpilot.com
@@ -6224,8 +6231,6 @@
62246231
.smt112.com
62256232
.smugmug.com
62266233
.snapads.com
6227-
.snapchat.com
6228-
.snap.com
62296234
.snapdownloader.com
62306235
.snapengage.com
62316236
.snapkit.com
@@ -6258,6 +6263,7 @@
62586263
.software-unlimited.at
62596264
.sofwerx.org
62606265
.solar-cms.com
6266+
.solarmovies.ms
62616267
.soldabarra.com.br
62626268
.solenapeak.com
62636269
.solentim.com
@@ -6429,9 +6435,7 @@
64296435
.streamboox.com
64306436
.streamium.xyz
64316437
.streamovies.site
6432-
.streamplay.to
64336438
.streamservices.de
6434-
.streamtape.com
64356439
.streamtheworld.com
64366440
.stream-up.com
64376441
.strefa.pl
@@ -6570,7 +6574,6 @@
65706574
.tantella.com
65716575
.tanzecampus.com
65726576
.taotao500.cn
6573-
.tapad.com
65746577
.tapecontent.net
65756578
.taranakitruckdismantlers.com
65766579
.taranbeaty.com
@@ -6788,6 +6791,7 @@
67886791
.tinylinks.co
67896792
.tiny.tw
67906793
.tinyurl.com
6794+
.tinyzone.tv
67916795
.tisystems.cz
67926796
.titoseries.xyz
67936797
.titreplus.ca
@@ -6938,6 +6942,7 @@
69386942
.tube.poal.co
69396943
.tubesb.com
69406944
.tubetitties.com
6945+
.tubitv.com
69416946
.tucinehd.com
69426947
.tucows.com
69436948
.tula.ru
@@ -7360,6 +7365,7 @@
73607365
.wapv.net
73617366
.warabuki.net
73627367
.warmlyyours.com
7368+
.watchcartoonsonline.biz
73637369
.watchmeninc.com
73647370
.wattpad.com
73657371
.way2lead.dk

bwupdate/lst/debugwl.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19570,6 +19570,7 @@
1957019570
.flagstar.com
1957119571
.fnbcorporation.com
1957219572
.fnfg.com
19573+
.fondoemprender.com
1957319574
.forbes.com
1957419575
.force.com
1957519576
.forms.gle

bwupdate/lst/streaming.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@
8080
.livestream.com
8181
.login.sonos.music.microsoft.com
8282
.manifest.googlevideo.com
83+
.media-bog2-1.cdn.whatsapp.net
84+
.media-bog2-2.cdn.whatsapp.net
8385
.mediastream.microsoft.com
8486
.music-china.l.google.com
8587
.music.google.com
@@ -549,13 +551,20 @@
549551
.rr5---sn-q4fzene7.googlevideo.com
550552
.ru.youtube.com
551553
.sandbox.youtube.com
554+
.scontent-bog2-1xx.fbcdn.net
555+
.scontent-bog2-2xx.fbcdn.net
552556
.sling.com
557+
.snapchat.com
558+
.snap.com
553559
.sonos.music.microsoft.com
554560
.sonos-ppe.music.microsoft.com
555561
.spotify.com
556562
.ssl.catalog.video.msn.com
557563
.sslvideo-upload.l.google.com
558564
.starz.com
565+
.steamserver.net
566+
.streamplay.to
567+
.streamtape.com
559568
.s.youtube.com
560569
.tc.v10.cache1.googlevideo.com
561570
.tc.v10.cache2.googlevideo.com

checksum.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ab1091e6bd08c96f5227e9248a899398 blackweb.txt
1+
80642b5b5d0e51f25c21fb0e6becafd6 blackweb.txt

0 commit comments

Comments
 (0)