Is this possible? Does the .NET framework depend on the meta data in the bytecode? I'd like to have an application i write not work in reflector or a similar .NET decompiler.
Any help would be super :D
|
Is this possible? Does the .NET framework depend on the meta data in the bytecode? I'd like to have an application i write not work in reflector or a similar .NET decompiler. Any help would be super :D
| ||||
|
feedback
|
|
If you remove the metadata the framework won't be able to load your code, or figure out which other assemblies it references, or anything like that, so no, that's not a good idea. Obfuscators will make it a lot harder for an 'attacker' to decompile your code, but at the end of the day if someone is motivated and smart there's not a lot you can do to stop them. Don't worry about it. The source code to apache, linux, and everything else is freely available on the net, but it's not providing much competitive advantage to microsoft is it :-) | |||
|
feedback
|
|
I think you are referring to the Assembly Manifest:
One of the most important features of .Net assemblies is that they are self-describing components and this is provided by the manifest. So removing them will somehow defeat its purpose. | ||||
|
feedback
|
|
This looks like the same question as: http://stackoverflow.com/questions/29677/how-do-i-make-the-manifest-of-a-net-assembly-private See my answer there: http://stackoverflow.com/questions/29677/how-do-i-make-the-manifest-of-a-net-assembly-private#29692 "I think what you're talking about is "obfuscation". There are lots of articles about it on the net: http://en.wikipedia.org/wiki/Obfuscation The "standard" tool for obfuscation on .NET is by Preemptive Solutions: http://www.preemptive.com/obfuscator.html They have a community edition that ships with Visual Studio which you can use. You mentioned ILDasm, have you looked at the .NET Reflector? http://aisto.com/roeder/dotnet/ It gives you an even better idea as to what people can see if you release a manifest!" | |||
|
feedback
|
|
I don't think you can remove the meta data, but you can obfuscate your code if you're looking to protect your IP. | |||
|
feedback
|
|
The Dotfuscator will stop your code from being able to be decompiled http://www.preemptive.com/dotfuscator.html Edit: I should have mentioned, that's the professional version, the free community version ships with visual studio | ||||
|
feedback
|
|
Wouldn't solutions like VMware's ThinApp (Formerly Thinstall) help a bit with protecting your code also? It comes at an extremely high price though.. | |||
|
feedback
|