From 3ecb1344d63904081b5242add94219228d0e0a76 Mon Sep 17 00:00:00 2001 From: Lukas Date: Tue, 4 Nov 2025 11:36:57 +0000 Subject: [PATCH] Dateien nach "/" hochladen Used for downloading the banned-ips list and making the set --- make_badguys_set.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 make_badguys_set.sh diff --git a/make_badguys_set.sh b/make_badguys_set.sh new file mode 100644 index 0000000..0be534b --- /dev/null +++ b/make_badguys_set.sh @@ -0,0 +1,11 @@ +ipset flush ci-badguys +ipset flush bca-badguys +rm ci-badguys.txt +rm bca-banned-ips.txt +wget http://cinsscore.com/list/ci-badguys.txt +for i in $(cat ci-badguys.txt); do ipset add ci-badguys $i; done +wget https://git.bcanet.tech/Lukas/BCA-Blocked-IPs/raw/branch/main/bca-banned-ips.txt +for i in $(cat bca-banned-ips.txt); do ipset add bca-badguys $i; done +rm ci-badguys.txt +rm bca-banned-ips.txt +