de4dot command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
de4dot: command not found
or when using sudo you get the following error message
sudo: de4dot: command not found
Solutions to de4dot: command not found
How To Fix de4dot: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu de4dot is provided by de4dot package.
de4dot is:
de4dot is a .NET deobfuscator and unpacker. It will try its best to restore a packed and obfuscated assembly to almost the original assembly.
Most of the obfuscation can be completely restored (eg. string encryption), but symbol renaming is impossible to restore since the original names aren’t (usually) part of the obfuscated assembly.
To fix this problem, we can install more using the command below.
sudo apt-get -y install de4dot
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install de4dot.
sudo apt -y install de4dot
Or if you have aptitude installed you can use the following command.
sudo aptitude install de4dot
Summary
In this tutorial we learn how to fix de4dot command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.