vote up 2 vote down star
1

Hi,

i want to protect my Java product by using some USB-based authentication and password management solution like you can buy it here: aladin This mean that you have to connect a USB stick with a special software on it, before you can start your application.

I would like to here some experience of users which have used hardware like this.

  • Is this as safe as it sounds?
  • General: How much money you would spend to protect a software which would sell 100 times?

I will obfuscate my Java code and save some user specific OS settings in a crypted file which is lying somewhere on the hard disk. I dont want to constrain the user to do a online registration, because the internet is not necessary for the application.

Thanks

flag

60% accept rate
Java, Java, hmmm...wasn't that supposed to be cross-platform? (hint: hardware "protection" dongles have problems to work correctly on a single platform) – Piskvor Jun 4 at 15:41

6 Answers

vote up 18 vote down check

Please just don't. Sell your software at a price point that represents its worth, with a basic key-scheme if you must to keep honest people honest, and leave it at that. The pirates will always steal it, and a hardware dongle will just cause grief for your honest customers.

Besides, any scheme you build in will just be defeated by reverse engineering; if you make it a pain to use your software, you will motivate otherwise honest people to defeat it, or to search the internet for a crack. Simply make the protection less painful than searching for a crack.

link|flag
Totally agree. 10% of the people always steal their software, and 10% of them always pay, no matter what. The rest of the 80% you can keep honest by making the honest path easier to take than searching for a crack. – Carl Seleborg Jan 15 at 7:49
I also agree. I imagine the type of software also makes a big difference. Games have a piracy rate of about 90%. My guess is that enterprise software would be less than that since the end user is likely not the one shelling out the cash for it (their company is). – Marc Novakowski Jan 15 at 8:03
But what can i do to beware the scenario that some one buys it and then put it on the internet for all the other. The USB stick would prevent this – Markus Lausberg Jan 15 at 8:14
@Markus, You add value to your software via support, printed manuals, etc. You're not going to effectively stop piracy and any mechanism to do so is going to be cracked, making things difficult /only/ for honest users. – Cody Brocious Jan 15 at 8:16
@Markus. IMHO it won't matter; the pirate will just take out whatever code you have that checks the USB stick, plain and simple. Your protection in the pirate redistro case is likely only the courts (copyright protection). If you have a case, it's easy to find a lawyer who'll take it for a cut. – Software Monkey Jan 15 at 8:31
show 3 more comments
vote up 5 vote down

Even though my view on the subject is to not use such piracy protection schemes, I can give you a few pointers since we have used such a solution in the past. In particular we used Aladdin tokens as well.

This solution in terms of security is quite robust, since it is something that you either have it on the system, or you don't. It's not something that you can easily override, provided that your code is secure as well.

On the down side, we came across a problem that made us drop the Hardware token solution. Our application is an intranet web Application, (i.e. a web app running in the local intranet of the customer, not a hosted solution) and quite often the customers wanted to deploy our app on blade servers or even virtual servers, where they did not have USB ports!

So before you choose such a solution, take such factors under consideration.

link|flag
The software in future should using the intranet. This is a good point i should think about. – Markus Lausberg Jan 15 at 8:45
"you either have it on the system, or you don't" And when you have it on your system, it either works, or it doesn't. And when it doesn't, the customer is up Sh*t Creek without a paddle. (Real Story: at one job, it was faster and more effective to use the cracked version of the (legally obtained, paid for and fully licensed) software, because the dongle was a major source of BSODs, runtime errors and other anti-piracy goodness. Great way to punish your paying customers!) – Piskvor Jun 4 at 15:20
vote up 2 vote down

I've used such products and they are a pain. I personally wouldn't spend any money at all on a hardware scheme or a 3rd party protection scheme.

Do not be tempted by a hardware based protection scheme.

The only things that are certain:

  • Any protection schemes will be cracked.
  • You will annoy legitimate customers
  • You will lose time supporting problems related to the protection
  • There will be problems when a legitimate customer cannot use your product because of the protection.
  • It is a better investment to use any time and funds that you would have spent on protection on improving the product or finding more customers.

The golden rule of protection is to make it painless for your customers. Hardware protection schemes make life inconvenient for your customers and easier for those who've ripped you off, which clearly isn't right.

link|flag
BUt what can i do to prevent to find my software on a web server ready for download, without online registration. Is their only the good old KEY when starting the installation? – Markus Lausberg Jan 15 at 8:50
vote up 1 vote down

Just as another slightly different opinion:

There's one situation where I would gladly accept the "dongle" approach. MATLAB has a pricing structure where if you install something on a single fixed machine, it costs $X. If you want to install it as a concurrent license (license server on the network) for one person to use it at a time, it costs $4X. That makes no sense whatsoever for rarely-used software.

The business model for buying a super-accurate torque wrench shouldn't matter how many people want to use it, and if person A wants to use it but person B is already using it, then person B has to finish using it before person A can make use of it. I don't have any problem with software following this model by using physical tokens, if it's being used at sites where it's shared by multiple users. It's a much fairer business model than jacking up the price for a concurrent license. The physical-token approach may be less attractive to individual customers, but if you have a product that command the price, then why not?

If you don't have a product that's in demand to that degree, I wouldn't bother.

And you'd better have a mechanism for dealing with lost tokens. (alas I don't have any idea there)

link|flag
vote up 1 vote down

Whilst I agree with most of the other answers, there is a case where hardware dongles work and that is for low volume, high value software. Popular high volume software will always be cracked so there is little point in annoying your customers with a costly hardware system.

However it is unlikely that anyone will bother going to the effort of cracking specialised, low-volume software. Yet if it is easy to just install on another machine many customers may 'forget' to buy another license, and you lose out on valuable income. Here dongle protection works as they need to come back to you for another dongle if they want to run two copies simultaneously.

I've used Aladdin dongles but be aware there are software emulators available for these and so you must also program the memory on the dongle with something an emulator cannot know.

link|flag
vote up 1 vote down

First, make sure that it will not be counter-productive. It has a non-negligible cost in development, test, maintenance and customer support. Cases where such a protection is the more appropriate is when your software is THE software, almost with a machine dedicated to it.

I know that latest wibu products have a pretty good robustness, and are in practice hacker proof. (Other similar products probably exist also). Basically, parts of your code can be encrypted in the key itself, with an encryption key changing all the time. They ran worldwide hacker contests where no one was able to use unauthorized versions of a protected software.

link|flag

Your Answer

Get an OpenID
or

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