Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is java that secure?

Tags:

java

Will the fact that java class files can be decompiled and need of third party software for obfuscation in any way compromise security?

like image 378
abson Avatar asked Mar 24 '10 05:03

abson


1 Answers

Only if you actually rely on security through obscurity, which is a bad idea regardless of the language or platform.

If the code can be run, it can be reverse-engineered.

like image 129
paxdiablo Avatar answered Sep 22 '22 18:09

paxdiablo