mirror of
https://github.com/The-Art-of-Hacking/h4cker
synced 2024-11-22 19:03:04 +00:00
e648e1caba
I created a quick bash script to test open ports that are available for exfil using mubix's site.
12 lines
242 B
Bash
12 lines
242 B
Bash
#!/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
|