Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a Java Desktop Application and want to employ some mechanism to protect my software from illegal copy. What is the general best approach to implement the serial number and activation protection for Java Application? If the user can activate the software correctly, where to store the activation info?

Thanks.

share|improve this question
Here are some hints: stackoverflow.com/questions/tagged/piracy – BalusC Apr 10 '10 at 21:45
2  
Short answer: It's very, very difficult -- if not impossible -- to keep a determined user from pirating your application. – Michael Myers Apr 10 '10 at 21:48
Thank you guys! – sza Apr 11 '10 at 23:35

1 Answer

up vote 3 down vote accepted

There can almost be only one answer: On your server, together with a significant part of your algorithm(s). If all the code has to be on the client, then all that could work is

  1. Trusted computing (ultimately a hardware barrier)
  2. Steganography (obfuscating, scattering, hiding, deceiving, ...)
share|improve this answer
Does this mean the app will always require connecting to the server in order to run? Or is it that your answer does not cover the "where to store the activation info?" part? – R. Martinho Fernandes Apr 10 '10 at 22:04
@Martinho: If a significant part of the algorithm is on the server, then yes, at least for executing those parts, the app will have to be connected to the server. For the (many) cases, where that's not possible, I supplied the comparatively weak alternatives I know about. – Chris Lercher Apr 10 '10 at 22:06
@chris_l: I disagree with the "comparatively weak" thing. They all seem equally weak, but the online approach can be a nuissance for legitimate users, making it slightly weaker. One can always "fix" the application, no matter if the keys are checked locally or remotely. Having said that, there are no better solutions... – R. Martinho Fernandes Apr 10 '10 at 22:15
@chris_l: thank you for your answer, is it possible to use some runtime compilation technique to compile the activation info with some class objects into a brand new class or a jar file which must be used by the main program? – sza Apr 10 '10 at 22:18
1  
@chris_l: I agree, if the program is split between the server and the client, you can have a certain level of security. That may not be an option for many projects, though, if you factor both development and server costs. I think the old maxim of "spend time improving your product, not securing it" wins in the end. – R. Martinho Fernandes Apr 10 '10 at 22:41
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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