medusa command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
medusa: command not found
or when using sudo you get the following error message
sudo: medusa: command not found
Solutions to medusa: command not found
How To Fix medusa: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu medusa is provided by medusa package.
medusa is:
Medusa is intended to be a speedy, massively parallel, modular, login brute-forcer. The goal is to support as many services which allow remote authentication as possible. The author considers following items as some of the key features of this application: * Thread-based parallel testing. Brute-force testing can be performed against multiple hosts, users or passwords concurrently. * Flexible user input. Target information (host/user/password) can be specified in a variety of ways. For example, each item can be either a single entry or a file containing multiple entries. Additionally, a combination file format allows the user to refine their target listing. * Modular design. Each service module exists as an independent .mod file. This means that no modifications are necessary to the core application in order to extend the supported list of services for brute-forcing.
To fix this problem, we can install more using the command below.
sudo apt-get -y install medusa
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install medusa.
sudo apt -y install medusa
Or if you have aptitude installed you can use the following command.
sudo aptitude install medusa
Summary
In this tutorial we learn how to fix medusa command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.