我要连接到主机的主要代码:
for password in passwordlist:
ssh = paramiko.client.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(host, port=int(float(port)), username=user, password=password)
#rest of code when password is incorrect. when password is corret: break
我正在尝试使用不同的密码连接到主机。仅当密码正确时,我才能连接到主机。现在,对于每个密码,ssh.connect函数大约需要2秒钟才能执行。由于我有成千上万个密码,因此尝试每个密码将花费大量时间。如何加快此过程?谢谢