Question:
how to view the content in .exe file?
anji
2011-03-28 06:12:36 UTC
how to view thw the content in .exe i mean the code if i open by some applications like "hex-editor-neo" it shows some different code with different symbols...,
how to view the thw in it.,
and how to convert it into high level langugaes (understandable to us)..
can anyone help me to find the answer????
please give some links and ebooks if any applications and tools also...,
Eight answers:
2011-04-04 01:54:15 UTC
Haha..

I use 7-zip to peep inside the exe file
2016-11-02 08:27:05 UTC
How To Read Exe Files
2011-03-28 06:17:56 UTC
Once the source code has been compiled into an .exe file, you can no longer view the source code. It has been converted into machine language which is not readable as you are referring.



One option is to use a decompiler, but you need to know which programming language was used to create the .exe file in the first place. If you know which language was used (for example, C) you can use a decompiler (in this case, a C decompiler). This will analyze the .exe file and generate several files containing source code, most of which will be in assembly language. Unless you are an ASL programmer (which, by asking this question it is doubtful you are) you will not be able to understand it, as it is a very low level language unlike C or Delphi.
David
2011-03-28 06:25:07 UTC
Once the exe has been compiled, the only thing you can view is the machine code, which is in binary. You can get decompilers which convert the machine code to Assembely which shows what the exe is doing, which you can then replicate and try to reporudce the same effects by writing your own code, which then you'll have the source for it. It's very complex and time consuming, but it's how reverse engineering works.
pete l
2011-03-28 06:18:14 UTC
You can view the code using a hex viewer however it will not make much sense, but you can't convert it unless you have the original source code.
2011-03-28 06:22:04 UTC
Sorry, but unless the software vendor willing gives out the source code.



Then reverse engineering the source code, would be VERY iLLEGAL as it breaks various computer and intellectual property laws. It is important to the know that in most cases, you do not own the software installed on your computer. (Read the program's EULA)
2016-03-15 09:34:23 UTC
The "contents" would be mostly code (i.e. machine instructions). If you want to disassemble the executable, use a debugger like OllyDbg. However, you will need a good understanding of x86 assembly.
Ranjit
2011-03-28 06:18:32 UTC
it will be open in hiew 32 & for changing language w32dsm89


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...