cyber-security-resources/useful_commands_and_scripts/letmeout.sh

13 lines
242 B
Bash
Raw Normal View History

#!/bin/bash
# quick script to test exfil ports
# using mubix letmeoutofyour.net website
# omar santos @santosomar
for i in $(eval echo {$1..$2})
do
echo "Is port $i open for potential exfil?"
curl http://letmeoutofyour.net:$i
done