![]() |
|
#2
|
|||
|
|||
|
Quote:
Try the following approach: Modify the c classloader to dump the classes it loads, just after decryption: Code:
public Class findClass(String s) {
byte abyte0[] = a(s);
dumpClass(s, abyte0);
Code:
private void dumpClass(String name, byte[] cls) {
try {
name = name.replace('.', '/');
name += ".class_ok";
OutputStream os = new FileOutputStream(".../PokerOffice/" + name);
os.write(cls);
os.close();
} catch (Exception e) {
e.printStackTrace();
}
}
If you're curious to see the encryption password, just log it in the c constructor. They are passed to the poker.ProgramLauncher by the executable. The dumped classes seems perfectly normal to me, they can be decompiled like the others. If you need any tip finding the encrypted serial encryption just let me know
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| java self-contained application packaging cracking | Chuck954 | General Discussion | 3 | 08-20-2022 00:57 |
| java cracking | ChupaChu | General Discussion | 68 | 03-28-2021 09:04 |