Skip to content

Commit d31a135

Browse files
committed
August Update
1 parent 127947a commit d31a135

File tree

14 files changed

+4326
-5
lines changed

14 files changed

+4326
-5
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Deobfuscator [![Build Status](https://ci.samczsun.com/buildStatus/icon?job=java-deobfuscator/Deobfuscator)](https://ci.samczsun.com/job/java-deobfuscator/job/Deobfuscator)
1+
# Deobfuscator
22

33
This project aims to deobfuscate most commercially-available obfuscators for Java.
44

@@ -36,6 +36,8 @@ Take a look at [USAGE.md](USAGE.md) for more information.
3636

3737
If you're trying to recover the names of classes or methods, tough luck. That information is typically stripped out and there's no way to recover it.
3838

39+
If you are using one of our transformers, check out the commonerrors folder to check for tips.
40+
3941
Otherwise, check out [this guide](CUSTOMTRANSFORMER.md) on how to implement your own transformer (also, open a issue/PR so I can add support for it)
4042

4143
## Supported Obfuscators
@@ -70,4 +72,4 @@ They were written specifically for Android apps.
7072

7173
## Licensing
7274

73-
Java Deobfuscator is licensed under the Apache 2.0 license.
75+
Java Deobfuscator is licensed under the Apache 2.0 license.

commonerrors/Allatori.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## Flow Obfuscation
2+
The latest versions of Allatori contain some flow obfuscation which moves around some instructions, so it is necessary to run allatori.FlowObfuscationTransformer to fix this. This transformer should always work, but if it doesn't, open an issue! Note: It is not necessary to run this before allatori.StringEncryptionTransformer.

commonerrors/AntiReleak.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## InvokeDynamic Transformer
2+
This transformer was made to be a universal decryptor for all antireleak invokedynamics. This will only reverse the invokedynamics so you can reverse engineer the plugin, not remove all traces of your user id!

commonerrors/DashO.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## String Encryption Transformer
2+
If you get an error relating to SourceResult, it is because DashO's flow obfuscation was applied, which messes with the string decryptor. Run dasho.FlowObfuscationTransformer first, and you will able to decrypt all the strings.

commonerrors/General.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
In general, files must be deobfuscated in the reverse order in which obfuscators were applied. For example, if your file is obfuscated with Stringer and then Allatori, you would run the Allatori transformers, and then the Stringer ones. Also, if an obfuscator was applied multiple times (e.g. several layers of Allatori), you must run the transformers multiple times. The only exception with this rule is with flow obfuscation transformers, which typically do not need to be run multiple times.

commonerrors/JObf.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## JObfTransformer (superblaubeere27's obfuscator)
2+
One issue with this obfuscator is that it may inject local variables into the code, which prevents the file from being completely deobfuscated. In that case, use general.LocalVariableRemover, write to file, and then run the deobfuscator on the output. If you are still having issues with some features not being deobfuscated, use DeadCodeRemover and then RedundantGotoRemover to get rid of the junk code that may be in the way. Note that there are some settings which you cannot configure in this transformer without forking this project.

commonerrors/Radon.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## RadonTransformer(V2)
2+
RadonTransformer was meant to work on the earlier versions of Radon, while RadonTransformerV2 works on the later versions. Use RadonTransformer first, and if it doesn't work, use RadonTransformerV2. Note that there are some settings in the transformer that you cannot configure without forking the project.

commonerrors/Stringer.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## HideAccessObfuscation Transformer
2+
If you see an error while running the transformer, it means that you did not remove the string encryption. Run stringer.StringEncryptionTransformer first and you will be able decrypt Stringer's hide access. Note that you need to add all libraries that are used by the JAR, otherwise you will not be able to decrypt the file!

docs/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Deobfuscator [![Build Status](https://ci.samczsun.com/buildStatus/icon?job=java-deobfuscator/Deobfuscator)](https://ci.samczsun.com/job/java-deobfuscator/job/Deobfuscator)
1+
# Deobfuscator
22

33
This project aims to deobfuscate most commercially-available obfuscators for Java.
44

55
## Updates
6-
To download an updated version of Java Deobfuscator, go to the [releases tab on the GitHub repo](https://github.com/java-deobfuscator/deobfuscator/releases).
6+
To download an updated version of Java Deobfuscator, go to the releases tab.
77

88
If you would like to run this program with a GUI, go to https://github.com/java-deobfuscator/deobfuscator-gui and grab a download. Put the deobfuscator-gui.jar in the same folder as deobfuscator.jar.
99

@@ -36,6 +36,8 @@ Take a look at [USAGE.md](USAGE.md) for more information.
3636

3737
If you're trying to recover the names of classes or methods, tough luck. That information is typically stripped out and there's no way to recover it.
3838

39+
If you are using one of our transformers, check out the commonerrors folder to check for tips.
40+
3941
Otherwise, check out [this guide](CUSTOMTRANSFORMER.md) on how to implement your own transformer (also, open a issue/PR so I can add support for it)
4042

4143
## Supported Obfuscators
@@ -70,4 +72,4 @@ They were written specifically for Android apps.
7072

7173
## Licensing
7274

73-
Java Deobfuscator is licensed under the Apache 2.0 license.
75+
Java Deobfuscator is licensed under the Apache 2.0 license.

0 commit comments

Comments
 (0)