vote up 1 vote down star

Is it worth to obfuscate java web application? and why?

flag

27% accept rate

8 Answers

vote up 3 vote down

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).

link|flag
vote up 2 vote down

I would add that you should have a good justification, because obfuscation will make debugging harder.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

IMO, no.

There are two main use-cases for obfuscation:

  1. to protect access control "secrets" (e.g. passwords) embedded in the code, and
  2. to protect against someone stealing your "intellectual property".

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:

  1. just don't embed secrets in the code, and
  2. one or both of the following:
    • secure your webservers so that hackers cannot get at the code, and
    • don't ship the code that you consider to be valuable IP, or if you do, then only ship code to people who have signed a legally binding contract / license agreement that guards your IP rights.
link|flag
1  
sure. You can decompile a obfuscated JAR. In fact it's the same thing as a "normal" jar. But it's barrely readable... – Antoine Claval Sep 14 at 9:26
It is sufficiently readable for a determined hacker with a modicum of skill to be able to figure out exactly what it does, and how it does it. – Stephen C Sep 14 at 9:53
#include<stdio.h> #define __(a) goto a; #define ___(a) putchar(a); #define _(a,b) ___(a) __(b); main() { _:__(t)a:_('r',g)b:_('$',p) c:_('l',f)d:_(' ',s)e:_('a',s) f:_('o',q)g:_('l',h)h:_('d',n) i:_('e',w)j:_('e',x)k:_('\n',z) l:_('H',l)m:_('X',i)n:_('!',k) o:_('z',q)p:_('q',b)q:_(',',d) r:_('i',l)s:_('w',v)t:_('H',j) u:_('a',a)v:_('o',a)w:_(')',k) x:_('l',c)y:_('\t',g)z:___(0x0)} – Antoine Claval Sep 14 at 15:15
1  
@Antoine: that's not Java. A Java decompiler won't gratuitously add a layer of bizarre C preprocessor crap to its output. – Stephen C Sep 14 at 22:32
vote up 2 vote down

You might find the answers to http://stackoverflow.com/questions/12088/do-you-obfuscate-your-commercial-java-code relevant.

link|flag
vote up 0 vote down

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++

link|flag
vote up 0 vote down

Is it worth to obfuscate java web application?

It depends

and why?

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.

link|flag
vote up 0 vote down

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.

link|flag
You don't seem to be very proud of your code >:) BTW, how does this answer the question? – Pascal Thivent Nov 19 at 11:17

Your Answer

Get an OpenID
or

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