码迷,mamicode.com
首页 > 编程语言 > 详细

python使用nmap端口扫描

时间:2017-03-15 19:26:37      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:python nmap 扫描

第一版:只支持以逗号分隔的端口,不支持端口范围  

Firstly:      sudo apt-get install nmap

Secondly:pip install python-nmap

Thirdly:copy the code bellow to a file like  scan_network.py

  1. #!/usr/bin/env python

  2. import nmap

  3. import optparse


  4. def nmapScan(tgtHost,tgtPort):

  5.    nmScan = nmap.PortScanner()

  6.    nmScan.scan(tgtHost,tgtPort)

  7.    state=nmScan[tgtHost][‘tcp‘][int(tgtPort)][‘state‘]

  8.    print ("[*] " + tgtHost + " tcp/"+tgtPort +" "+state)


  9. def main():

  10.    parser = optparse.OptionParser(‘usage %prog ‘+\

  11.                                   ‘-H <target host> -p <target port>‘)

  12.    parser.add_option(‘-H‘, dest=‘tgtHost‘, type=‘string‘,\

  13.                      help=‘specify target host‘)

  14.    parser.add_option(‘-p‘, dest=‘tgtPort‘, type=‘string‘,\

  15.                      help=‘specify target port[s] separated by comma‘)

  16.    

  17.    (options, args) = parser.parse_args()

  18.    

  19.    tgtHost = options.tgtHost

  20.    tgtPorts = str(options.tgtPort).split(‘,‘)

  21.    

  22.    if (tgtHost == None) | (tgtPorts[0] == None):

  23.        print (parser.usage)

  24.        exit(0)

  25.    for tgtPort in tgtPorts:

  26.        nmapScan(tgtHost, tgtPort)



  27. if __name__ == ‘__main__‘:

  28.    main


Forthly:chmod +x  scan_network.py   

fifthly:      ./scan_network.py -H 192.168.1.1 -p 22,23


第二版:支持以逗号分割及以-分割的端口范围

#!/usr/bin/env python import nmap import optparse def nmapScan(tgtHost,tgtPort):    nmScan = nmap.PortScanner()    nmScan.scan(tgtHost,tgtPort)    state=nmScan[tgtHost][‘tcp‘][int(tgtPort)][‘state‘]    print ("[*] " + tgtHost + " tcp/"+tgtPort +" "+state) def main():    parser = optparse.OptionParser(‘usage %prog ‘+                                   ‘-H <target host> -p <target port>‘)    parser.add_option(‘-H‘, dest=‘tgtHost‘, type=‘string‘,                      help=‘specify target host‘)    parser.add_option(‘-p‘, dest=‘tgtPort‘, type=‘string‘,                      help=‘specify target port[s] separated by comma‘)    (options, args) = parser.parse_args()    tgtHost = options.tgtHost ######this code bellow is to support scan port range like 66-88    tgtPorts = []    tgtPorts_cache = str(options.tgtPort).split(‘,‘)    i = int(len(tgtPorts_cache))    for m in range( 0,i ):        tgtPorts_split = str(tgtPorts_cache[m]).split(‘-‘)        if(len(tgtPorts_split) < 2):            tgtPorts.extend(tgtPorts_split)            #print(tgtPorts)        else:            for n in range(int(tgtPorts_split[0]),int(tgtPorts_split[1])+1):                tgtPorts.append(str(n))                #print(tgtPorts) ######above the tgtPorts are the ports list you want to scann    #tgtPorts = str(options.tgtPort).split(‘,‘)        if (tgtHost == None) | (tgtPorts[0] == None):        print (parser.usage)        exit(0)    for tgtPort in tgtPorts:        nmapScan(tgtHost, tgtPort) if __name__ == ‘__main__‘:    main()

技术分享

本文出自 “净空蓝星” 博客,请务必保留此出处http://jingkonglanxing.blog.51cto.com/1152128/1906859

python使用nmap端口扫描

标签:python nmap 扫描

原文地址:http://jingkonglanxing.blog.51cto.com/1152128/1906859

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!