Why don’t you use Ghidra? It’s a free tool from the NSA that a lot of cybersecurity experts use to reverse engineer binaries. https://github.com/NationalSecurityAgency/ghidra/releases Answer from Deleted User on reddit.com
🌐
Dogbolt
dogbolt.org
Decompiler Explorer
Decompiler Explorer is an interactive online decompiler which shows equivalent C-like output of decompiled programs from many popular decompilers.
🌐
JetBrains
jetbrains.com › decompiler
dotPeek: Free .NET Decompiler & Assembly Browser by JetBrains
May 26, 2021 - dotPeek is a free tool based on ReSharper. It can reliably decompile any .NET assembly into C# or IL code.
Discussions

debugging - Is it possible to "decompile" a Windows .exe? Or at least view the Assembly? - Stack Overflow
Note that IDA Pro's previous version is free for non-commercial use. 2008-11-21T07:09:07.723Z+00:00 ... Note that most malware these days (at least compiled malware) can easily detect if it is running in VMWare, Virtual PC, WINE, VirtualBox, etc. 2009-07-25T20:59:24.007Z+00:00 ... All I can see is X86 type of coding like push mov. I want to decompile the exe ... More on stackoverflow.com
🌐 stackoverflow.com
DLL and EXE files decompiled - C++ Forum
Hi everybody, It is quite easy to decompile .DLL and .EXE files written with C# (dotPeek, ILSpy, or even online: http://www.decompiler.com/ ). More on cplusplus.com
🌐 cplusplus.com
October 19, 2020
Decompile / Recompile an EXE File
Hi All, I have an very small application that installs .Net Framework and sets an interactive logon message for our non domain PC’s, this was built in house by a previous software developer, I’m wanting to decompile the executable to modify the interactive logon message after a change in ... More on community.spiceworks.com
🌐 community.spiceworks.com
8
6
June 6, 2023
How to Decompile and Debbug Dll connected to Exe Application using FOSS or Freeware Applications?
Try https://github.com/dnSpyEx/dnSpy For me, it worked, decompiling DLLs, dynamic debug of exe programs and modify C# DLLs on low IL level (assembly like) with back decompilation on the fly. Its based on Visual Studio Code, open source runs under Win10 For complet project decompilation and linkage between DLLs as well as good searching caps, try dotPeek from jetbrains. This is free but not open source and cannot run programs only inspect Maybe then try to load the decompilated files with Visual Studio. I've not tried how well this works More on reddit.com
🌐 r/AskReverseEngineering
3
1
August 22, 2023
🌐
Reddit
reddit.com › r/software › found this exedecompiler.com website. does anybody know it? is it worth it?
r/software on Reddit: Found this exedecompiler.com website. Does anybody know it? Is it worth it?
October 28, 2023 -

So i found this website called exedecompiler.com that has a few services like code modification or development, and a service that stands out is the "exe to source code" for $50. Has anybody used it or heard about it?

Is it worth $50 for a decompilation into source code?

If i really want to decompile an exe are there "better" alternatives or maybe a service like this is a good idea?

Please give me your thoughts about it.

EDIT:

To clarify my goal on what I want to achieve. The application is a GUI application that in short, operates with the contents of a binary (non executable) file. I am not shure what the source language is, my guesses are C++ since the app interacts with an embedded system, but nothing is confirmed (I'm shure It is not .NET at least, no luck for me)

My goal is not something simple like changing an IP address, as something like a hex editor could maybe do the job. The two main goals would be analyze a certain functionality and to add extra functionality.

I would like to analyze a portion of the code to discover how this executable manipulates the memory given to it (the file contents) and discover what "magic" it does to it.

I would also like to either change some of its code to add extra functionality, but i find this to be harder and unlikely. So i thought of doing some DLL injection that would execute the code i need, that being adding extra UI components to the GUI that would do what i want, but didn't succeed yet in achieving my goal. I am studying what exactly went wrong as it didn't seem to be something obvious like bad code or no permissions.

Thank you for u/NaughtyBlackGuy that recomended Ghidra. It seems like the tool i was looking for. I am not a reverse engineering expert but I know a thing or two and its never too late to learn.

If somebody has any other tips or tricks I would gladly take anything else i can take.

🌐
Binary Ninja
binary.ninja
Binary Ninja
Developed with a focus on delivering a high-quality API for automation and a clean and usable GUI, Binary Ninja is in active use by malware analysts, vulnerability researchers, and software developers worldwide.
🌐
Decompiler.com
decompiler.com
Java decompiler online / APK decompiler - Decompiler.com
Navigate through and inspect decompiled code online without installing anything. .exe and .dll .NET decompilation back to C# project.
Top answer
1 of 16
619

With a debugger you can step through the program assembly interactively.
With a disassembler, you can view the program assembly in more detail.
With a decompiler, you can turn a program back into partial source code, assuming you know what it was written in (which you can find out with free tools such as PEiD - if the program is packed, you'll have to unpack it first OR Detect-it-Easy if you can't find PEiD anywhere. DIE has a strong developer community on github currently).

Debuggers:

  • OllyDbg, free, a fine 32-bit debugger, for which you can find numerous user-made plugins and scripts to make it all the more useful.
  • WinDbg, free, a quite capable debugger by Microsoft. WinDbg is especially useful for looking at the Windows internals, since it knows more about the data structures than other debuggers.
  • SoftICE, SICE to friends. Commercial and development stopped in 2006. SoftICE is kind of a hardcore tool that runs beneath the operating system (and halts the whole system when invoked). SoftICE is still used by many professionals, although might be hard to obtain and might not work on some hardware (or software - namely, it will not work on Vista or NVIDIA gfx cards).

Disassemblers:

  • IDA Pro(commercial) - top of the line disassembler/debugger. Used by most professionals, like malware analysts etc. Costs quite a few bucks though (there exists free version, but it is quite quite limited)
  • W32Dasm(free) - a bit dated but gets the job done. I believe W32Dasm is abandonware these days, and there are numerous user-created hacks to add some very useful functionality. You'll have to look around to find the best version.

Decompilers:

  • Visual Basic: VB Decompiler, commercial, produces somewhat identifiable bytecode.
  • Delphi: DeDe, free, produces good quality source code.
  • C: HexRays, commercial, a plugin for IDA Pro by the same company. Produces great results but costs a big buck, and won't be sold to just anyone (or so I hear).
  • .NET(C#): dotPeek, free, decompiles .NET 1.0-4.5 assemblies to C#. Support for .dll, .exe, .zip, .vsix, .nupkg, and .winmd files.

Some related tools that might come handy in whatever it is you're doing are resource editors such as ResourceHacker (free) and a good hex editor such as Hex Workshop (commercial).

Additionally, if you are doing malware analysis (or use SICE), I wholeheartedly suggest running everything inside a virtual machine, namely VMware Workstation. In the case of SICE, it will protect your actual system from BSODs, and in the case of malware, it will protect your actual system from the target program. You can read about malware analysis with VMware here.

Personally, I roll with Olly, WinDbg & W32Dasm, and some smaller utility tools.

Also, remember that disassembling or even debugging other people's software is usually against the EULA in the very least :)

2 of 16
62

psoul's excellent post answers to your question so I won't replicate his good work, but I feel it'd help to explain why this is at once a perfectly valid but also terribly silly question. After all, this is a place to learn, right?

Modern computer programs are produced through a series of conversions, starting with the input of a human-readable body of text instructions (called "source code") and ending with a computer-readable body of instructions (called alternatively "binary" or "machine code").

The way that a computer runs a set of machine code instructions is ultimately very simple. Each action a processor can take (e.g., read from memory, add two values) is represented by a numeric code. If I told you that the number 1 meant scream and the number 2 meant giggle, and then held up cards with either 1 or 2 on them expecting you to scream or giggle accordingly, I would be using what is essentially the same system a computer uses to operate.

A binary file is just a set of those codes (usually call "op codes") and the information ("arguments") that the op codes act on.

Now, assembly language is a computer language where each command word in the language represents exactly one op-code on the processor. There is a direct 1:1 translation between an assembly language command and a processor op-code. This is why coding assembly for an x386 processor is different than coding assembly for an ARM processor.

Disassembly is simply this: a program reads through the binary (the machine code), replacing the op-codes with their equivalent assembly language commands, and outputs the result as a text file. It's important to understand this; if your computer can read the binary, then you can read the binary too, either manually with an op-code table in your hand (ick) or through a disassembler.

Disassemblers have some new tricks and all, but it's important to understand that a disassembler is ultimately a search and replace mechanism. Which is why any EULA which forbids it is ultimately blowing hot air. You can't at once permit the computer reading the program data and also forbid the computer reading the program data.

(Don't get me wrong, there have been attempts to do so. They work as well as DRM on song files.)

However, there are caveats to the disassembly approach. Variable names are non-existent; such a thing doesn't exist to your CPU. Library calls are confusing as hell and often require disassembling further binaries. And assembly is hard as hell to read in the best of conditions.

Most professional programmers can't sit and read assembly language without getting a headache. For an amateur it's just not going to happen.

Anyway, this is a somewhat glossed-over explanation, but I hope it helps. Everyone can feel free to correct any misstatements on my part; it's been a while. ;)

🌐
CodemerxDecompile
decompiler.codemerx.com
CodemerxDecompile
The first standalone .NET decompiler for Mac, Linux and Windows. Free. For everyone. Forever.
Find elsewhere
🌐
Hex-Rays
hex-rays.com › ida-free
IDA Free: Disassembler & Decompiler at No Cost
IDA Classroom is the ideal free-of-charge solution for universities, engineering schools, professional trainers, and for-profit educational providers aiming to have their students equipped with best-in-class reverse engineering software.
🌐
HexEd.it
hexed.it
HexEd.it - Free Browser-based Online and Offline Hex Editing
HexEd.it, the powerful online hex editor running in your web browser using HTML5/JavaScript technology. Analyse and edit binary files everywhere.
🌐
Java Decompiler
java-decompiler.github.io
Java Decompiler
The “Java Decompiler project” aims to develop tools in order to decompile and analyze Java 5 “byte code” and the later versions.
🌐
PDFTK Builder
angusj.com › resourcehacker
Resource Hacker
... a freeware resource compiler & decompiler for Windows® applications Version 5.2.8 Last updated: 6 March 2025 Copyright © 1999-2025 Angus Johnson [email protected] Freeware - no nags, no ads and fully functional. Download ... TM is a resource editor for 32bit and 64bit Windows® applications. It's both a resource compiler (for *.rc files), and a decompiler - enabling viewing and editing of resources in executables (*.exe; *.dll; *.scr; etc) and compiled resource libraries (*.res, *.mui).
🌐
Java Decompilers
javadecompilers.com
Java decompiler online
free for non-commercial use only, http://jd.benow.ca/ Author: Emmanuel Dupuy Updated in 2015. Has its own visual interface and plugins to Eclipse and IntelliJ . Written in C++, so very fast. Supports Java 5. open-source, https://bitbucket.org/mstrobel/procyon/wiki/Java Decompiler Author: Mike Strobel Updated in 2019.
🌐
Extract
extract.me
Archive Extractor Online
Archive Extractor is a simple online tool that can extract over 70 types of compressed files, such as 7z, zipx, rar, tar, exe, dmg, and more.
🌐
Cplusplus
cplusplus.com › forum › windows › 273531
DLL and EXE files decompiled - C++ Forum
October 19, 2020 - Hi everybody, It is quite easy to decompile .DLL and .EXE files written with C# (dotPeek, ILSpy, or even online: http://www.decompiler.com/ ).
🌐
Omnimaga
omnimaga.org › computer-programming › decompile-exe
Decompile .exe
November 27, 2012 - Free RAM areas · Comprehensive Getkeyr table · URL Shortener · Online Axe Tilemap Editor · Help · Contact Us · Change Request · Report Issue/Bug · Team · Articles · Members · View the memberlist · Search For Members · Buddies · Login · Register · Omnimaga » · Forum » · General Discussion » · Technology and Development » · Computer Programming » · Decompile .exe ·
🌐
Compiler Explorer
godbolt.org
Compiler Explorer
Compiler Explorer is an interactive online compiler which shows the assembly output of compiled C++, Rust, Go (and many more) code.
🌐
Pylingual
pylingual.io
PyLingual
We cannot provide a description for this page right now