Is there any known C/C++ compiler generating obfuscated/noised code? Or maybe any patch for open-source C/C++ compiler like GCC?
| show 7 more comments |
|
If you're interested in commercial tools, you might want to look at Morpher (disclaimer: I work on this project). It is essentially a version of |
||||
|
|
You can obfuscate assembler with http://www.pelock.com/products/obfuscator . You can probably compile to assembler (in this case MASM style) and then obfuscate it. Edit: Using many virtual functions/indirection and/or an interpreter (i.e. create your own mini-bytecode for certain steps of your processing) as part of your code results, in my experience, in quite unreverseable code. |
||||
|
|
|
Any compiler thats able to generate a pseudo random-esque numbers(via |
|||
|
|
|
Another approach may be to run the executable inside a protected VM environment. ZProtect -- a product I have have neither used nor endorse, but rather found with an "I'm feeling luck Google" -- claims to provide multiple levels of code protection (VM, encryption, obfuscation, etc). If someone really, really wants to know how you did something, they'll find out -- if it's IP theft, then hire a good lawyer. If it's crypto, then use a proven industry approach. And if it's something DRM, well, that's a fight moving to hardware (and root kits) anyway. |
|||||
|
-O3is really hard to decipher – Anycorn Nov 6 '10 at 3:55