mirror of
https://github.com/bol-van/zapret.git
synced 2025-04-19 05:22:58 +03:00
60 lines
1.5 KiB
Bash
Executable File
60 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
SCRIPT=$(readlink -f "$0")
|
|
EXEDIR=$(dirname "$SCRIPT")
|
|
|
|
. "$EXEDIR/def.sh"
|
|
|
|
ZREESTR="$TMPDIR/reestr.txt"
|
|
#ZURL_REESTR=https://reestr.rublacklist.net/api/current
|
|
ZURL_REESTR=https://raw.githubusercontent.com/zapret-info/z-i/master/dump.csv
|
|
|
|
getuser
|
|
|
|
dig_reestr()
|
|
{
|
|
# $1 - grep ipmask
|
|
# $2 - iplist
|
|
# $3 - ipban list
|
|
|
|
local DOMMASK='^.*;[^ ;:/]+\.[^ ;:/]+;'
|
|
local TMP="$TMPDIR/tmp.txt"
|
|
# find entries with https or without domain name - they should be banned by IP
|
|
# 2971-18 is TELEGRAM. lots of proxy IPs banned, list grows very large
|
|
(grep -avE "$DOMMASK" "$ZREESTR" ; grep -a "https://" "$ZREESTR") |
|
|
grep -av "2971-18" |
|
|
grep -oE "$1" | cut_local | sort -u >$TMP
|
|
|
|
cat "$TMP" | zz "$3"
|
|
|
|
# other IPs go to regular zapret list
|
|
grep -av "2971-18" "$ZREESTR" | grep -oE "$1" | cut_local | grep -xvFf "$TMP" | sort -u | zz "$2"
|
|
|
|
rm -f "$TMP"
|
|
}
|
|
|
|
|
|
curl -k --fail --max-time 150 --connect-timeout 5 --retry 3 --max-filesize 251658240 "$ZURL_REESTR" -o "$ZREESTR" ||
|
|
{
|
|
echo reestr list download failed
|
|
exit 2
|
|
}
|
|
dlsize=$(wc -c "$ZREESTR" | cut -f 1 -d ' ')
|
|
if test $dlsize -lt 1048576; then
|
|
echo reestr ip list is too small. can be bad.
|
|
exit 2
|
|
fi
|
|
#sed -i 's/\\n/\r\n/g' $ZREESTR
|
|
|
|
[ "$DISABLE_IPV4" != "1" ] && {
|
|
dig_reestr '([0-9]{1,3}\.){3}[0-9]{1,3}(/[0-9]+)?' "$ZIPLIST" "$ZIPLIST_IPBAN"
|
|
}
|
|
|
|
[ "$DISABLE_IPV6" != "1" ] && {
|
|
dig_reestr '([0-9,a-f,A-F]{1,4}:){7}[0-9,a-f,A-F]{1,4}(/[0-9]+)?' "$ZIPLIST6" "$ZIPLIST_IPBAN6"
|
|
}
|
|
|
|
rm -f "$ZREESTR"
|
|
|
|
"$EXEDIR/create_ipset.sh"
|