java Programming Glossary: decompilation
Command-line java decompiler (alternative to jd-gui) http://stackoverflow.com/questions/1384619/command-line-java-decompiler-alternative-to-jd-gui decompiling share improve this question Command line decompilation for JD GUI is a highly requested feature but it's not implemented..
Creating non-reverse-engineerable Java programs http://stackoverflow.com/questions/149937/creating-non-reverse-engineerable-java-programs question is How to lock compiled Java classes to prevent decompilation Once I've completed the program I would still have access to..
Determine whether .class file was compiled with debug info? http://stackoverflow.com/questions/1508235/determine-whether-class-file-was-compiled-with-debug-info display the source file if present at the start of the decompilation peregrino javac d bin g none src Relation.java peregrino javap..
How to protect compiled Java classes? http://stackoverflow.com/questions/2443542/how-to-protect-compiled-java-classes market there's a very easy to prevent the .class to .java decompilation use a tool like Excelsior Jet that will transform the .jar in.. long for all the people saying it's impossible to prevent decompilation of a .class file . Sure an attacker could launch SoftIce and..
Is it really impossible to protect Android apps from reverse engineering? http://stackoverflow.com/questions/4336637/is-it-really-impossible-to-protect-android-apps-from-reverse-engineering what you do it is impossible to protect compiled code from decompilation or reverse engineering as the Stack Overflow question How to.. question How to lock compiled Java classes to prevent decompilation suggests. How would one go about protecting an app that contains..
Java Decompiler [closed] http://stackoverflow.com/questions/4375037/java-decompiler
How can I protect MySQL username and password from decompiling? http://stackoverflow.com/questions/442862/how-can-i-protect-mysql-username-and-password-from-decompiling way to prevent the password from leaking as a result of decompilation never compile it into the binary to begin with . For more information.. credentials will not be hard coded into your binaries so decompilation will not pose a security risk. Important Note The preference..
How to lock compiled Java classes to prevent decompilation? http://stackoverflow.com/questions/49379/how-to-lock-compiled-java-classes-to-prevent-decompilation to lock compiled Java classes to prevent decompilation How do I lock compiled Java classes to prevent decompilation.. How do I lock compiled Java classes to prevent decompilation I know this must be very well discussed topic on the Internet..
How to encrypt a .jar file http://stackoverflow.com/questions/7187883/how-to-encrypt-a-jar-file make it harder but not impossible your class files from decompilation not from being used. If obfuscation is not enough you could..
Java - How to store password used in application? http://stackoverflow.com/questions/8195099/java-how-to-store-password-used-in-application way to prevent the password from leaking as a result of decompilation never compile it into the binary to begin with . See this wonderful..
|