pocsuite command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pocsuite: command not found
or when using sudo you get the following error message
sudo: pocsuite: command not found
Solutions to pocsuite: command not found
How To Fix pocsuite: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pocsuite is provided by pocsuite3 package.
pocsuite3 is:
Pocsuite3 is an open-sourced remote vulnerability testing and proof-of-concept development framework developed by the Knownsec 404 Team. It comes with a powerful proof-of-concept engine, many nice features for the ultimate penetration testers and security researchers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pocsuite3
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pocsuite3.
sudo apt -y install pocsuite3
Or if you have aptitude installed you can use the following command.
sudo aptitude install pocsuite3
Summary
In this tutorial we learn how to fix pocsuite command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.