mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-11 17:29:16 +05:00
52 lines
1.0 KiB
Bash
52 lines
1.0 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
IPSET_DIR="$(dirname "$0")"
|
||
|
IPSET_DIR="$(cd "$IPSET_DIR"; pwd)"
|
||
|
|
||
|
. "$IPSET_DIR/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 - ip version : 4,6
|
||
|
|
||
|
echo processing reestr list $2
|
||
|
|
||
|
tail -n +2 "$ZREESTR" | nice -n 5 $GREP -oE "$1" | cut_local | ip2net$3 | zz "$2"
|
||
|
}
|
||
|
|
||
|
|
||
|
# assume all https banned by ip
|
||
|
curl -k --fail --max-time 600 --connect-timeout 5 --retry 3 --max-filesize 251658240 "$ZURL_REESTR" -o "$ZREESTR" ||
|
||
|
{
|
||
|
echo reestr list download failed
|
||
|
exit 2
|
||
|
}
|
||
|
dlsize=$(LANG=C wc -c "$ZREESTR" | xargs | 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
|
||
|
|
||
|
get_ip_regex
|
||
|
|
||
|
[ "$DISABLE_IPV4" != "1" ] && {
|
||
|
dig_reestr "$REG_IPV4" "$ZIPLIST" 4
|
||
|
}
|
||
|
|
||
|
[ "$DISABLE_IPV6" != "1" ] && {
|
||
|
dig_reestr "$REG_IPV6" "$ZIPLIST6" 6
|
||
|
}
|
||
|
|
||
|
rm -f "$ZREESTR"
|
||
|
|
||
|
"$IPSET_DIR/create_ipset.sh"
|