How to prevent my .NET DLL to be decompiled?
By design .NET embeds rich Meta data inside the executable code using
MSIL.Any one can easily decompile your DLL back using tools like ILDASM
( owned by Microsoft) or Reflector for .NET which is a third party.
Secondly there are many third party tools which make this decompiling
process a click away. So any one can easily look in to your assemblies
and reverse engineer them back in to actual source code and understand
some real good logic which can make easy to crack your application.
The process by which you can stop this reverse engineering is using
"obfuscation". It's a technique which will foil the decompilers.
There are many third parties (XenoCode, Demeanor for .NET) which
provide .NET obfuscation solution. Microsoft includes one that is
Dotfuscator Community Edition with Visual Studio.NET.
Full Interview Questions for .NET and SQL Server
http://www.geocities.com/dotnetinterviews/
Help the community to make job search easier mail your questions to
jobatyou...@yahoo.co.in
Looking for a onsite job mail your resumes at
jobatyou...@yahoo.co.in
Write it in VB6
--
Ken Halter - MS-MVP-VB - Please keep all discussions in the groups..
DLL Hell problems? Try ComGuard - http://www.vbsight.com/ComGuard.htm
Freeware 4 color Gradient Frame? http://www.vbsight.com/GradFrameCTL.htm
>
>
>How to prevent my .NET DLL to be decompiled?
>
>By design .NET embeds rich Meta data inside the executable code using
>MSIL.Any one can easily decompile your DLL back using tools like ILDASM
>( owned by Microsoft) or Reflector for .NET which is a third party.
>Secondly there are many third party tools which make this decompiling
>process a click away. So any one can easily look in to your assemblies
>and reverse engineer them back in to actual source code and understand
>some real good logic which can make easy to crack your application.
This is by design enabling the entire developer community to unwittingly work
for microsoft.
---
Stefan Berglund
- Anthony
>Thus the reason why we remain using VB6 (the other reason is the insanely
>large .net framework). If you don't want your work decompiled (like every
>other company selling code for profit), stick with VB6, move to C++
>(unmanaged), or I suppose Delphi would also be a good choice in this regard,
>although I am not familiar with it (I hear it is nice though).
Delphi is very nice
- while I am not that fond of 'Non BASIC' syntax, one can do amazing
things with it very easily
- and when you accept a syntax that is infinatelely less obscure than
C or CPP, then it is pretty readable.
The word is that Delphi is in play
- if they came out with a version of VB that gave :-
Message WM_NCMBUTTONDBLCLK( Msg )
...
End Message
I suspect that people would get very interested.