poc-console command not found

In this troubleshooting guide we learn how to fix poc-console command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

poc-console: command not found

or when using sudo you get the following error message

sudo: poc-console: command not found

Solutions to poc-console: command not found

How To Fix poc-console: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu poc-console 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 poc-console command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.