#!/usr/bin/env python import socket if __name__=='__main__': port=3389 s=socket.socket() for cnt in range(253,2,-1): address='XXX.XXX.XXX.'+str(cnt) #XXX.XXX.XXX IP網(wǎng)段 try: s.connect((address,port)) print address except socket.error,e: print 'Error OR Port Not Opened'
Python的代碼簡單明了,但是功能不簡單,速度有些慢,主要還是單線程和網(wǎng)絡(luò)的原因吧。改進(jìn)一下可以當(dāng)一個(gè)簡陋的端口掃描器使用了,掃描指定網(wǎng)段、指定端口,多線程速度可能能好一點(diǎn)吧。
多線程實(shí)現(xiàn)
前幾天看了個(gè)講使用Python掃描端口的教程,看了之后自己也寫了個(gè)掃描端口的腳本。記錄下來,方便自己以后回顧。
端口掃描端口效果圖
python掃描器源代碼
# -*- coding:utf8 -*- #!/usr/bin/python # Python: 2.7.8 # Platform: Windows # Authro: wucl # Program: 端口掃描 # History: 2015.6.1 import socket, time, thread socket.setdefaulttimeout(3) def socket_port(ip,port): """ 輸入IP和端口號(hào),掃描判斷端口是否開放 """ try: if port>=65535: print u'端口掃描結(jié)束' s=socket.socket(socket.AF_INET, socket.SOCK_STREAM) result=s.connect_ex((ip,port)) if result==0: lock.acquire() print ip,u':',port,u'端口開放' lock.release() s.close() except: print u'端口掃描異常' def ip_scan(ip): """ 輸入IP,掃描IP的0-65534端口情況 """ try: print u'開始掃描 %s' % ip start_time=time.time() for i in range(0,65534): thread.start_new_thread(socket_port,(ip,int(i))) print u'掃描端口完成,總共用時(shí) :%.2f' %(time.time()-start_time) raw_input("Press Enter to Exit") except: print u'掃描ip出錯(cuò)' if __name__=='__main__': url=raw_input('Input the ip you want to scan: ') lock=thread.allocate_lock() ip_scan(url)
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com