我写了 nmap command
喜欢:
nmap -oX test.xml -p 23 -il list.txt > out.txt
我如何告诉nmap从我的list.txt上打印hosts。
您不能要求NMAP仅打印它们,但是您可以抓取NMAP结果:
nmap -p 23 -i list.txt | grep '^23.*open' -B3 | grep '^Nmap scan' | cut -d( -f2 | cut -d) -f1