且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

(2009) - 反混淆Java代码的工具

更新时间:2023-12-03 22:53:04

您是否尝试使用 Java Deobfuscator(又名JDO),一种智能反编译器?


目前JDO执行以下操作: / p>


  • 将混淆的方法,变量,常量和类名称重命名为
    为唯一且更符合
    类型

  • 宣传整个源代码树(测试版)的变化

  • 有一个易于使用的GUI

  • 允许你指定字段,方法和类的名称(新功能!)



目前JDO不执行以下
(但它可能有一天)




  • 修改方法字节码y way



Is there a tool to deobfuscate java obfuscated codes?

The codes is extracted from a compiled class but they are obfuscated and non-readable.

Did you try to make the code less obscure with Java Deobfuscator (aka JDO), a kind of smart decompiler?

Currently JDO does the following:

  • renames obfuscated methods, variables, constants and class names to be unique and more indicative of their type
  • propogates changes throughout the entire source tree (beta)
  • has an easy to use GUI
  • allow you to specify the name for a field, method and class (new feature!)

Currently JDO does not do the following (but it might one day)

  • modify method bytecode in any way