args name with "-"

This commit is contained in:
2024-10-16 21:25:02 +02:00
parent 6c33080785
commit 653bb604f5
4 changed files with 150 additions and 150 deletions

View File

@ -6,17 +6,17 @@ $DATADIR = '/usr/share/nmap';
$presets = [
"lan" => [
'PS' => 'microsoft-ds',
'F' => true,
'T5' => true,
'stylesheet' => "$BASEDIR/lanScan.xsl"
'-PS' => 'microsoft-ds',
'-F' => true,
'-T5' => true,
'--stylesheet' => "$BASEDIR/lanScan.xsl"
],
"host" => [
'Pn' => true,
'F' => true,
'sV' => true,
'T5' => true,
'stylesheet' => "$BASEDIR/hostScan.xsl"
'-Pn' => true,
'-F' => true,
'-sV' => true,
'-T5' => true,
'--stylesheet' => "$BASEDIR/hostScan.xsl"
],
];