From 4a5bd126dae718969c21992a8ae57f3b4ad9e7dd Mon Sep 17 00:00:00 2001 From: BitwiseOperator Date: Sat, 15 Jun 2024 00:48:18 -0400 Subject: [PATCH] content-update --- .../SSH_Brute_Force.md | 90 ++++++++++--------- 1 file changed, 49 insertions(+), 41 deletions(-) diff --git a/docs/Cyber_Offensive/Password_Attacks,_Cracking_&_Decoding/SSH_Brute_Force.md b/docs/Cyber_Offensive/Password_Attacks,_Cracking_&_Decoding/SSH_Brute_Force.md index 263cbeebd..5e9a77026 100644 --- a/docs/Cyber_Offensive/Password_Attacks,_Cracking_&_Decoding/SSH_Brute_Force.md +++ b/docs/Cyber_Offensive/Password_Attacks,_Cracking_&_Decoding/SSH_Brute_Force.md @@ -12,44 +12,52 @@ #### Choose whether you want to use the async or multithread Python script and run the one you need - ##### async - - ```bash - usage: async-ssh-bruteforcer.py [-h] [-p PORT] -w WORDLIST -u USERNAME target - - positional arguments: - target Host to attack on e.g. 10.10.10.10. - - options: - -h, --help show this help message and exit - -p PORT, --port PORT Port to attack on, Default:22 - -w WORDLIST, --wordlist WORDLIST - -u USERNAME, --username USERNAME - Username with which bruteforce to - ``` - - ```bash - python3 async-ssh-bruteforcer.py -p -u -w - ``` - - ##### multithreaded - - ```bash - usage: multithreaded-ssh-bruteforcer.py [-h] [-p PORT] -w WORDLIST -u USERNAME [-t THREADS] target - - positional arguments: - target Host to attack on e.g. 10.10.10.10. - - options: - -h, --help show this help message and exit - -p PORT, --port PORT Port to attack on, Default:22 - -w WORDLIST, --wordlist WORDLIST - -u USERNAME, --username USERNAME - Username with which bruteforce to - -t THREADS, --threads THREADS - Specify the thread to use ,Default:4,supports 8 threads - ``` - - ```bash - python3 multithreaded-ssh-bruteforcer.py -p -u -w -t - ``` + !!! info "" + + ##### async + + ```bash + usage: async-ssh-bruteforcer.py [-h] [-p PORT] -w WORDLIST -u USERNAME target + + positional arguments: + target Host to attack on e.g. 10.10.10.10. + + options: + -h, --help show this help message and exit + -p PORT, --port PORT Port to attack on, Default:22 + -w WORDLIST, --wordlist WORDLIST + -u USERNAME, --username USERNAME + Username with which bruteforce to + ``` + + Example + + ```bash + python3 async-ssh-bruteforcer.py -p -u -w + ``` + + !!! info "" + + ##### multithreaded + + ```bash + usage: multithreaded-ssh-bruteforcer.py [-h] [-p PORT] -w WORDLIST -u USERNAME [-t THREADS] target + + positional arguments: + target Host to attack on e.g. 10.10.10.10. + + options: + -h, --help show this help message and exit + -p PORT, --port PORT Port to attack on, Default:22 + -w WORDLIST, --wordlist WORDLIST + -u USERNAME, --username USERNAME + Username with which bruteforce to + -t THREADS, --threads THREADS + Specify the thread to use ,Default:4,supports 8 threads + ``` + + Example + + ```bash + python3 multithreaded-ssh-bruteforcer.py -p -u -w -t + ```