Skip to content

Commit d7d5e0e

Browse files
authoredMay 21, 2023
Update SSH Brute Forcing Script.py
1 parent ea24d4d commit d7d5e0e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎Python-for-Pentesters All scripts/SSH Brute Forcing Script.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import threading
55
import time
66
from paramiko import SSHClient, AutoAddPolicy, AuthenticationException, ssh_exception
7-
7+
import pyfiglet
88

99
# This function is responsible for the ssh client connecting.
1010
# Successful authentication will return a code 0, a failed authentication will return a code 1.
@@ -39,6 +39,8 @@ def get_ip_address():
3939
# The program will start in the main function.
4040
def __main__():
4141

42+
ascii_banner = pyfiglet.figlet_format("X1-SSH Brute Forcing")
43+
print(ascii_banner)
4244
target = get_ip_address()
4345
username = input("Please enter the username :")
4446
password_file = input("please enter location of the password file : ")
@@ -57,4 +59,4 @@ def __main__():
5759
__main__()
5860

5961

60-
62+

0 commit comments

Comments
 (0)
Please sign in to comment.