您好,登錄后才能下訂單哦!
思路懶得寫了.
依賴python-nmap,先在電腦上裝nmap,不然用不了.openpyxl實際上沒有用到,可以不安裝.
makeEx()沒用到,懶得刪了.
#依賴python-nmap,openpyxl包 import nmap import time import openpyxl from multiprocessing.dummy import Pool as ThreadPool import multiprocessing # 1.同目錄下創建一個input.txt,放入ip地址列(從xlsx中直接粘貼即可) # 2.輸出表格位置,需要先創建這個表格 expath='' inputFile='remain.txt' #掃描端口 #port='1521,1158,2100,3306,1433,1434,5000,5432,27017,6379,11211,80,8080,443,8000,8081,7001,9080,9090,22,23,10027,3389,5631,111,6000,135,445,139,21,25,110,69,161,162,53,5901,5902,2601-2609 ' # port='1-65535' #默認命令 arg='-Pn -T4 -sV' #輸出文件名 import time time_rq = time.strftime('%Y-%m-%d', time.localtime(time.time())) outPutFile = time_rq + inputFile def readfile(path,lock): # 返回url列表 file = open(path, 'r',encoding='utf-8') urlList=[] portList=[] for eachline in file.readlines(): #獲得地址段 x=eachline.split() url=x[0] port=x[1] # add=IPy.IP(url)#地址段列表 # for u in add: # ip=u.__str__(); # urlList.append(ip) urlList.append(url) portList.append(port) file.close() # 造infoList infoList=[] for index,url in enumerate(urlList): info={'hostname':url,'port':portList[index],'arg':arg,'lock':lock} infoList.append(info) return infoList def scan(info): hostName=info['hostname'] port=info['port'] lock=info['lock'] print(hostName+' '+port+' 掃描開始') scanner=nmap.PortScanner() scanner.scan(hosts=hostName,ports=port,arguments=arg) # print(res) out=open(outPutFile,'a+',encoding='utf-8') # out.write() state=scanner[hostName].state() tcp_ports=scanner[hostName].all_tcp() print(hostName+' '+state) for ports in tcp_ports: if scanner[hostName]['tcp'][ports]['state'] =='open' : st=hostName+' '+str(ports)+' '+scanner[hostName]['tcp'][ports]['name']+'\n' # lock.acquire() out.write(st) print(st) # lock.release() # print(hostName) out.close() def makeEx(): print('----------------開始寫入-------------------') wb=openpyxl.load_workbook(expath) sheet=wb.active c=open(outPutFile,'r',encoding='utf-8') i=1 for line in c.readlines(): linelist=line.split() ip=linelist[0] port=linelist[1] name=linelist[2] status=linelist[3] for j in range(4): if j==3: n=linelist[j] n=n.rsplit() n=n[0] sheet.cell(row=i, column=j + 1, value=n) else: sheet.cell(row=i,column=j+1,value=linelist[j]) i=i+1 c.close() wb.save(expath) print('----------------寫入完成-------------------') if __name__ == '__main__': print('----------------掃描開始-------------------') lock=multiprocessing.Manager().Lock() start=time.time() pool = ThreadPool(30) infolist=readfile(inputFile,lock) pool.map(scan,infolist) pool.close() pool.join() finish=time.time() print('----------------掃描完成-------------------') t=finish-start print('用時 %f'%t) out = open(outPutFile, 'a+', encoding='utf-8') out.write('\n用時 %f'%t) # makeEx() # info={'hostname':'135.233.115.55','port':'22,23,21,80,3389,5901,5902','arg':'-Pn -sV -T4'}
以上這篇python3 批量獲取對應端口服務的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。