Example of the multi-threaded Port Scan function implemented by python: python Port Scan

Source: Internet
Author: User

Example of the multi-threaded Port Scan function implemented by python: python Port Scan

This example describes the multi-threaded port scanning function implemented by python. We will share this with you for your reference. The details are as follows:

The following program provides Python code for multi-thread scanning of a given ip host.

#!/usr/bin/env python#encoding: utf-8import socket, sys, thread, timeopenPortNum = 0socket.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 ...>  '''  print 'Exit'  sys.exit(1)def socket_port(ip, PORT):  global openPortNum  if PORT > 65535:    print 'Port scanning beyond the port range, interrupt to scan'    sys.exit(1)  s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  result = s.connect_ex((ip, PORT))  if(result == 0):    print ip, PORT,'is open'    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__ == '__main__':  t = 0  if len(sys.argv)<2 or sys.argv[1] == '-h':    usage()  elif sys.argv[1] == '-o':    ONE_IP = raw_input('Please input ip of scanning: ')    t = time.time()    start_scan(ONE_IP)  elif sys.argv[1] == '-m':    MANY_IP = raw_input('Please input many ip of scanning: ')    IP_SEG = MANY_IP.split(',')    t = time.time()    for i in IP_SEG:      start_scan(i)  print  print 'total open port is %s, scan used time is: %f ' % (openPortNum, time.time()-t)

Run

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.