python nmap模块使用进行主机探测(ICMP)
2018-06-17 23:35:17来源:未知 阅读 ()
终于审核通过了......第一次用博客,想记录自己的学习情况,分享知识。
废话不多说,第一篇blog,大牛请轻喷。
资产清点首先需要进行主机探测,将存活主机统计下来再进行进一步的指纹识别及端口探测。若直接进行全网段IP扫描是很浪费时间的,不如先使用ICMP进行主机存活状态的探测后,再针对的进行扫描。(基于ping的方式有可能有误差,但是这里主要考虑的是效率)
python的第三方nmap模块的安装,网上有相关教程,不多赘述。
由于需要跟踪累计PC存活总数,使用了类方法。但同时遇到的问题就是:使用多进程后会出现以下报错信息:
cPickle.PicklingError: Can't pickle <type 'instancemethod'>: attribute lookup __builtin__.instancemethod failed
查了一下解决方法大概有三种:
- 用线程替换进程
- 可以使用copy_reg来规避上面的异常.
dill
或pathos.multiprocesssing
:use pathos.multiprocesssing, instead of multiprocessing. pathos.multiprocessing is a fork of multiprocessing that uses dill. dill can serialize almost anything in python, so you are able to send a lot more around in parallel.
这里使用第一种方法进行修改,直接上代码:
1 import nmap 2 from multiprocessing.pool import ThreadPool as Pool 3 import time 4 import csv 5 6 7 class Scan(object): 8 def __init__(self): 9 self.count = 0 10 11 def scan(self, ip): 12 csv_write =[] 13 nm = nmap.PortScanner() 14 nm.scan(hosts=ip, arguments='-n -sn -PE') 15 hosts_list = [(x, nm[x]['status']['state']) for x in nm.all_hosts()] 16 for host, status in hosts_list: 17 # print '{0}:{1}'.format(host, status) 18 csv_write.append([host, status]) 19 name = ip.split('/')[0] + '.csv' 20 # print name 21 with open(name, 'wb') as csvfile: 22 fieldnames = ['ip', 'status'] 23 w = csv.writer(csvfile, dialect='excel') 24 w.writerow(fieldnames) 25 w.writerows(csv_write) 26 print '[+]\"%s\" have saved, %d PC is up' % (name, len(hosts_list)) 27 self.count += len(hosts_list) 28 29 def get_ips(self, file): 30 ipList = [] 31 with open(file) as f: 32 for line in f.readlines(): 33 ipList.append(line.strip()) 34 return ipList 35 36 def run(self): 37 startTime = time.time() 38 print '[+]Scanning...' 39 ip_txt = 'C:\zichan.txt' 40 ipList = self.get_ips(ip_txt) 41 # print ipList 42 pool = Pool(5) 43 resultList = pool.map(self.scan, ipList) 44 pool.close() 45 pool.join() 46 endTime = time.time() 47 print '------------------------------------------------------' 48 print '[+]Scanning cost %ss, %d PC is up.' % (endTime - startTime, self.count) 49 print '[+]Done.' 50 51 if __name__ == '__main__': 52 myScan = Scan() 53 myScan.run()
比较简单的方法实现,实际情况下扫描7个内网B段大概不到一个半小时,讲道理比直接使用nmap快很多(对比的nmap现在还没有跑完,嗯)
保存格式为CSV文件,控制台输出如下:
后面会尝试优化,并添加新的功能如端口扫描、系统指纹、漏洞探测等,这次就这样!水平有限,嘻嘻。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:面向对象3
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash