Upload files to "/"

This commit is contained in:
2026-07-29 21:40:07 +00:00
parent 462e65fbea
commit e03ab041de
+7 -5
View File
@@ -1,10 +1,12 @@
#!/bin/bash #!/bin/bash
for arg in "$@"; do
clear clear
echo Target: echo Target: "$@"
read x #read x
echo 'Running Nmap scan...' echo 'Running Nmap scan...'
nmap -A -v -sV -sC -Pn --script vulners,http-sql-injection,http-unsafe-output-escaping,http-enum.nse $x nmap -A -v -sV -sC -Pn --script vulners,http-sql-injection,http-unsafe-output-escaping,http-enum.nse "$@"
echo 'Done.' echo 'Done.'
read -n1 #read -n1
clear #clear
done