Is it worth to obfuscate java web application? and why?
|
|
|
|
|
|
|
No. The code is stored on the server where external users (hopefully) don't have access to it. You may want to obfuscate the JavaScript if you feel it's worth the (minimal) IP protection. The best thing is so make sure your server security is up to scratch and you don't have open access to your application directories (which shouldn't happen anyway). |
||
|
|
|
|
I would add that you should have a good justification, because obfuscation will make debugging harder. |
||
|
|
|
|
The only scenario where you would obfuscate a java web application is if you gave the code to your customers to run on their servers. Otherwise, it is just a waste of time and an extra complexity. Obfuscation is for the purpose of making it harder for someone to decompile your byte code and get useful code out of it. To do this, they have to have access to your class files, something that only exists when you deliver them to your customers, not when they access it remotely. |
||
|
|
|
|
IMO, no. There are two main use-cases for obfuscation:
The problem is that obfuscation only foils half-hearted attempts at reverse engineering. A serious attempt will always succeed. It is really not that hard to decompile an obfuscated JAR file, and there are lots of tools around for doing it. For the use-cases above, better alternatives to obfuscation are:
|
||||||||||||
|
|
|
You might find the answers to http://stackoverflow.com/questions/12088/do-you-obfuscate-your-commercial-java-code relevant. |
||
|
|
|
|
If you deploy your Web application to customers, bytecode-to-bytecode transformation (aka obfuscation) does not provide hard protection from reverse engineering. You may consider optimizing compilation of Tomcat Web applications to native code to achieve the protection level close to compiled C/C++ |
||
|
|
|
|
It depends
If you're licensing your web-app to be installed on your customer's site and you don't want your customer to decompile your code, then it is. If you're serving your web-app and the installation is available only from you, I would say it is not worth it. Better would be to increase your net security. |
||
|
|
|
|
we are deploying our software at customer site and we dont want to give chance to the customer to check our code. so i want to know how to obfuscate the web application. |
||
|
