- Joined
- Jul 11, 2020
- Messages
- 0
- Reaction score
- 25
- Points
- 0
Honestly I'm not going to waste my own time trying to c-r-a-c-k (for some reason c-r-a-c-k without the dashes says "Leak") this, final wants me to, but i ain't going to, it will add gas to his narcissistic fire, also its a pure time waster when i could be working on other crap, this is Adjust client, not sure which version but idc.
Next release of this will be a partial string obf, unless someone beats me to it, Ive managed to get strings into AES format and get past his skidded bytecode veiwer crashers etc, here's the original jar before i semi string deobfed it, for anyone that actually wants to waste 5 hours getting past the skidded obfuscation and bytecode/asm veiwer crashers.
Once you get past the skidded bytecode viewer crashers and other bull crap, to string deobf use code straight from superblaubeere27s obfuscator (yea thats right final skidded superblaubeeres obfuscator because he cant make his own string obf LMAO)
private static final Random random = new Random();
public static String generateString(int lenght) {
final String s = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
final StringBuilder stringBuilder = new StringBuilder(lenght);
for (int i = 0; i < lenght; i++)
stringBuilder.append(s.charAt(random.nextInt(s.length())));
return stringBuilder.toString();
}
String key = generateString(5);
public String decrypt(String obj) {
try {
SecretKeySpec keySpec = new SecretKeySpec(MessageDigest.getInstance("MD5").digest(key.getBytes(StandardCharsets.UTF_8)), "Blowfish");
Cipher des = Cipher.getInstance("Blowfish");
des.init(Cipher.DECRYPT_MODE, keySpec);
return new String(des.doFinal(Base64.getDecoder().decode(obj.getBytes(StandardCharsets.UTF_8))), StandardCharsets.UTF_8);
} catch (Exception e) {
e.printStackTrace();
}
return null;
} <- thats some code for ur deobfuscator once u manage to remove his antibytecodeprot prolly skidded from itzsomebody's github
and heres the jar:
https://files.catbox.moe/kimwlw.jar
Whoever the moderator or staff is reading this, add the code and hide tags for me thx, im lazy rn and feel like watching a disney movie
Next release of this will be a partial string obf, unless someone beats me to it, Ive managed to get strings into AES format and get past his skidded bytecode veiwer crashers etc, here's the original jar before i semi string deobfed it, for anyone that actually wants to waste 5 hours getting past the skidded obfuscation and bytecode/asm veiwer crashers.
Once you get past the skidded bytecode viewer crashers and other bull crap, to string deobf use code straight from superblaubeere27s obfuscator (yea thats right final skidded superblaubeeres obfuscator because he cant make his own string obf LMAO)
private static final Random random = new Random();
public static String generateString(int lenght) {
final String s = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
final StringBuilder stringBuilder = new StringBuilder(lenght);
for (int i = 0; i < lenght; i++)
stringBuilder.append(s.charAt(random.nextInt(s.length())));
return stringBuilder.toString();
}
String key = generateString(5);
public String decrypt(String obj) {
try {
SecretKeySpec keySpec = new SecretKeySpec(MessageDigest.getInstance("MD5").digest(key.getBytes(StandardCharsets.UTF_8)), "Blowfish");
Cipher des = Cipher.getInstance("Blowfish");
des.init(Cipher.DECRYPT_MODE, keySpec);
return new String(des.doFinal(Base64.getDecoder().decode(obj.getBytes(StandardCharsets.UTF_8))), StandardCharsets.UTF_8);
} catch (Exception e) {
e.printStackTrace();
}
return null;
} <- thats some code for ur deobfuscator once u manage to remove his antibytecodeprot prolly skidded from itzsomebody's github
and heres the jar:
https://files.catbox.moe/kimwlw.jar
Whoever the moderator or staff is reading this, add the code and hide tags for me thx, im lazy rn and feel like watching a disney movie