vote up 9 vote down star
11

I'm currently involved in developing a product (developed in C#) that'll be available for downloading and installing for free but in a very limited version. To get access to all the features the user has to pay a license fee and receive a key. That key will then be entered into the application to "unlock" the full version.

As using a license key like that is kind of usual I'm wondering how that's usually solved? How can I generate the key and how can it be validated by the application? How can I also avoid having a key getting published on the Internet and used by others that haven't payed the license (a key that basically isn't "theirs"). I guess I should also tie the key to the version of application somehow so it'll be possible to charge for new keys in feature versions.

Anything else I should think about in this scenario?

flag

8 Answers

vote up 12 vote down check

Caveat: you can't prevent users from pirating, but only make it easier for honest users to do the right thing.

Assuming you don't want to do a special build for each user, then:

  • Generate yourself a secret key for the product
  • Take the user's name
  • Concatentate the users name and the secret key and hash with (for example) SHA1
  • Unpack the SHA1 hash as an alphanumeric string. This is the individual user's "Product Key"
  • Within the program, do the same hash, and compare with the product key. If equal, OK.

But, I repeat: this won't prevent piracy


I have recently read that this approach is not cryptographically very sound. But this solution is already weak (as the software itself has to include the secret key somewhere), so I don't think this discovery invalidates the solution as far as it goes.

Just thought I really ought to mention this, though; if you're planning to derive something else from this, beware.

link|flag
One thing you can at least achieve is to force crackers to patch your application (i.e. no keygen without patch possible) by using some kind of signature, see my [answer](stackoverflow.com/questions/534215/…) – jn Mar 1 at 15:12
vote up 0 vote down

Besides what has already been stated....

Any use of .NET applications are inherently breakable because of the intermediate language issues. A simple disassembly of the .NET code will open your product to anyone. They can easily bypass your licensing code at that point.

You can't even use hardware values to create a key anymore. Virtual machines now allow someone to create an image of a 'licensed' machine and run it on any platform they choose.

If it's expensive software there are other solutions. If it's not, just make it difficult enough for the casual hacker. And accept the fact that there will be unlicensed copies out there eventually.

If your product is complicated, the inherent support issues will be create some protection for you.

link|flag
vote up 0 vote down

I don't know how elaborate you want to get

but i believe that .net can access the hard drive serial number.

you could have the program send you that and something eles ( like user name and mac address of the nic)

you compute a code based off that and email them back the key.

they will keep them from switching machines after they have the key.

link|flag
And keep them from replacing a dead HD amoung other thigns, leading to frustration. There is no easy answer unfortunately, you need to balance trust with basic licensing mechanicsms. – schooner Mar 1 at 17:55
vote up 5 vote down

When generating the key, don't forget to concatenate the version and build number to the string you calculate the hash on. That way there won't be a single key that unlocks all everything you ever released.

After you find some keys or patches floating in astalavista.box.sk you'll know that you succeeded in making something popular enough that somebody bothered to crack. Rejoice!

link|flag
vote up 0 vote down

Please see my answer here

link|flag
vote up 0 vote down

The only way to do everything you asked for is to require an internet access and verification with a server. The application needs to sign in to the server with the key, and then you need to store the session details, like the IP address. This will prevent the key from being used on several different machines. This is usually not very popular with the users of the application, and unless this is a very expensive and complicated application it's not worth it.

You could just have a license key for the application, and then check client side if the key is good, but it is easy to distribute this key to other users, and with a decompiler new keys can be generated.

link|flag
1  
i worked at a company that used an internet based licensing scheme. every time the program started it went online to validate, i think the company spent more $$ on infrastructure and developers for their licensing solution than they would've lost from piracy (they were a niche product). – Jason Mar 1 at 15:05
2  
furthemore, the technical support costs were huge. many, MANY times a user would legitmately use another computer to try and run the software but the hash was different which led to massive amounts of tech support. in short, what schooner said - don't punish honest users. – Jason Mar 1 at 15:07
vote up 8 vote down

Simple answer - No matter what scheme you use it can be cracked.

Don't punish honest customers with a system meant to prevent hackers, as hackers will crack it regardless.

A simple hased code tied to their email or similar is probably good enough. Hardware based IDs always become an issue when people need to reinstall or update hadrware.

Good thread on the issue: http://discuss.joelonsoftware.com/default.asp?biz.5.82298.34

link|flag
3  
+1. your comment about not punishing users is spot on. – Mitch Wheat Mar 1 at 13:46
1  
agreed, you don't want to upset the users that are actually purchasing your product! (pay heed m$, apple, etc...) – Jason Mar 1 at 15:02
MS, Apple, etc can get away with it as they are big and provide core products that is hard to get elsewhere or have a large market shadow they can use to force people. The small dev can't. – schooner Mar 1 at 15:38
vote up 1 vote down

I've used Crypkey in the past. It's one of many available.

You can only protect software up to a point with any licensing scheme.

link|flag

Your Answer

Get an OpenID
or

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