How do you protect your software from illegal distribution? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T10:04:44Z http://stackoverflow.com/feeds/question/109997 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution 35 How do you protect your software from illegal distribution? petr k. 2008-09-21T01:58:00Z 2009-11-07T06:24:50Z <p>I am curious about how do you protect your software against cracking, hacking etc.</p> <p>Do you employ some kind of serial number check? Hardware keys? </p> <p>Do you use any third-party solutions?</p> <p>How do you go about solving licensing issues? (e.g. managing floating licenses)</p> <p>EDIT: I'm not talking any open source, but strictly commercial software distribution...</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/109999#109999 2 Answer by Jeff for How do you protect your software from illegal distribution? Jeff 2008-09-21T01:59:23Z 2008-09-21T01:59:23Z <p>Online-only games like World of Warcraft (WoW) have it made, everyone has to connect to the server every time and thus accounts can be constantly verified. No other method works for beans.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110004#110004 6 Answer by Ian P for How do you protect your software from illegal distribution? Ian P 2008-09-21T02:02:39Z 2008-09-21T02:02:39Z <p>There are several methods, such as using the processor ID to generate an "activation key."</p> <p>The bottom line is that if someone wants it bad enough -- they'll reverse engineer any protection you have.</p> <p>The most failsafe methods are to use online verification at runtime or a hardware hasp.</p> <p>Good luck!</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110006#110006 0 Answer by pdavis for How do you protect your software from illegal distribution? pdavis 2008-09-21T02:05:22Z 2008-09-22T15:42:48Z <p>Make your product Shareware and take donations. This has worked for many companies in the past and with the ease of distribution on the Internet is even more effective. Instead of trying to fight the consumer from distributing your product, you are encouraging them to distribute and use your product in the hope of gaining significant market share. With a wide enough distribution the percentage of people willing to pay for your product can easily offset your costs.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110009#110009 0 Answer by pdavis for How do you protect your software from illegal distribution? pdavis 2008-09-21T02:09:41Z 2008-09-21T02:09:41Z <p>Make part of your product an online component which requires connection and authentication. Here are some examples:</p> <ul> <li>Online Games</li> <li>Virus Protection</li> <li>Spam Protection</li> <li>Laptop tracking software</li> </ul> <p>This paradigm only goes so far though and can turn some consumers off.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110012#110012 10 Answer by Cody Brocious for How do you protect your software from illegal distribution? Cody Brocious 2008-09-21T02:11:51Z 2008-09-21T02:43:23Z <p>Software protections aren't worth the money -- if your software is in demand it <b>will</b> be defeated, no matter what.</p> <p>That said, hardware protections can work well. An example way it can work well is this: Find a (fairly) simple but necessary component of your software and implement it in Verilog/VHDL. Generate a public-private keypair and make a webservice that takes a challenge string and encrypts it with the private key. Then make a USB dongle that contains your public key and generates random challenge strings. Your software should ask the USB dongle for a challenge string and send it up to the server for encryption. The software then sends it to the dongle. The dongle validates the encrypted challenge string with the public key and goes into an 'enabled' mode. Your software then calls into the dongle any time it needs to do the operation you wrote in HDL. This way anyone wanting to pirate your software has to figure out what the operation is and reimplement it -- much harder than just defeating a pure software protection.</p> <p>Edit: Just realized some of the verification stuff is backwards from what it should be, but I'm pretty sure the idea comes across.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110023#110023 0 Answer by Mike for How do you protect your software from illegal distribution? Mike 2008-09-21T02:15:46Z 2008-09-21T02:15:46Z <p>If your interested in protecting software that you intend to sell to consumers I would recommend any of a variety of license key generating libraries (Google search on license key generation). Usually the user has to give you some sort of seed like their email address or name and they get back the registration code.</p> <p>Several companies will either host and distribute your software or provide a complete installation/purchase application that you can integrate with and do this automatically probably at no additional cost to you.</p> <p>I have sold software to consumers and I find this the right balance of cost/ease of use/protection.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110033#110033 2 Answer by Phil Wright for How do you protect your software from illegal distribution? Phil Wright 2008-09-21T02:22:05Z 2008-09-21T02:22:05Z <p>Given a little time your software will always be cracked. You can search for cracked versions of any well known piece of software in order to confirm this. But it is still well worth adding some form of protection to your software. </p> <p>Remember that dishonest people will never pay for your software and always find/use a cracked version. Very honest people will always stick to the rules even without a licensing scheme just because that is the kind of person they are. But the majority of people are between these two extremes. </p> <p>Adding some simple protection scheme is a good way of making that bulk of people in the middle act in an honest way. It is a way to nudge them into remembering that the software is not free and they should be paying for the appropriate number of licenses. Many people do actually respond to this. Businesses are especially good at sticking to the rules because the manager is not spending his/her own money. Consumers are less likely to stick to the rules because it is their own money.</p> <p>But recent experience with releases such as <em>Spore</em> from <em>Electronic Arts</em> shows that you can go to far in licensing. If you make even legit people feel like criminals because they are constantly being validated then they start to rebel. So add some simple licensing to remind people if they are being dishonest but anything more than that is unlikely to boost sales.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110035#110035 14 Answer by rpetrich for How do you protect your software from illegal distribution? rpetrich 2008-09-21T02:22:25Z 2008-09-21T02:22:25Z <p>Whatever route you go, charge a fair price, make it easy to activate, give free minor updates and never deactivate their software. If you treat your users with respect they'll reward you for it. Still, no matter what you do some people are going to end up pirating it.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110044#110044 30 Answer by Adam Davis for How do you protect your software from illegal distribution? Adam Davis 2008-09-21T02:24:32Z 2008-09-21T02:24:32Z <p>There are many, many, many protections available. The key is:</p> <ul> <li>Assessing your target audience, and what they're willing to put up with</li> <li>Understanding your audience's desire to play with no pay</li> <li>Assessing the amount someone is willing to put forth to break your protection</li> <li>Applying just enough protection to prevent most people from avoiding payment, while not annoying those that use your software.</li> </ul> <p>Nothing is unbreakable, so it's more important to gauge these things and pick a good protection than to simply slap on the best (worst) protection you are able to afford.</p> <ul> <li>Simple registration codes (verified online once).</li> <li>Simple registration with revokable keys, verified online frequently.</li> <li>Encrypted key holds portion of program algorithm (can't just skip over the check - it has to be run for the program to work)</li> <li>Hardware key (public/private key cryptography)</li> <li>Hardware key (includes portion of program algorithm that runs on the key)</li> <li>Web service runs critical code (hackers never get to see it)</li> </ul> <p>And variations of the above.</p> <p>-Adam</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110049#110049 1 Answer by coppro for How do you protect your software from illegal distribution? coppro 2008-09-21T02:26:27Z 2008-09-21T02:26:27Z <p>As has been pointed out, software protection is never guaranteed to be foolproof. What you intend to use depends largely on your target audience. A game, for instance, is not something you are going to be able to protect forever. A server software, on the other hand, is something far less likely to be distributed on the Internet, for a number of reasons (product penetration and liability come to mind; a large corporation does not want to be held liable for bootleg software, and the pirates only bother with things in large-enough demand). In all honesty, for a high-profile game, the best solution is probably to seed the torrent yourself (clandestinely!) and modify it in some way (for instance, so that after two weeks of play it pops up with messages telling you to please consider supporting the developers by purchasing a legitimate copy).</p> <p>If you put protection in place, bear two things in mind. First, a lower price will supplement any copy protection by making people more inclined to pay the purchase price. Secondly, the protection must not get in the way of users - see Spore for a recent example.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110056#110056 11 Answer by Grant for How do you protect your software from illegal distribution? Grant 2008-09-21T02:30:09Z 2008-09-21T02:30:09Z <p>Make it easier to buy than to steal. If you put mounds of copy protection then it just makes the value of owning the real deal pretty low. </p> <p>Use a simple activation key and <em>assure</em> customers that they can <em>always</em> get an activation key or re download the software if they ever loose they'res. </p> <p>Any copy protection(aside from online-only components like multiplayer games and finance software that connects to your bank, etc.) you can just assume will be defeated. You want downloading your software illegally, at the very least, to be slightly harder than buying it.</p> <p>I have a PC games that I've never opened, because there is so much copy protection junk on it that it's actually easier to download the fake version.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110063#110063 3 Answer by titanae for How do you protect your software from illegal distribution? titanae 2008-09-21T02:32:04Z 2008-11-29T06:59:09Z <p>Generally there are two systems that often get confused -</p> <ul> <li>Licensing or activation tracking, legal legitimate usage</li> <li>Security preventing illegal usage</li> </ul> <p>For licensing use a commercial package, <a href="http://en.wikipedia.org/wiki/FLEXlm" rel="nofollow">FlexLM</a> many companies invest huge sums of money into licensing think they also get security, this is a common mistake key generators for these commercial packages are prolifically abundant.</p> <p>I would only recommend licensing if your selling to corporations who will legitimately pay based on usage, otherwise its probably more effort than its worth.</p> <p>Remember that as your products become successful, all and every licensing and security measure will be breached eventually. So decide now if it is really worth the effort.</p> <p>We implemented a clean room clone of FlexLM a number of years ago, we also had to enhance our applications against binary attacks, its long process, you have to revisit it every release. It also really depends on which global markets you sell too, or where your major customer base is as to what you need to do.</p> <p>Check out another of my answers on <a href="http://stackoverflow.com/questions/106347/secure-dll-with-license-file#107503">securing a DLL</a>.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110196#110196 7 Answer by Nathan Strong for How do you protect your software from illegal distribution? Nathan Strong 2008-09-21T03:48:36Z 2008-09-21T03:48:36Z <p>Digital "Rights" Management is the single biggest software snake-oil product in the industry. To borrow a page from classic cryptography, the typical scenario is that Alice wants to get a message to Bob without Charlie being able to read it. DRM doesn't work because in its application, Bob and Charlie are the same person!</p> <p>You would be better off asking the inverse question, which is "How do I get people to buy my software instead of stealing it?" And that is a very broad question. But it generally starts by doing research. You figure out who buys the type of software you wish to sell, and then produce software that appeals to those people.</p> <p>The additional prong to this is to limit updates/add-ons to legit copies only. This can be something as simple as an order code received during the purchase transaction.</p> <p>Check out Stardock software, makers of WindowBlinds and games such as Sins of a Solar Empire, the latter has no DRM and turned a sizable profit off a $2M budget.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110201#110201 16 Answer by Asmor for How do you protect your software from illegal distribution? Asmor 2008-09-21T03:52:33Z 2008-09-21T03:52:33Z <p>Don't.</p> <p>Pirates will pirate. No matter what solution you come up with, it can and will be cracked.</p> <p>On the other hand, your actual, paying customers are the ones who are being inconvenienced by the crap.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110219#110219 2 Answer by Fernando Barrocal for How do you protect your software from illegal distribution? Fernando Barrocal 2008-09-21T04:04:33Z 2008-09-21T04:04:33Z <p>Is not exactly the answer you are looking for, but is a great resource on piracy from a game developer who actively asked their <em>pirates</em> about why they do that. And is related to the first part of the answer you choose.</p> <p>Readi it at <a href="http://www.positech.co.uk/talkingtopirates.html" rel="nofollow">Talking to Pirates</a>.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/111333#111333 0 Answer by poppavein for How do you protect your software from illegal distribution? poppavein 2008-09-21T16:16:28Z 2008-09-21T16:16:28Z <p>I agree with a lot of posters that no software-based copy protection scheme will deter against a skilled software pirate. For commercial .NET based software Microsoft Software License Protection (SLP) is a very reasonably priced solution. It supports time-limited and floating licenses. Their pricing starts at $10/month + $5 per activation and the protection components seem to work as advertised. It's a fairly new offering, though, so buyer beware.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/111367#111367 7 Answer by Jason Short for How do you protect your software from illegal distribution? Jason Short 2008-09-21T16:35:14Z 2008-09-21T16:35:14Z <p>The Microsoft Software License scheme is crazy expensive for a small business. The server cost is around $12,000 if you want to set it up yourself. I don't recommend it for the feint of heart.</p> <p>We actually just implemented <a href="http://www.eziriz.com/intellilock.htm" rel="nofollow">Intellilock</a> in our product. It lets you have all of the decisions for how strict you want your license to be, and it is very cost effective as well. In addition it does obfuscation, compiler prevention, etc.</p> <p>Another good solution I have seen small/med businesses use is <a href="http://www.softwarekey.com/swk_products/solo/server/" rel="nofollow">SoloServer</a>. It is much more of an ecommerce and license control system. It is very configurable to the point of maybe a little too complex. But it does a very good job from what I have heard.</p> <p>I have also used the <a href="http://www.desaware.com/support/faq/licensing/index.aspx" rel="nofollow">Desaware license</a> system for dot net in the past. It is a pretty lightweight system compared to the two above. It is a very good license control system in terms of cryptographically sound. But it is a very low level API in which you have to implement almost everything your app will actually use.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/111427#111427 2 Answer by Dustin Getz for How do you protect your software from illegal distribution? Dustin Getz 2008-09-21T17:08:29Z 2008-09-21T17:08:29Z <p>DRM this, DRM that - publishers who force DRM on their projects are doing it because it's profitable. Their economists are concluding this on data which none of us will ever see. The "DRM is evil" trolls are going a little too far.</p> <p>For a low-visibility product, a simple internet activation is going to stop casual copying. Any other copying is likely negligible to your bottom line.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/112356#112356 0 Answer by davenpcj for How do you protect your software from illegal distribution? davenpcj 2008-09-21T22:26:40Z 2008-09-21T22:26:40Z <p>The simple, and best solution, is just to charge them up front. Set a price that works for you and them.</p> <p>Asking paying customers to prove that they are paying customers after they've already paid just pisses them off. Implementing the code to make your software not run wastes your time and money, and introduces bugs and annoyances for legitimate customers. You'd be better off spending that time making a better product.</p> <p>Lots of games/etc will "protect" the first version, then drop the protections in the first patch due to compatibility problems with real customers. It's not an unreasonable strategy if you insist on a modicum of protection.</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/112374#112374 0 Answer by wnoise for How do you protect your software from illegal distribution? wnoise 2008-09-21T22:32:16Z 2008-09-21T22:32:16Z <p>Almost all copy-protection is both ineffective, and a usability nightmare. Some of it, such as putting root-kits on your customers' machines becomes downright unethical</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/115900#115900 0 Answer by levhita for How do you protect your software from illegal distribution? levhita 2008-09-22T16:26:38Z 2009-02-05T08:52:41Z <p>I suggest simple activation key (even if you know that it can be broken), you really don't want your software to get in your users way, or they'll simply push it away.</p> <p>Make sure that they can re-download the software, I suggest a web page where they can logging and download your software only after they paid (and yes they should be able to download as many times they wish it, directly, without a single question about why on your part).</p> <p>Thrust your paid users above all, there is nothing more irritating that being accused from being a criminal when you are a legit users (DVD's anti-piracy warnings anyone).</p> <p>You can add a service that checks the key against a server when online, and in case of two different IPs are using the same key, popup a suggestion to buy another license.</p> <p>But please don't inactivate it, it might be a happy user showing your software to a friend!!!!</p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/1692204#1692204 0 Answer by Duncan Bayne for How do you protect your software from illegal distribution? Duncan Bayne 2009-11-07T06:24:50Z 2009-11-07T06:24:50Z <p>Illegal distribution is practically impossible to prevent; just ask the RIAA. Digital content can just be copied; analog content can be digitised, and then copied.</p> <p>You should focus your efforts on preventing unauthorised <em>execution</em>. It's never possible to completely prevent the execution of code on someone else's machine, but you can take certain steps to raise the bar sufficiently high that it becomes easier to purchase your software than to pirate it.</p> <p>Take a look at the article <a href="http://www.offbyzero.com/resources/software%5Fprotection%5Flicensing" rel="nofollow">Developing for Software Protection and Licensing</a> that explains how best to go about developing your application with licensing in mind.</p> <p>Obligatory disclaimer &amp; plug: the company I co-founded produces the <a href="https://cobalt.offbyzero.com/" rel="nofollow">OffByZero Cobalt software licensing solution for .NET</a>.</p>