Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Decompile ELF on Windows

I want to decompile file ELF 64-bit LSB executable with IDA on Windows, Its possible? If no, How can I do it on linux?

Thanks

like image 553
Evyatar Avatar asked Aug 16 '26 04:08

Evyatar


1 Answers

You don't need to execute the binary in order to perform binary decompilation, it's something that usually happens statically, thus it'd work with ELF on Windows.

You can decompile binaries with IDA using several ways:

  • Hex Rays Decompiler from the creators of IDA itself (not free)
  • Snowman, open-source decompiler (free)
  • retdec decompiler plugin (free, registration required)
  • decompiler by EiNSTeiN
  • Ghidra, open source decompiler (free)
like image 62
Megabeets Avatar answered Aug 17 '26 18:08

Megabeets