cyber-security-resources/programming_and_scripting_for_cybersecurity/post_exploitation/letmeout.sh

13 lines
297 B
Bash
Raw Normal View History

#!/bin/bash
2018-09-06 18:31:40 +00:00
# A quick script to test exfil ports.
# Using @mubix letmeoutofyour.net site (https://gitlab.com/mubix/letmeoutofyour.net)
# Author: 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