vote up 5 vote down star
3

Hi,

I am very curious as to how people write their own obfuscator.

How hard would it be to simply do the following:

  1. rename all public methods with GUID type names.

Where would I start? How would I go about reading the .net dll assemby, pulling the public methods out and renaming them?

flag

22% accept rate

4 Answers

vote up 0 vote down

Rather than reading the dll you can parse the source files, rename whatever you want and then compile...

MS have added supprt for this in VS, so you don't need to write your own.

There are also third party tools such as Skater - http://www.rustemsoft.com/Skater.asp

link|flag
vote up 3 vote down

You can check those two projects that are using Cecil to write an open-source obfuscator:

link|flag
vote up 0 vote down

If you're starting with source, it's pretty simple to do text replacements and then run the code through a compiler. If you are starting with a compiled assembly, then you need to use the stuff in the System.Reflection namespace to load the assembly and System.CodeDom to generate compilable code units.

link|flag
but how would you write a new version of the assembly after doing reflection on the original assembly. – Blankman Dec 3 '08 at 14:27
Using CodeDom - it can write code and then compile. – ctacke Dec 5 '08 at 18:04
vote up 2 vote down

Jason Haley has some great links...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.