yguard

Is it possible to manage logs through Obfuscation with yGuard?

痴心易碎 提交于 2019-12-12 02:09:39
问题 I obfuscated a java web application and I ran into some trouble as below: I have alot of uresolved external classes even though I have included in the ant build xml the external jar this way: <externalclasses> <pathelement location="${tomcatpath}/lib/"/> <pathelement location="${webinfdir}/lib/"/> </externalclasses How can I manage logs to understand anything? Can I also obfuscate the jsp files? 回答1: I found out the following: The jars must be put individually instead of their directories The

How to include obfuscated jar file into a war file

北城以北 提交于 2019-12-06 14:52:46
In my web application, to obfuscate the source code, i used yGuard and got an obfuscated jar file. Now i placed this jar file into the WEB-INF/lib folder (as my jsp files have reference to the java files) and packaged the war file using below ant script : <?xml version="1.0" encoding="UTF-8"?> <project name="MyWebApp" default="war" basedir="."> <property file="build.properties" /> <property name="war-file-name" value="${project-name}.war" /> <property name="source-directory" value="src" /> <property name="classes-directory" value="WebRoot/WEB-INF/classes" /> <property name="web-directory"

Java obfuscation - ProGuard/yGuard/other? [closed]

一个人想着一个人 提交于 2019-11-27 14:00:20
This is along similar lines as these recent questions: Best Java Obfuscation Application For Size Reduction Creating non-reverse-engineerable Java programs However, one ends up recommending yGuard and the other ProGuard but neither mention both. I wonder if we could get a comparison of each one and hear peoples experiences from both sides of the fence. Looking at this comparison chart on the ProGuard website its clearly angled towards ProGuard. But what about real-world experience of each - which one produces smaller output? which one is harder to decompile from? what Java versions are

Java obfuscation - ProGuard/yGuard/other? [closed]

对着背影说爱祢 提交于 2019-11-26 16:34:09
问题 This is along similar lines as these recent questions: Best Java Obfuscation Application For Size Reduction Creating non-reverse-engineerable Java programs However, one ends up recommending yGuard and the other ProGuard but neither mention both. I wonder if we could get a comparison of each one and hear peoples experiences from both sides of the fence. Looking at this comparison chart on the ProGuard website its clearly angled towards ProGuard. But what about real-world experience of each -