aeskeyfind command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aeskeyfind: command not found
or when using sudo you get the following error message
sudo: aeskeyfind: command not found
Solutions to aeskeyfind: command not found
How To Fix aeskeyfind: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aeskeyfind is provided by aeskeyfind package.
aeskeyfind is:
This program illustrates automatic techniques for locating 128-bit and 256-bit AES keys in a captured memory image.
The program uses various algorithms and also performs a simple entropy test to filter out blocks that are not keys. It counts the number of repeated bytes and skips blocks that have too many repeats.
This method works even if several bits of the key schedule have been corrupted due to memory decay.
This package is useful to several activities, as forensics investigations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install aeskeyfind
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install aeskeyfind.
sudo apt -y install aeskeyfind
Or if you have aptitude installed you can use the following command.
sudo aptitude install aeskeyfind
Summary
In this tutorial we learn how to fix aeskeyfind command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.