sucrack command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sucrack: command not found
or when using sudo you get the following error message
sudo: sucrack: command not found
Solutions to sucrack: command not found
How To Fix sucrack: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sucrack is provided by sucrack package.
sucrack is:
sucrack is a multithreaded Linux/UNIX tool for cracking local user accounts via wordlist bruteforcing su. This tool comes in handy when you’ve gained access to a low-privilege user account but are allowed to su to other users. Many su implementations require a pseudo terminal to be attached in order to take the password from the user. This can’t be easily achieved with a simple shell script. This tool, written in C, is highly efficient and can attempt multiple logins at the same time.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sucrack
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sucrack.
sudo apt -y install sucrack
Or if you have aptitude installed you can use the following command.
sudo aptitude install sucrack
Summary
In this tutorial we learn how to fix sucrack command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.