Click here to Skip to main content
15,899,126 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey, we have extracted templetes from .exe and than applied various obfuscation techniques ,now how to do changes back to .exe ,please help me out.
Posted

1 solution

The question is not clear, but what ever it means… this question makes no sense.

If you obfuscate the software, you can just repeat the build (you should have build options to perform build with or without obfuscation).

If you're talking about 3rd-party software, you cannot modify the executable, not even because of obfuscation, but because of signing of the assemblies: should you do any change to binary, it would not work. This is because you should always sign all your assemblies, at least those you deploy.

Same conclusion goes if you don't want to re-build your software by some reason. If you want to modify anything (for example, to make a patch) in the code, anything at all, you should rebuild it. If you do something else (because you do not sign your assemblies) — you're in danger.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900