python實作的多執行緒埠掃描功能範例

高洛峰
發布: 2017-02-20 10:52:18
原創
1736 人瀏覽過

本文實例講述了python實現的多執行緒連接埠掃描功能。分享給大家參考,具體如下:

下面的程式給出了對給定的ip主機進行多執行緒掃描的Python程式碼

#!/usr/bin/env python
#encoding: utf-8
import socket, sys, thread, time
openPortNum = 0
socket.setdefaulttimeout(3)
def usage():
  print '''''Usage:
  Scan the port of one IP: python port_scan_multithread.py -o <ip>
  Scan the port of one IP: python port_scan_multithread.py -m <ip1, ip2, ip3, ip4 ...>
  &#39;&#39;&#39;
  print &#39;Exit&#39;
  sys.exit(1)
def socket_port(ip, PORT):
  global openPortNum
  if PORT > 65535:
    print &#39;Port scanning beyond the port range, interrupt to scan&#39;
    sys.exit(1)
  s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  result = s.connect_ex((ip, PORT))
  if(result == 0):
    print ip, PORT,&#39;is open&#39;
    openPortNum += 1
  s.close()
def start_scan(IP):
  for port in range(0, 65535+1):
    thread.start_new_thread(socket_port, (IP, int(port)))
    time.sleep(0.006)
if __name__ == &#39;__main__&#39;:
  t = 0
  if len(sys.argv)<2 or sys.argv[1] == &#39;-h&#39;:
    usage()
  elif sys.argv[1] == &#39;-o&#39;:
    ONE_IP = raw_input(&#39;Please input ip of scanning: &#39;)
    t = time.time()
    start_scan(ONE_IP)
  elif sys.argv[1] == &#39;-m&#39;:
    MANY_IP = raw_input(&#39;Please input many ip of scanning: &#39;)
    IP_SEG = MANY_IP.split(&#39;,&#39;)
    t = time.time()
    for i in IP_SEG:
      start_scan(i)
  print
  print &#39;total open port is %s, scan used time is: %f &#39; % (openPortNum, time.time()-t)
登入後複製

運行效果圖

rrreeepython實作的多執行緒埠掃描功能範例

實現的多線程連接埠掃描功能範例相關文章請關注PHP中文網!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!