Files
svr/usr/bin/nmap-http
T

12 lines
131 B
Bash
Raw Normal View History

2026-01-23 08:55:18 +01:00
#!/usr/bin/bash
if [ "$#" -lt 1 ] ; then
echo "Usage: $0 ip [polite2]"
exit 1
fi
nmap --script -T3 http-enum $1
exit 0