![]() |
|
#11
|
|||
|
|||
|
My approach and personal favorites when approaching a Java Patch.
Use JD Gui to find what you��re looking for and eventually JBE to patch, a recursive decompile with JAD and clear text search sometimes helps. JAD decompile can be done with cmd below. If you have multiple jars, just extract everything, then run the decompile. JAD Recursive Decompile: for /R %F in (*.class) do jad -r -ff -s java %F JD Gui - Must have, will allow full exploration of .JAR, as well as export of source. http://jd.benow.ca/ JBE - Java Bytecode Editor can be used to patch whatever bytecode you desire, modifying the class directly without having to recompile. Will require more than a basic understanding of Java bytecode to use this effectively. http://set.ee/jbe/ Once you have the patched .class you can simply just drop it back into the .jar with WinRar, or if you are working on a standalone .class then your basically done. Hope this helps, patching Java can be interesting, especially ones that have string encryption functions. I don't have direct links for these tuts, but they are pretty good, I will get them uploaded later. Cracking_Java_programs_Part1_SND.zip Cracking_Java_programs_Part2_SND.zip Notes_on_reversing_and_cracking_Java_target_Part1_by_ThunderPwr.rar Notes_on_reversing_and_cracking_Java_target_Part2_by_ThunderPwr.rar Notes_on_reversing_and_cracking_Java_target_Part3_v1.2_by_ThunderPwr.rar Last edited by 0xd0000; 11-29-2013 at 12:07. Reason: Update-- |
| The Following User Says Thank You to 0xd0000 For This Useful Post: | ||
Indigo (07-19-2019) | ||
|
|
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... | deephousederek | General Discussion | 5 | 05-17-2005 07:55 |