Files
2026-05-11 11:33:26 +00:00

11 lines
199 B
Bash

#!/bin/bash
clear
echo Target:
read x
echo 'Running Nmap scan...'
nmap -A -v -sV -sC -Pn --script vulners,http-sql-injection,http-unsafe-output-escaping,http-enum.nse $x
echo 'Done.'
read -n1
clear