Add URLhaus list, update other lists
This commit is contained in:
parent
35cd1cb533
commit
ad1897cca5
8 changed files with 21 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
/oisd/big
|
||||
/oisd/nsfw
|
||||
/ut1/*/
|
||||
/urlhaus/online
|
||||
|
|
|
@ -9,3 +9,4 @@
|
|||
.Include</etc/e2guardian/lists/group1/ut1/redirector/urls>
|
||||
.Include</etc/e2guardian/lists/group1/ut1/remote-control/urls>
|
||||
.Include</etc/e2guardian/lists/group1/ut1/sexual_education/urls>
|
||||
.Include</etc/e2guardian/lists/group1/urlhaus/online>
|
||||
|
|
|
@ -987,3 +987,4 @@ raw.githubusercontent.com/nekotonk
|
|||
github.com/64-bithuman
|
||||
codeload.github.com/64-bithuman
|
||||
raw.githubusercontent.com/64-bithuman
|
||||
dennisthestreamer.itch.io/not-my-fault-bsod
|
||||
|
|
|
@ -5986,3 +5986,4 @@ upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Erection_angle_and_shape_of_pe
|
|||
|
||||
media.discordapp.net/attachments/921057834525950063
|
||||
cdn.discordapp.com/attachments/921057834525950063
|
||||
telescope.kdlparentalcontrol.com/3aa64091-4dc0-4f18-821c-02f14b723e52/828b0a22-91f8-4e86-9888-3f5badb972ba/2b56db9a04446dea5c21b46b5766e2f1
|
||||
|
|
|
@ -1771,3 +1771,6 @@ tricolorfashion.com
|
|||
atlaq.com
|
||||
serveo.net
|
||||
ltnj2f-8080.csb.app
|
||||
phpstack-941640-3604635.cloudwaysapps.com
|
||||
theprivacypirate.com
|
||||
899n9w81xsfkqb.wxxs290.com
|
||||
|
|
|
@ -2,3 +2,4 @@
|
|||
echo Fetching blocklists...
|
||||
./getut1.sh
|
||||
./getoisd.sh
|
||||
./geturlhaus.sh
|
||||
|
|
13
geturlhaus.sh
Executable file
13
geturlhaus.sh
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
echo "Fetching URLhaus blocklist"
|
||||
if ! command -v curl >/dev/null; then
|
||||
echo 'curl is required for this script to run.'
|
||||
exit 1
|
||||
fi
|
||||
if ! command -v sed >/dev/null; then
|
||||
echo 'sed is required for this script to run.'
|
||||
exit 1
|
||||
fi
|
||||
mkdir -p urlhaus
|
||||
curl https://urlhaus.abuse.ch/downloads/text_online/ -o urlhaus/online
|
||||
sed -i '1s|^|#listcategory: "URLhaus @ abuse.ch"\n|' urlhaus/online
|
0
urlhaus/.gitkeep
Normal file
0
urlhaus/.gitkeep
Normal file
Loading…
Reference in a new issue