sslsplit command not found

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

Introduction

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

sslsplit: command not found

or when using sudo you get the following error message

sudo: sslsplit: command not found

Solutions to sslsplit: command not found

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

In Ubuntu sslsplit is provided by sslsplit package.

sslsplit is:

SSLsplit is a tool for man-in-the-middle attacks against SSL/TLS encrypted network connections. Connections are transparently intercepted through a network address translation engine and redirected to SSLsplit. SSLsplit terminates SSL/TLS and initiates a new SSL/TLS connection to the original destination address, while logging all data transmitted. SSLsplit is intended to be useful for network forensics and penetration testing.

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

sudo apt-get -y install sslsplit

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

You can also use apt command to install sslsplit.

sudo apt -y install sslsplit

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

sudo aptitude install sslsplit

Summary

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