From 6dd193dda803a0a6f2053ba5ae6dbd7ab06d1fec Mon Sep 17 00:00:00 2001 From: UnleashTheCode Date: Tue, 10 Mar 2020 16:26:16 +0200 Subject: [PATCH] medusa: add page (#3899) --- pages/linux/medusa.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/linux/medusa.md diff --git a/pages/linux/medusa.md b/pages/linux/medusa.md new file mode 100644 index 000000000..06ceb4117 --- /dev/null +++ b/pages/linux/medusa.md @@ -0,0 +1,19 @@ +# Medusa + +> A modular and parallel login brute-forcer for a variety of protocols. + +- 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 a HTTP server using the username, password and user-agent specified: + +`medusa -M HTTP -h host -u {{username}} -p {{password}} -m USER-AGENT:"{{Agent}}"` + +- Execute a brute force against a MySQL server using a file cointaining usernames and a hash: + +`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`