mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-22 22:33:40 +01:00
scan just one host per hostname
This commit is contained in:
parent
cdbf596466
commit
1a78172936
@ -51,24 +51,24 @@ function scan_hostname() {
|
|||||||
if [ ! -z "$host_ips" ] && [ ! -z "$www_ips" ]; then
|
if [ ! -z "$host_ips" ] && [ ! -z "$www_ips" ]; then
|
||||||
# list of IPs that are in www but not in host
|
# list of IPs that are in www but not in host
|
||||||
local diff=$(grep -Fv "$host_ips" <<< "$www_ips")
|
local diff=$(grep -Fv "$host_ips" <<< "$www_ips")
|
||||||
while read ip; do
|
head -n 1 <<< "$host_ips" | while read ip; do
|
||||||
scan_host $1 $ip
|
scan_host $1 $ip
|
||||||
done <<< "$host_ips"
|
done
|
||||||
if [ ! -z "$diff" ]; then
|
if [ ! -z "$diff" ]; then
|
||||||
while read ip; do
|
head -n 1 <<<"$diff" | while read ip; do
|
||||||
scan_host www.$1 $ip
|
scan_host www.$1 $ip
|
||||||
done <<< "$diff"
|
done
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ ! -z "$host_ips" ]; then
|
if [ ! -z "$host_ips" ]; then
|
||||||
while read ip; do
|
head -n 1 <<<"$host_ips" | while read ip; do
|
||||||
scan_host $1 $ip
|
scan_host $1 $ip
|
||||||
done <<< "$host_ips"
|
done
|
||||||
fi
|
fi
|
||||||
if [ ! -z "$www_ips" ]; then
|
if [ ! -z "$www_ips" ]; then
|
||||||
while read ip; do
|
head -n 1 <<<"$www_ips" | while read ip; do
|
||||||
scan_host www.$1 $ip
|
scan_host www.$1 $ip
|
||||||
done <<< "$www_ips"
|
done
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user