From fd2408adf756a3f285bda8f22d6d19211530dfa9 Mon Sep 17 00:00:00 2001 From: PinkDev1 <5990@protonmail.com> Date: Mon, 29 Mar 2021 04:00:38 +0000 Subject: [PATCH] Shrinked size of packet sent 4 +speed as explained in the help of ping: `-s use as number of data bytes to be sent` If we shrink the size, it'll be faster --- isup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isup.sh b/isup.sh index cb5db1c..f6e4e6f 100644 --- a/isup.sh +++ b/isup.sh @@ -58,7 +58,7 @@ echo -e "$ORANGE + ------------------------------=[Gathering Subdomains]=------- echo -e "" for foo in $(cat $TARGET) #demolist: https://hastebin.com/ahelalunan.css #expired do - ping -c1 -W1 $foo > /dev/null 2>&1 + ping -c1 -W1 -s1 $foo > /dev/null 2>&1 if [[ $? -eq 0 ]]; then echo -e "$ORANGE [+]--- VALID ---[+] $foo $RESET"