vote up 2 vote down star
1

How do I best obfuscate my C#.net app Product Key verification code?

Is it enough to place it in a "INTERNAL SEALED CLASS CLASSNAME { };" or do I need to do more?

Thanks!

flag

3 Answers

vote up 6 vote down check

Access modifiers like internal and sealed don't have anything to do with obfuscation or code security, they just tell other classes how to interact (or not interact) with them.

At the end of the day, there's nothing you can do to prevent piracy. Anything created by one human can be broken by another. There are loads of questions on SO that deal with product keys, keeping software secure, etc. which you can find if you use the search mechanism in the upper-right. All the answers cover a few basic ideas that anyone with a little sense will tell you:

  1. Only put enough effort into your anti-piracy measures to make cracking the software a little less convenient than breaking out the credit card. If that's really hard to do, you are charging way too much for your customer base.
  2. If you focus on building positive relationships with your customers instead of assuming they are criminals, they will be more willing to give you money.
  3. Most customers - individuals and especially companies - don't have any interest in cracking open your assemblies and trying to figure out how to get away with not paying you. For individuals, they wouldn't pay for it anyway so you're not losing a sale; and companies wouldn't risk mountains of cash in legal problems for the cost of some software licenses.

Research public/private and elliptic key cryptography and you'll find ways to secure your key algorithm, but it will only prevent cracking the key, not bypassing it.

link|flag
What Rex M says is true. Use a public/private key encryption scheme to generate your keys. Obfuscate your code with something like Dotfuscator. But ultimately, people can still crack it if they want to by modifying some conditional jumps in the executable. – Simucal Feb 2 at 1:47
vote up 1 vote down

Rex is correct, internal sealed class won't hide anything. Use a one-way encryption hash (e.g. MD5CryptoServiceProvider) to protect passwords and keys.

link|flag
vote up 1 vote down

Use Microsoft Software Licensing and Protection service.

Software Licensing and Protection Services can help you protect, package, license, sell and control your software.

To protect your IP you can select certain functionality for one-way transformation, and this transformed code runs within a secure virtual machine (SVM), with each vendor receiving a unique SVM

link|flag
According to the SLP website, they are not taking any more orders. – Rex M Feb 2 at 4:51

Your Answer

Get an OpenID
or

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