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)

运行效果图


参考文献

[1].http://moniter.blog.51cto.com/2908666/1355004

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值