-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
182982f
commit e084b39
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,25 @@ | ||
# mango | ||
SSH Brute Force Tool | ||
|
||
## Quick Start | ||
Download the latest release or compile from source | ||
``` | ||
usage: mango [-h|--help] -i|--ip "<value>" [-p|--port "<value>"] -u|--username | ||
"<value>" --password-file "<value>" | ||
ssh brute force | ||
Arguments: | ||
-h --help Print help information | ||
-i --ip IP to target | ||
-p --port Port. Default: 22 | ||
-u --username Username to bruteforce | ||
--password-file Path to file of passwords | ||
``` | ||
|
||
## Examples | ||
``` | ||
# Brute Force user root on 192.168.64.5 on port 2220 with rockyou | ||
mango -u root --password-file ./password-list.txt -i 192.168.64.5 -p 2220 | ||
``` |