Software protection(copying or reverse engineering etc)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

H
I developed an windows form application(visual c#), i want to protect it against copying(only licensed should be able to use) and i heard a topic like reverse engineering(c# decompilers) etc...Is there any free code available on net
---need hel
----seash
 
Hi there -

you need to do 2 things in order to protect the app -

First - use licenses to secure the controls and the components that you're
distributing - there is a build in mechanism for this - for more info check
out
http://msdn.microsoft.com/library/d...ide/html/cpconLicensingComponentsControls.asp

Second - - obfuscate the assemblies in their final version with some
obfuscator (which will make the IL code unreadable) - check out
http://msdn.microsoft.com/msdnmag/issues/03/11/NetCodeObfuscation/TOC.ASP?frame=true
for more info

Hope that helps :)
Branimir

--
Branimir Giurov
MCSD.NET, MCDBA


seash said:
Hi
I developed an windows form application(visual c#), i want to protect it
against copying(only licensed should be able to use) and i heard a topic
like reverse engineering(c# decompilers) etc...Is there any free code
available on net?
 
You can use CrypKey to protect your .NET application, and use XenoCode
obfuscator to prevent reverse engineering of the MSIl.
If you are interested, you can contact me at CrypKey.

Dave
(e-mail address removed)
 
Back
Top