Skip to content

Commit

Permalink
content-update
Browse files Browse the repository at this point in the history
  • Loading branch information
BitwiseOperator committed Jun 15, 2024
1 parent 6cd03af commit 4a5bd12
Showing 1 changed file with 49 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 <port> -u <username> -w <wordlist> <target>
```

##### 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 <port> -u <username> -w <wordlist> -t <threads_default_4_supports_upto_8> <target>
```
!!! 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 <port> -u <username> -w <wordlist> <target>
```

!!! 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 <port> -u <username> -w <wordlist> -t <threads_default_4_supports_upto_8> <target>
```

0 comments on commit 4a5bd12

Please sign in to comment.