From e648e1caba5322ada75448895d933c1cb79883e0 Mon Sep 17 00:00:00 2001 From: Omar Santos Date: Sun, 1 Apr 2018 17:54:10 -0400 Subject: [PATCH] adding letmeout script I created a quick bash script to test open ports that are available for exfil using mubix's site. --- useful_commands_and_scripts/letmeout.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 useful_commands_and_scripts/letmeout.sh diff --git a/useful_commands_and_scripts/letmeout.sh b/useful_commands_and_scripts/letmeout.sh new file mode 100644 index 0000000..4eece13 --- /dev/null +++ b/useful_commands_and_scripts/letmeout.sh @@ -0,0 +1,12 @@ +#!/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