mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-30 05:50:53 +03:00
blockcheck: enable quick scanlevel checks in tpws scan
This commit is contained in:
parent
7881673949
commit
aa6cbfe03c
@ -963,33 +963,47 @@ pktws_check_domain_http3_bypass()
|
|||||||
pktws_check_domain_http3_bypass_ "$@"
|
pktws_check_domain_http3_bypass_ "$@"
|
||||||
report_strategy $1 $2 $PKTWSD
|
report_strategy $1 $2 $PKTWSD
|
||||||
}
|
}
|
||||||
tpws_check_domain_http_bypass()
|
tpws_check_domain_http_bypass_()
|
||||||
{
|
{
|
||||||
# $1 - test function
|
# $1 - test function
|
||||||
# $2 - encrypted test : 1/0
|
# $2 - encrypted test : 1/0
|
||||||
# $3 - domain
|
# $3 - domain
|
||||||
local s s2 pos strategy sec="$2"
|
local s s2 pos sec="$2"
|
||||||
if [ "$sec" = 0 ]; then
|
if [ "$sec" = 0 ]; then
|
||||||
for s in '--hostcase' '--hostspell=hoSt' '--hostdot' '--hosttab' '--hostnospace' '--methodspace' '--methodeol' '--unixeol' \
|
for s in '--hostcase' '--hostspell=hoSt' '--hostdot' '--hosttab' '--hostnospace' '--methodspace' '--methodeol' '--unixeol' \
|
||||||
'--hostpad=1024' '--hostpad=2048' '--hostpad=4096' '--hostpad=8192' '--hostpad=16384' ; do
|
'--hostpad=1024' '--hostpad=2048' '--hostpad=4096' '--hostpad=8192' '--hostpad=16384' ; do
|
||||||
tpws_curl_test_update $1 $3 $s
|
tpws_curl_test_update $1 $3 $s && [ "$SCANLEVEL" = quick ] && return
|
||||||
done
|
done
|
||||||
for s2 in '' '--disorder' '--oob'; do
|
for s2 in '' '--disorder' '--oob'; do
|
||||||
for s in '--split-http-req=method' '--split-http-req=method --hostcase' '--split-http-req=host' '--split-http-req=host --hostcase' ; do
|
for s in '--split-http-req=method' '--split-http-req=method --hostcase' '--split-http-req=host' '--split-http-req=host --hostcase' ; do
|
||||||
tpws_curl_test_update $1 $3 $s $s2
|
tpws_curl_test_update $1 $3 $s $s2 && [ "$SCANLEVEL" = quick ] && return
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
for s2 in '' '--disorder' '--oob'; do
|
for s2 in '' '--disorder' '--oob'; do
|
||||||
for pos in 1 2 3 4 5 10 50 100; do
|
for pos in 1 2 3 4 5 10 50 100; do
|
||||||
s="--split-pos=$pos"
|
s="--split-pos=$pos"
|
||||||
tpws_curl_test_update $1 $3 $s $s2 && break
|
tpws_curl_test_update $1 $3 $s $s2 && {
|
||||||
|
[ "$SCANLEVEL" = quick ] && return
|
||||||
|
break
|
||||||
|
}
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
for s2 in '--tlsrec=sni' '--tlsrec=sni --split-pos=10' '--tlsrec=sni --split-pos=10 --disorder' '--tlsrec=sni --split-pos=10 --oob'; do
|
for s2 in '--tlsrec=sni' '--tlsrec=sni --split-pos=10' '--tlsrec=sni --split-pos=10 --disorder' '--tlsrec=sni --split-pos=10 --oob'; do
|
||||||
tpws_curl_test_update $1 $3 $s2 && [ "$SCANLEVEL" != force ] && break
|
tpws_curl_test_update $1 $3 $s2 && [ "$SCANLEVEL" != force ] && {
|
||||||
|
[ "$SCANLEVEL" = quick ] && return
|
||||||
|
break
|
||||||
|
}
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
}
|
||||||
|
tpws_check_domain_http_bypass()
|
||||||
|
{
|
||||||
|
# $1 - test function
|
||||||
|
# $2 - encrypted test : 1/0
|
||||||
|
# $3 - domain
|
||||||
|
local strategy
|
||||||
|
tpws_check_domain_http_bypass_ "$@"
|
||||||
report_strategy $1 $3 tpws
|
report_strategy $1 $3 tpws
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user