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

发布于 2024-08-09 12:13:00 字数 67 浏览 4 评论 0原文

有没有一个工具可以对java混淆代码进行反混淆?

这些代码是从编译的类中提取的,但它们是模糊且不可读的。

Is there a tool to deobfuscate java obfuscated codes?

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

百变从容 2024-08-16 12:13:00

第一步是了解它是被哪个工具混淆的。也许已经有一个针对特定混淆器的“反混淆器”。

另一方面,您也可以只运行 IDE 并使用其重构功能。将类、方法和变量名称重命名为敏感名称。利用你的人类逻辑思维能力来弄清楚代码实际代表什么,并敏感地命名它们。这幅图景将会缓慢但肯定地增长。

祝你好运。

First step would be to learn with which tool it was obfuscated. Maybe there's already a "deobfuscator" around for the particular obfuscator.

On the other hand, you can also just run an IDE and use its refactoring powers. Rename the class, method and variable names to something sensitive. Use your human logical thinking powers to figure what the code actually represents and name them sensitively. And the picture would slowly but surely grow.

Good luck.

死开点丶别碍眼 2024-08-16 12:13:00

您是否尝试过使用Java Deobfuscator(aka JDO)(一种智能反编译器)来使代码不那么晦涩难懂?

当前 JDO 执行以下操作:

  • 重命名混淆的方法、变量、常量和类名
    是独一无二的并且更具代表性
    他们的类型
  • 在整个源代码树中传播更改(测试版)
  • 有一个易于使用的 GUI
  • 允许您指定字段、方法和类的名称(新功能!)

目前 JDO 不做
以下(但可能有一天)

  • 以任何方式修改方法字节码

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
誰ツ都不明白 2024-08-16 12:13:00

不是为了坟墓,而是我编写了一个适用于大多数商业混淆器的工具

https://github.com/Contra/JMD

Not to gravedig but I wrote a tool that works on most commercial obfuscators

https://github.com/Contra/JMD

鱼忆七猫命九 2024-08-16 12:13:00

我使用了 Java Deobfuscator(又名 JDO),但它有一些错误。它不能使用区分大小写的文件名。
所以我更改了源代码并在 sourceforge 中上传了一个补丁。
补丁下载

I used Java Deobfuscator (aka JDO) but it has a few bugs. It can't work with case sensitive file names.
So I've changed the source and uploaded a patch for that in sourceforge.
The patch, Download

紫竹語嫣☆ 2024-08-16 12:13:00

很可能只有人类的心智才能理解它。获取最好的反编译器并思考其输出。

Most likely only human mindpower to make sense of it. Get the best decompiler available and ponder on its output.

佞臣 2024-08-16 12:13:00

也许它可以在 Unix/Linux/MacOS 上运行?

如果是这样,您可以将流程的一个步骤移至虚拟机,在虚拟机中解压代码,然后再重命名太长的名称。 Windows 上的文件名限制是多长?

Maybe it will work on Unix/Linux/MacOS?

If so, you could move one step of your process to a VM, in where you unpack the code, before you rename the too long names. How long is the file name limit on Windows?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文