mirror of
https://github.com/The-Art-of-Hacking/h4cker.git
synced 2024-10-01 01:25:43 -04:00
13 lines
297 B
Bash
13 lines
297 B
Bash
#!/bin/bash
|
|
# 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
|