端口扫描 并登录测试

端口扫描 并登录测试

1.安装Python

2.安装requests模块

cmd 运行 pip install requests 命令即可自动安装库成功

3.编辑Python

运行已检测的IP

import threading
    import queue
    import sys
    import time
    import requests
    
    
    def test_Sign_in(ip):
        requests.packages.urllib3.disable_warnings()
        sess = requests.Session()
        headers = {
            'Connection': 'keep-alive',
            'Pragma': 'no-cache',
            'Cache-Control': 'no-cache',
            'Accept': 'application/json, text/plain, */*',
            'Origin': f'http://{ip}',
            'X-Requested-With': 'XMLHttpRequest',
            'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3904.108 Safari/537.36',
            'DNT': '1',
            'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
            'Referer': f'http://{ip}/',
            'Accept-Encoding': 'gzip, deflate',
            'Accept-Language': 'zh-CN,zh;q=0.9',
        }
    data = {
        'username': 'admin',
        'password': 'admin'
    }
    try:
        sess.headers.update(headers)
        response = sess.post(f'http://{ip}/login', data=data, timeout=5, verify=False)
        res = response.json()['msg']
        if '登录成功' in res:
            okiplist.append(f'http://{ip}\n')
            print(f'[http://{ip}]{res}')
    except:
        #print("Unexpected error:", sys.exc_info()[0])
        pass
        def check_open(q):
        try:
            while True:
                ip = q.get_nowait()
                test_Sign_in(ip)
        except queue.Empty as e:
            pass
    
    
    if __name__ == '__main__':
        start_time = time.time()  # 脚本开始执行的时间
        okiplist = []
        q = queue.Queue()
        with open('iplist.txt', 'r+') as f:
            for ip in f.readlines():
                q.put(ip.strip())
                threads = []
    for i in range(10):#10个线程
        r = threading.Thread(target=check_open, args=(q,))
        r.start()
        threads.append(r)
    
    for t in threads:
        t.join()
    
    with open('okiplist.txt', 'a+') as f:
        f.seek(0)
        list1 = f.readlines()#按行读取,返回列表
        list1.extend(okiplist)#合并新列表
        list1 = list(set(list1))#去重
        list1.sort()  # 排序
        f.seek(0)  # 文件指针移到开头
        f.truncate()  # 清空
        f.writelines(list1)  # 写入
    end_time = time.time()  # 脚本结束执行的时间
    print("[脚本运行时间] %3ss" % (end_time-start_time,))

扫描端口

    import os
    from sys import argv
    import telnetlib
    import threading
    import queue
    import time
    
    
    def get_ip_status(ip, port):
        server = telnetlib.Telnet()
        try:
            server.open(ip, port, 1)
            iplist.append(f'{ip}:{port}\n')
        except Exception as err:
            pass
        finally:
            server.close()
    
    
    def check_open(q, p):
        try:
            while True:
                ip = q.get_nowait()
                get_ip_status(ip, p)
        except queue.Empty as e:
            pass
    
    
    def ips(start, end):
        import socket
        import struct
        start = struct.unpack('>I', socket.inet_aton(start))[0]
        end = struct.unpack('>I', socket.inet_aton(end))[0]
        return [socket.inet_ntoa(struct.pack('>I', i)) for i in range(start, end+1) if i & 0xff]
    
    
    def process_bar():
        while not q.empty():
            i = (qsize - q.qsize()) / qsize * 100
            print("\r扫描进度: {}{}  {:>5.1f}% | 100%".format(
                "▋" * (int(i) // 2), ' ' * ((101 - int(i)) // 2), i), end="", flush=True)
        print("\r扫描进度: {}  {:>5.1f}% | 100%".format(
            "▋" * 50, 100), end="", flush=True)
    
    
    def helpstr():
        return f'''
                           欢迎使用 ScanPort v1.0
                                  By:jflmao
    
    
      用法:
          {os.path.basename(__file__)} [-h]
    
          {os.path.basename(__file__)} [-i <0.0.0.0-255.255.255.255>] [-p <80>] [-t <500>]
        
      命令解释:
          -h       显示此帮助
          -i       IP地址范围
          -p       端口,可省略,默认65432
          -t       线程数,可省略,默认500线程
    
        '''
    
    
    if __name__ == '__main__':
        # print(os.path.basename(__file__))  # 当前文件名名称
        start_time = time.time()  # 脚本开始执行的时间
        q = queue.Queue()
        port = 65432  # 需要扫描的端口号
        iplist = []  # 开放端口的IP列表
        #ipslist = ips('185.212.0.1', '185.212.255.255')  # 扫描的IP范围
        threadNum = 500  # 默认线程数
    
        if len(argv) > 1:
            if '-h' == argv[1]:
                print(helpstr())
                exit()
            for i, item in enumerate(argv):
                if '-i' in item:
                    ip = argv[i+1].split('-')
                    ipslist = ips(ip[0], ip[1])
                elif '-p' in item:
                    port = int(argv[i+1])
                elif '-t' in item:
                    threadNum = int(argv[i+1])
                else:
                    pass
        else:
            print(helpstr())
            exit()
    
        for i in ipslist:
            q.put(i)
        qsize = q.qsize()  # 总任务数
        process = threading.Thread(target=process_bar)
        process.start()  # 创建进度条线程,并启动
        threads = []  # 线程列表
        for i in range(threadNum):
            t = threading.Thread(target=check_open, args=(q, port))
            t.start()
            threads.append(t)
    
        for t in threads:
            t.join()
        process.join()
    
        with open('iplist.txt', 'a+') as f:  # 存入文件
            f.seek(0)
            list1 = f.readlines()  # 按行读取,返回列表
            list1.extend(iplist)  # 合并新列表
            list1 = list(set(list1))  # 去重
            list1.sort()  # 排序
            f.seek(0)  # 文件指针移到开头
            f.truncate()  # 清空
            f.writelines(list1)  # 写入
    
        print(f'\n本次扫描到开放[{port}]端口的IP数为 {len(iplist)} 个')
        end_time = time.time()  # 脚本结束执行的时间
        print("[脚本运行时间] %3ss" % (end_time-start_time,))
    
评论区
头像
    头像
    bkglfxbbn
    2023年1月10日 23:45
    回复

    端口扫描 并登录测试 - 請勿斷片
    abkglfxbbn
    [url=http://www.g73h7lyf6cl20qa6y5h8e75q367xg3f0s.org/]ubkglfxbbn[/url]
    bkglfxbbn http://www.g73h7lyf6cl20qa6y5h8e75q367xg3f0s.org/