ProGuard is the most popular optimizer and obfuscator for Java bytecode and Android apps. Reduce your Java and Android apps up to 90% with ProGuard.
Allatori does not just obfuscate, it alsominimizes application size, andboosts the speed, and all the while your code is unreadable by anyone but you and your team. Allatori, as every modern Java obfuscator, has full watermark functionality, allowing potential for proper licensing of your software...
这为必须交付给客户的源代码知识产权提供了重要的保护,并防止对 Java 类文件对象代码进行过于简单的反汇编。您只需要公开您的类提供给客户的公共 API;您所有的内部 API 和类名都变得高深莫测。它是 SD 的Source Code Obfuscators 家族的一员。 Java 混淆器特性 在不影响功能的情况下用无意义的名称替换标识符 用...
这为必须交付给客户的源代码知识产权提供了重要的保护,并防止对 Java 类文件对象代码进行过于简单的反汇编。您只需要公开您的类提供给客户的公共 API;您所有的内部 API 和类名都变得高深莫测。它是 SD 的Source Code Obfuscators 家族的一员。 Java 混淆器特性 在不影响功能的情况下用无意义的名称替换标识符 用...
有很多商业的Java代码混淆工具,比如ProGuard、DashO等,它们提供了丰富的混淆选项和高级功能。但是,如果只是想简单地对代码进行混淆处理,其实也可以使用一些免费的混淆工具。下面介绍一个免费的Java代码混淆工具:JBCO(Java ByteCode Obfuscator)。 JBCO使用示例 ...
Reading, writing and reverse engineering can be made into a program by obfuscation. This paper demonstrates the working of code obfuscator that operates on java file and produce obfuscated versions with different level of security.N.DhakshyaniK.Ganga deviG.S.Siva shankariM.Ashok...
If you would like some pointers to production-safe (more or less) and less buggy Java bytecode obfuscators that are properly maintained, I would suggest one of these: Proguard (mostly only class/method/field name obfuscation) Skidfuscator - Discord Zelix KlassMaster Since we're on the topic ...
importjava.util.HashMap;importjava.util.Map;publicclassCodeObfuscator{privateMap<String,String>variableMap=newHashMap<>();privateintcounter=0;// 混淆代码的方法,接受原代码作为输入publicStringobfuscate(StringsourceCode){StringBuilderobfuscatedCode=newStringBuilder();String[]lines=sourceCode.split("\n");fo...
两种免费的Java Obfuscator比较 这个回合yguard胜出, 但是Proguard已经准备在4.0里推出这个特性 4. 增量obfuscate proguard支持增量obfuscate , yguard不支持. 也就是在obfuscate a.jar时, 记住所有的名字映射关系(比如MyUtil->a), 然后在obfuscate b.jar的时候, 使用那个映射关系(所有调用MyUtil改成调用a)...
If you are interested in stronger obfuscation methods, feel free to take a look at my new projectmasxinlingvontathat further obfuscates java bytecode by compiling it to native code. A Java bytecode obfuscator supporting Flow Obfuscation