ssldump command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ssldump: command not found
or when using sudo you get the following error message
sudo: ssldump: command not found
Solutions to ssldump: command not found
How To Fix ssldump: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ssldump is provided by ssldump package.
ssldump is:
This program will dump the traffic on a network and analyze it for SSLv3/TLS network traffic, typically used to secure TCP connections. When it identifies this traffic, it decodes the results. When provided with the appropriate keying material, it will also decrypt the connections and display the application data traffic.
ssldump is based on tcpdump, a network monitoring and data acquisition tool.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ssldump
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ssldump.
sudo apt -y install ssldump
Or if you have aptitude installed you can use the following command.
sudo aptitude install ssldump
Summary
In this tutorial we learn how to fix ssldump command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.