Our Java Obfuscator - JObfuscator has been updated to include new Java obfuscation strategies.
Obfuscation engine history
v1.03 - 31.07.2021- Some integers were not extracted correctly for the integers to arrays obfuscation strategy
- Multilevel obfuscation of extracted integers into the arrays (into a random number of double and integer arrays)
- An integers to arrays obfuscation strategy, converts the integer values into double values to avoid deobfuscation by popular Java decompilers e.g. double[] var_2597 = new double[]{13.898355719807563D, 65535.73657403742D, ... };
- A new obfuscation strategy. For each method, extract all possible integers from the code and store them in an array. It makes the analysis harder because it requires an indexed table lookup for every numeric value.
Client history
v1.01 - 28.07.2021
- All clients (Windows, Linux) and SDKs (PHP & Python) updated to include the new obfuscation strategy /IntsToArrays