The Bytecode Club
help - Printable Version

+- The Bytecode Club (https://the.bytecode.club)
+-- Forum: Lobby (https://the.bytecode.club/forumdisplay.php?fid=1)
+--- Forum: Programming (https://the.bytecode.club/forumdisplay.php?fid=86)
+--- Thread: help (/showthread.php?tid=2122)



help - jason56 - 06-30-2016

hello i try to decompile this exe to get the source files but cannot seem to get and src out of it,  i use  exeinfo pe and it says the warcarto exe is made with dev c++,but not having no luck geting source from it with decompilers. i just wanted the source so i can update the maps inside are outdated  heres link to the catographer files https://mega.nz/#!7gQWFQqI!cLa4r3F4JhwJkYzq4Fy78PY-e0ymbz02a950HsS-FSo any help will be appreciated to download the zip file you need google chrome browser


RE: help - mik01 - 07-27-2016

it is not possible to get the original c++ code from compiled executable because c++ gets compiled to native machine code. imho the best way to reverse native executables is by disassembling. Check OllyDbg (http://ollydbg.de/) or IDA / IDA Free (https://www.hex-rays.com/products/ida/). There are c++ decompilers but i've never used them.

If the stuff you want to update is hold as a resource try Resource Hacker (http://www.angusj.com/resourcehacker/).