문제

If I use a decompiler to get the source of a known C++ .exe botnet bin will the program execute during the "decompile" ?

What decompiler should I use?

도움이 되었습니까?

해결책

No. Decompilation treats the binary as data and does not execute any of the code.

It is like looking at sheet music to determine the structure of the music. The music is not played or heard.

The disassembler or decompiler to use depends on the architecture of the executable. Since you mention .exe that suggests it is MS Windows or Vax/VMS. Search for one suitable for your environment.

다른 팁

I haven't seen any decompilers that generate C++ code. I've seen a few experimental ones that make a reasonable attempt at generating C code, but they tended to be dependent on matching the code-generation patterns of a particular compiler (that may have changed, it's been awhile since I last looked into this). Of course any symbolic information will be gone. Google for "decompiler".

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top