标签: linux bash nmap
我写了nmap command,如:
nmap command
nmap -oX test.xml -p 23 -il list.txt > out.txt
如何告诉nmap从我的list.txt打印在端口23上打开的主机?
答案 0 :(得分:3)
你不能要求nmap只打印它们,但你可以grep nmap结果:
nmap -p 23 -i list.txt | grep '^23.*open' -B3 | grep '^Nmap scan' | cut -d\( -f2 | cut -d\) -f1