快速高效:Nmap结果整理方法

  • A+
所属分类:其他杂项
本文信息本文由方法SEO顾问发表于2018-01-1013:39:54,共 1124 字,转载请注明:快速高效:Nmap结果整理方法_【方法SEO顾问】

这几天在搞大型网络的端口扫描,其实也不算很大大概1.1W个主机的全端口扫描,很多关闭或者过滤的端口它也显示出来了。后来又看了看Nmap的参数 发现了–open参数,这个参数是只显示&输出 开放端口的参数。但光看只开放的端口输出结果也有3W多行。

后来想能不能自动化输出扫描出的端口和IP其他的不要,经过2、3小时的折腾,终于搞定了自动化工具。

原理基本上就是xml解析,写了几个Xpath再加上Nmap的无样式参数–no-stylesheet

使用的Nmap命令也是常见的参数

Default

1

nmap -v -sS <span style="font-size:inherit;box-sizing:border-box;font-family:Monaco, MonacoRegular, "Courier New", monospace;padding:0px;background:transparent;font-style:inherit;margin:0px;border:0px;vertical-align:baseline;height:inherit;font-weight:inherit;line-height:inherit;color:rgb(0, 111, 224);"--<open -iL iplist.txt <span style="font-size:inherit;box-sizing:border-box;font-family:Monaco, MonacoRegular, "Courier New", monospace;padding:0px;background:transparent;font-style:inherit;margin:0px;border:0px;vertical-align:baseline;height:inherit;font-weight:inherit;line-height:inherit;color:rgb(0, 111, 224);"--<no-stylesheet -oX output.xml -p- -P0

问题基本解决了,整个工程也才36行,贴出核心代码分享给大家:

Default

1
2
3
4
5
6
7

xmldoc.SelectNodes("//host/address[@addr]")
xmldoc1.SelectNodes("//port[@portid]")
node1.Attributes.GetNamedItem("addr").Value
node2.Attributes.GetNamedItem("portid").Value

妈妈再也不用担心我整理大量端口扫描结果了 :)

黑客基本功:探索和创造

  • 版权声明:除非注明,本博客均为北京SEO方法的原创文章,转载或引用请以超链接形式标明本文地址,否则会在SEO圈内公开此种不尊重版权的行为,谢谢合作!本文地址:https://seofangfa.com/other-note/nmap-jiasu.html
  • 转载请注明:快速高效:Nmap结果整理方法_ 【方法SEO顾问】

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: