从列表和打印主机名中的读数在特定端口上打开

  • 本文关键字:打印 列表 主机 linux bash nmap
  • 更新时间 :
  • 英文 :


我写了 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

相关内容

  • 没有找到相关文章

最新更新