开发者

how to obfuscate the war file using proguard

开发者 https://www.devze.com 2022-12-24 00:46 出处:网络
I want to ob开发者_JAVA百科fuscate a war file using proguard,how can i do so ? Please explain me the stepsI\'m puzzled by this question.

I want to ob开发者_JAVA百科fuscate a war file using proguard,how can i do so ?

Please explain me the steps


I'm puzzled by this question.

As other Java obfuscators, Proguard obfuscates the compiled bytecode (.class files) by renaming every variable, method etc. it considers safe to rename. I suppose you know this and know how to use Proguard for class files since you specifically asked about it. If not, read the proguard manual.

As for war files, you can extract the class files from war (or jar) by unzipping it. (yes, a war is a normal zip file). Then you can run them through Proguard and zip it up again. You can use Winzip, unzip or whatever zip program you prefer. You can even zip and unzip the war with JDK (jar -xvf tobe_extracted.war).

This obfuscation does not affect the other files inside the war, like properties files, xml files and such. The war is not encrypted. Your software may not work after this because reflection based stuff may be break. Proguard can't know whether your frameworks are going to access something with their mighty reflection magic and if it's actually safe to rename it.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号