wfuzz -> ffuf

This commit is contained in:
2020-08-09 16:49:02 +02:00
parent 8dcb41a838
commit 59a10ddead
2 changed files with 4 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ if ! [[ $status == 0 ]] ; then
fi
echo "[+] Scanning for open ports…"
PORTS=$(nmap -p- --min-rate=1000 -T4 ${IP_ADDRESS} | grep ^[0-9] | cut -d '/' -f 1 | tr '\n' ',' | sed s/,$//)
PORTS=$(nmap -p- -T4 ${IP_ADDRESS} | grep ^[0-9] | cut -d '/' -f 1 | tr '\n' ',' | sed s/,$//)
if [ -z "${PORTS}" ]; then
echo "[-] No open ports found"
exit