nmap:扫描类型——不支持

nmap:扫描类型——不支持

当我运行以下 nmap 命令来测试我的 VM 时:

 nmap --spoof-mac Cisco --data-length 24 -T paranoid -max-hostgroup 1 -max-parallelism 10 -PN -f -D 10.1.20.5,RND:5,ME -v -n -sS -sV-oA /desktop/pentest/nmap/out -p T:1-1024 -random-hosts 192.168.1.183 192.168.1.182

我收到了Scantype - not supported。知道原因吗?

答案1

-sV因为您的命令在和之间缺少一个空格-oA,所以 Nmap 会将其读取为-sscantypes V、、和。-oA

相关内容