이 글의 예에서는 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 ...> ''' 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)
작업 렌더링
파이썬으로 구현된 멀티 스레드 포트 스캐닝 기능의 더 많은 예와 관련 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!