assembly conversion - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Skype & Technology (/forumdisplay.php?fid=9) +---- Forum: Tech Talk (/forumdisplay.php?fid=17) +----- Thread: assembly conversion (/showthread.php?tid=93527) assembly conversion by MX-G on 01-13-2010 at 09:43 PM
Does anyone knows how to convert an assembly code to C or C++ or any other language?? RE: assembly conversion by andrey on 01-13-2010 at 10:46 PM
Hex-Rays Decompiler would be the only program that comes to my mind atm.. Although I doubt you know what you're doing, since hex code isn't assembly code. RE: assembly conversion by MX-G on 01-13-2010 at 11:33 PM thanks RE: assembly conversion by Adeptus on 01-15-2010 at 04:35 AM
You are best off getting somebody who knows assembly for the respective kind of platform interpret it for you -- if it is a small piece of code. RE: assembly conversion by tony on 01-15-2010 at 04:50 AM
Do your own homework you lazy bum RE: assembly conversion by MX-G on 01-15-2010 at 04:18 PM
it's assembly code xD, it's to long! RE: assembly conversion by andrey on 01-15-2010 at 04:36 PM once C code (or code in any other higher level language) is compiled, information about the original code is lost and you can't easily reconstruct the original code. at least that's for languages like C, chances of getting useful output are higher when decompiling java class files or similar. so the nearest you'll probably get when decompiling an exe file is a higher level pseudo code which you'll have to figure out yourself. plus, if you're trying to decompile a regular (proprietary) binary, you'd probably have to get around obfuscation and encryption first. RE: assembly conversion by MX-G on 01-15-2010 at 08:36 PM thanks for the information , I know that after I compile an app the original high level code is gone, but it's possible to make something similar to a high level code, that couldn't be impossible I think RE: assembly conversion by Adeptus on 01-16-2010 at 03:10 AM
It is relatively easy for someone who understands assembly to look at the disassembler output and figure out what a code portion of special interest does, such as an encryption algorithm or controlling a proprietary piece of hardware. They can then rewrite it in C or whatever. The hardest part usually is finding the code you are looking for. RE: assembly conversion by MX-G on 01-16-2010 at 04:54 PM
Ok, you solve me many questions and gave me others hehehe, I know we can't talk about modifying apps in this forum, so I'll search more information about this topic in other forums |