Files
baremetal-basics/nms
T

13 lines
234 B
Bash
Raw Normal View History

2026-05-11 11:33:26 +00:00
#!/bin/bash
2026-07-29 21:40:07 +00:00
for arg in "$@"; do
2026-05-11 11:33:26 +00:00
clear
2026-07-29 21:40:07 +00:00
echo Target: "$@"
#read x
2026-05-11 11:33:26 +00:00
echo 'Running Nmap scan...'
2026-07-29 21:40:07 +00:00
nmap -A -v -sV -sC -Pn --script vulners,http-sql-injection,http-unsafe-output-escaping,http-enum.nse "$@"
2026-05-11 11:33:26 +00:00
echo 'Done.'
2026-07-29 21:40:07 +00:00
#read -n1
#clear
done