1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/medusa.md

29 lines
1.1 KiB
Markdown
Raw Normal View History

# medusa
2020-03-10 16:26:16 +02:00
> A modular and parallel login brute-forcer for a variety of protocols.
> More information: <https://jmk-foofus.github.io/medusa/medusa.html>.
2020-03-10 16:26:16 +02:00
- List all installed modules:
`medusa -d`
- Show usage example of a specific module (use `medusa -d` for listing all installed modules):
`medusa -M {{ssh|http|web-form|postgres|ftp|mysql|...}} -q`
2020-03-10 16:26:16 +02:00
- Execute brute force against an FTP server using a file containing usernames and a file containing passwords:
`medusa -M ftp -h host -U {{path/to/username_file}} -P {{path/to/password_file}}`
- Execute a login attempt against an HTTP server using the username, password and user-agent specified:
2020-03-10 16:26:16 +02:00
`medusa -M HTTP -h host -u {{username}} -p {{password}} -m USER-AGENT:"{{Agent}}"`
2020-12-04 07:37:44 -05:00
- Execute a brute force against a MySQL server using a file containing usernames and a hash:
2020-03-10 16:26:16 +02:00
`medusa -M mysql -h host -U {{path/to/username_file}} -p {{hash}} -m PASS:HASH`
- Execute a brute force against a list of SMB servers using a username and a pwdump file:
`medusa -M smbnt -H {{path/to/hosts_file}} -C {{path/to/pwdump_file}} -u {{username}} -m PASS:HASH`