vote up 3 vote down star

Possible Duplicates:
What’s the best way to protect a Windows application from piracy?
Protect .NET code from reverse engineering?

Hello everyone. My application is a simple windows form application using C#.NET 2.0. I am using VS 2005. The application is portable and distributed through USB Pen (Flash) drive. How can I prevent the application form being copied. One option could be to register the user before the first use. Is there a guide or examples of how to do it? What type of code will run in the server?

I know my question is very common and I have seen the replies to the question How to prevent people from copying my .NET software in stackoverflow. The answer by MusiGenesis is useful but the problem is I can not use the registry as the USB flash drive can be used on any system that has .NET framework 2.0.

Thanks

flag

Duplicate of a lot of questions. This question adds nothing new. – George Stocker Oct 16 at 21:35
stackoverflow.com/questions/60497/… – George Stocker Oct 16 at 21:36
3  
This question does seem a little different given that the user is looking for a reasonable solution for a small software system. As discussed, there options very given the type of system being protected as well as the type of customers using it. – TheLameDuck Oct 16 at 21:43
Granted. I think he should consider what he might lose as opposed to what he might gain from adding piracy-protection to a -small- app. Options are definately available for him (see posts below) – CodeMonkey Oct 16 at 21:46
Thanks you (The Lame Duck). You understand my point perfectly and explained it much better. I know I can't stop privacy, but at least I can keep track of how many pirate copies are being used. Which ofcourse help me decide on future time and money investment. Regards – kobra Oct 16 at 21:48
show 1 more comment

closed as exact duplicate by George Stocker, Henk Holterman, marc_s, dmckee, SilentGhost Oct 17 at 22:52

6 Answers

vote up 2 vote down check

You can use the PnpDeviceID of the USB flash drive. This ID is unique into all pen drives (at least two or three years old pen drives have it) and it is hardware coded. You can obtain it with the WMI classes. Once you take it your app will not run if its not the right one.

If you are worried about decompilation of your code you can locate this data into a server in Internet and supply it to your app via web service, in this way it cannot be located into your code by decompiling it.

For purpose of creating the WMI query you can use WMI Code Creator

EDIT: Create a serial code from the PNPDeviceID, don't use it directly. You can pass this value to a SHA256 hashing function or any other method that creates a unique ID. Use Dotnet ofuscator to make your app a little more harder to decompile.

It's not so difficult. First use the WMI Code Creator to create the query to obtain the PNPDeviceID from the WMI class Win32_Diskdrive where the property MediaType = "USB". You can download it from the upper link.

Once you have the PNPdeviceID string create a SHA1 or SHA256 hash (the hash type depends of how long you want the result in bytes).

Then create a simple math algorithm to take specific parts of the hash to create your unique ID. All this in your application. Add to it hyphens or other characters at specific locations. As example: @3FDE-FED4-FFA1-.... and so on.

The second part is to create a web service that opens a database to check if a given ID is registered or valid. You have to expose a web service (use a VS2005 or VS2008 template) and create a function to return only true or false from a received ID as parameter.

Register the web service in your aplication and use it. Your app needs too calculate the id, then send it to the web service an run only if this last returns true.

It's simpler than it looks.

link|flag
Problem with this plan is that it's incredibly simple to disassemble the IL, remove the bits that check for this ID, and then rebuild it. It's a nice idea, but it's at best a minor roadblock. – Robert P Oct 16 at 21:37
1  
As you can use .NET reflector you can use .NET reactor too to prevent the use of the first one. You can use .NET Dot ofuscator too. – backslash17 Oct 16 at 21:56
Thank @backslash17. I think your answers matches much of my requirement. Can you please explain a bit more in detail or provide a link to explain. Regards – kobra Oct 16 at 21:56
.NET Reactor just adds an (small) extra step in the cracking process. Traditional methods of decompiling code still exist, and any cracker worth their salt will still be able to find the offending check and remove it. – Robert P Oct 16 at 23:04
2  
Here's an entire answer talking about this: stackoverflow.com/questions/506282/… – Robert P Oct 16 at 23:07
vote up 1 vote down

Since your solution already includes hardware (the USB pen), it might be possible to also use the pen as a dongle. The dongle allows for hardware-enforced security; It usually comes in the form of a USB flash drive.

I don't know if there are out-of-the-box dongles for cases where the application also resides on the dongle. You may want to look around Aladdin's website for that.

Of course, a dongle-based solution is overkill for most cases; However, it offers a great copy protection since hardware duplication or emulation is often required to "break" it.

If copy protection is really critical for you specific case, you might want to consider dongles.

link|flag
I thought dongles were pretty cool until I had a pleasure of installing Aladdin drivers on a laptop running Vista. BSOD, BSOD everywhere. – MiseryIndex Oct 16 at 22:32
vote up 1 vote down

There's two things you need to consider here.

First of all, when a user copies your files, your software might not be running. In other words, there's no way you can detect, or prevent, that the user is in fact copying your program in any way at all.

Now, copying your software isn't all that useful until you consider the second issue, detecting that multiple copies are executing.

Let me give you an example. I go to your website, I buy your software, you give me a license key, let's assume it's of the simple serial number kind, and I install the software on my own machine, there and then.

Then I make a complete copy of the files installed, and also of the registry keys involved, and any files you put in my user account.

Unless you, in some way, encoded or stored the name of the machine I originally installed the software on, as part of the installation process, it will be very difficult for your program to detect that I can now execute it on a second machine, different from the one I originally installed it on.

So, let's back up a step. What do you want to do? What do you want to prevent? These are the kind of questions you need to answer in order to pick a protection scheme that fits your software.

link|flag
Thanks. You are right. Someone can copy the whole USB flash drive and use it. But by registration process at least I am aware of the number of legitimate users. The solution by backslash17 above is the sort of of protection I am looking for along with the registration of the user. Regards. – kobra Oct 16 at 22:02
vote up 4 vote down

If you really want to do something here, you're going to be way ahead of the game by using somebody else's commercial license management software; don't try to "roll your own".

link|flag
vote up 8 vote down

I've got to disagree with @CodeMonkey.

Although I back the sentiment 100%, there are some steps you can take to fight piracy.

Two Examples

Adobe has an enormous budget and invests heavily in anti-piracy, yet their software is widely available for free on the internet.

Alternatively, I doubt the SO website has spent a dime on anti-piracy, they even give away their QA database, yet they haven't faced a real competitor yet.

There will be two dimension to consider before you decide how to prevent piracy. First, does your software provide 100% of its value in itself (like photoshop) or does it provide value when combined with an online service (like SO, where the QA database is worthless if you want to ask a NEW question).

Online Services

If you can tie in an online service that only you can provide (important updates, stock ticker, training, MMO gaming server, etc) then you are in luck. Protecting your program is as easy as making sure every user who wants the service has a valid account.

Microsoft's "Express" Method

If, on the other had, your app's value is 100% self-contained. Then you face a tougher challenge. If it will be as popular as photoshop, then it will definitely be cracked. I suggest going the Microsoft route and just give away a nice "Express" edition for student and penniless moochers. Then aggressively audit your corporate customers and make up the money from companies which can easily pay.

Traditional DRM Method

If you don't expect to be as large as photoshop, then by all means, use some anti-piracy tool like: http://www.licensingdotnet.com/. If there aren't many users, then you may not attract enough hackers to crack your licensing. As @CodeMonkey said, this can piss off your users, so be very liberal with your licensing and considering if an honor code might be the best way. Sometimes, just politely asking users not to share their copy is all it takes.

link|flag
2  
Fighting piracy is like beating up your pillow expecting to see blood. You won't ever achieve what you set out to do. People will always cheat, lie and steal to "get ahead". You DO mention something like apparent "needs" of the application, like, does it work stand-alone, or does it not? I think that's very insightful! That in it's right is piracy-protection without trying.. Anti-piracy is well-understood. As consumers we type in the keys again and again knowing why it's there. But for the paying users... it pisses them off. And really.. who are you annoying? – CodeMonkey Oct 16 at 21:34
Thanks. I agree with your views. I know as suggested by CodeMonkey that adding value to the application and keeping the customers happy is more important, but another advantage of having a simple registration process is to keep track of number of users. I don't want my application to use internet a lot. Its basically a stand-alone WinForm application so the scenario of SO is not applicable and I am no-where near to Photoshop by any stretch of imagination. Regards – kobra Oct 16 at 21:36
I can't diagree with TLD.. There are instances where the business REQUIRES that stuff is protected somehow... be in this case we are talking about a guy and a USB-pin (no offense to the poster..). We can get off on a tagent here and talk piracy and schemes all night. But, in this case, he will be hurting his potential users. – CodeMonkey Oct 16 at 21:40
It's Friday, I didn't know it's Friday 13th - obvious is because this question is up again: SenseDomain-Off / FlameWars-On @CodeMonkey(REQUIRES that stuff is protected)Excellent! And, duh, just how do we do that? 1. Don't design your security in a Late Friday discussion on the WeirdWoolyWeb where everyone can see your logic. 2. Remain Invisible, and Indivisible. 3. Have licensed users run a cpuid and hash that, at program init exit silently if that does not hash == you have to pass the customer an init disk and write the bytes into the compile. 4. Have no new or licenseable material. – Nicholas Jordan Oct 16 at 22:35
vote up 23 vote down

I'm sorry to say this in a simple and old fashion way, but; Forget it. You can add all the security and registration-keys you want, it can ALWAYS be copied somehow.

Focus on delivering a product that works, and encourage people to not copy, and buy, rather than annoying your HAPPY customers by doing silly things to protect yourself.

link|flag
9  
+1 -- the time & money are better spent on improving the app itself... – Austin Salonen Oct 16 at 21:22
3  
This is a flawed assumption that protection schemes have to get in the customer's way. How about MMOs which charge for monthly access to their servers? That's a protection scheme so seamlessly built into the product that most users don't think about it. – TheLameDuck Oct 16 at 21:29
I don't get it TLD? Are you saying that paying for a service to have access is piracy-protection? – CodeMonkey Oct 16 at 21:35
2  
I agree with you that DRM is obnoxious and can encourage piracy. I'm saying that there are "clever" alternatives like pay for service. Why do you think MS Office is moving online? We may actually be agreeing with different words. All I'm saying is Anti-Piracy doesn't always = DRM – TheLameDuck Oct 16 at 21:39
@The Lame Duck : I think we are agreeing, so I am suggesting that you are talking alot bigger apps, than USB-pin apps ;) – CodeMonkey Oct 16 at 21:42

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