sslsniff command not found

In this troubleshooting guide we learn how to fix sslsniff command not found error message

Introduction

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

sslsniff: command not found

or when using sudo you get the following error message

sudo: sslsniff: command not found

Solutions to sslsniff: command not found

How To Fix sslsniff: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu sslsniff is provided by sslsniff package.

sslsniff is:

sslsniff is designed to create man-in-the-middle (MITM) attacks for SSL/TLS connections, and dynamically generates certs for the domains that are being accessed on the fly. The new certificates are constructed in a certificate chain that is signed by any certificate that is provided. sslsniff also supports other attacks like null-prefix or OCSP attacks to achieve silent interceptions of connections when possible.

To fix this problem, we can install more using the command below.

sudo apt-get -y install sslsniff

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install sslsniff.

sudo apt -y install sslsniff

Or if you have aptitude installed you can use the following command.

sudo aptitude install sslsniff

Summary

In this tutorial we learn how to fix sslsniff command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.