themole command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
themole: command not found
or when using sudo you get the following error message
sudo: themole: command not found
Solutions to themole: command not found
How To Fix themole: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu themole is provided by themole package.
themole is:
The Mole is an automatic SQL Injection exploitation tool. Only by providing a vulnerable URL and a valid string on the site it can detect the injection and exploit it, either by using the union technique or a boolean query based technique.
The Mole uses a command based interface, allowing the user to indicate the action he wants to perform easily. The CLI also provides auto-completion on both commands and command arguments, making the user type as less as possible.
To fix this problem, we can install more using the command below.
sudo apt-get -y install themole
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install themole.
sudo apt -y install themole
Or if you have aptitude installed you can use the following command.
sudo aptitude install themole
Summary
In this tutorial we learn how to fix themole command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.