Windows executables and DLL's
dnSpy
dnSpy is a debugger and .NET assembly editor. You can use it to edit and debug assemblies even if you don't have any source code available.

Python compiled executable
If a executable was compiled with pyinstaller, we can extract the python compiled code and actually decompile it.
To extract use:
python pyinstxtractor.py <filename>
And to decompile use Uncompyle6
Tip: use a python venv
uncompyle6 *compiled-python-file-pyc-or-pyo*
Last updated