From 272d97ebf762f96d726d88e5461e75f686913067 Mon Sep 17 00:00:00 2001 From: adrien Date: Thu, 27 Apr 2023 17:46:56 +0200 Subject: [PATCH] verbose --- nmap_cmd.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmap_cmd.php b/nmap_cmd.php index 72feddd..025785c 100644 --- a/nmap_cmd.php +++ b/nmap_cmd.php @@ -39,5 +39,5 @@ $xml->asXML("site/$site.xml"); $targets = join(array_keys($targets), " "); $services = join(array_keys($services), ","); -echo ("nmap -Pn -p $services --script $__DIR__/http-info.nse -oX $__DIR__/scans/.~$site.xml $targets"); +echo ("nmap -v -Pn -p $services --script $__DIR__/http-info.nse -oX $__DIR__/scans/.~$site.xml $targets"); ?>