Still working on my obfuscation program based on modifying ILAsm files. (Ref. Which C# method names should not be obfuscated? )

In looking at the ILAsm code, I get the impression that the .property statements aren't used for anything, at least not for program execution. Am I right in thinking they are only there to provide metadata for Visual Studio? And if so, is it OK to simply remove them when the ILAsm code will only be used to produce production modules that will never be used with Visual Studio?

link|improve this question

2  
So, dumb questions: have you tried removing it to see what effect it has? What research have you done on ILAsm and .property to see what if any purpose it serves? – jcolebrand Apr 23 '11 at 0:18
1  
Maybe I could try to do it and maybe it would seem to be OK and maybe later it would become apparent that it wasn't a good idea after all. So maybe a smart thing to do is to ask people who have more knowledge than me for advice. – RenniePet Apr 23 '11 at 0:40
very true, very true indeed. I was just curious what if any you had already come across. – jcolebrand Apr 23 '11 at 0:49
@drachenstern - My apologies - I misread your comment and thought you were suggesting that my question was dumb. That was stupid of me, I'm very sorry. – RenniePet Apr 23 '11 at 19:42
feedback

1 Answer

up vote 4 down vote accepted

You're correct that the fact something is declared as a property does not affect program execution. As the book Inside Microsoft .NET IL Assembler states in its introduction to the chapter concerning properties, the JIT compiler and execution engine are completely unaware of properties, and no IL instructions make any reference to the property concept.

Note that Visual Studio is not the only consumer of metadata. If you strip .property and reassemble, you'll have the getter and setter methods, but it obviously isn't a property any more. The most obvious example of where this becomes a problem : what if an instance of an object gets handed off to another method which uses reflection to invoke each property on the class? The properties would not be found and run-time behavior has changed as a result of the proposed obfuscation method.

Of course, scenarios such as reflection and serialization are a common gotcha with obfuscation tools, as was discussed in your previous question. So, what I'm saying is, it is problematic, but its problematic in a similar set of scenarios as those discussed in your other thread -- particularly those scenarios where metadata is being consumed or serialization is being performed at run-time.

The latest edition of the book I mentioned above has a different name: Expert .NET 2.0 IL Assembler; it may be a useful reference to you. Compiling for the .NET Common Language Runtime may also be valuable.

link|improve this answer
Thanks for your very informative answer. That must have taken some time to type, and I do appreciate it. – RenniePet Apr 23 '11 at 9:43
feedback

Your Answer

 
or
required, but never shown

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