![]() |
java cracking
I have run into interesting program.. its registration algorithms are completely in java, so I used IDA to disassemble a class file named something like "license_check.class" and it looks very easy to crack it.. but i did not know java opcodes, so i googled it up here:
http://en.wikipedia.org/wiki/Java_bytecode_instruction_listings I'm still looking for "olly" like debugger for java, capable to do patches on the fly.. Is there anything like that? p.s. you can PM me with info if you don't want to reply here. THANKS! |
you decompile the Java program with JD and then debug it with JDebugTool.
After load in Eclipse IDE, go to hot zone, patch it and compile. Tools: JD: http://java.decompiler.free.fr/ JDebugTool: http://www.debugtools.com/ Eclipse ide: http://www.eclipse.org/downloads/ |
thanks mate, JD, and JDebugTool downloaded.. now downloading Eclipse IDE for Java Developers, (99 MB) will try and see how it goes.
Any good tutorials for JdebugTool usage, tips&tricks or similar? |
Quote:
DJ (http://www.neshkov.com/dj.html) has bytecode, sourcecode, and hex views, unfortunately those aren't synchronized (like the source/hex views in IDA). Some good info on Java decompilers is at http://strategoxt.org/Transform/JavaDecompilers Regards |
all tools that you need are up there.. only java sdk is missing:P
|
2 Attachment(s)
2 nice tuts
|
Quote:
... you can download the "normal" Java SDK's from SUN (Oracle) : hxxp://www.oracle.com/technetwork/java/index.html |
IMHO IDA is excellent tool, we only lack a plugin that would act like when you hit "space" on code in olly - to accept new line of code, transcodes it into java opcodes, adjusts ponters and saves modified codes to some file.
Anyone ever hear of similar plugin for ida? Manually patchig byte by byte is PITA. Not to mention recompiling never really worked for me, as no java coding experience here.. |
Well my 2 cents ...
I feel quite comfortable with tools like CCK (Class Construction Kit) and the new (not so stable) JBE (Java Bytecode Editor) ... :) These are very useful for "small" patches because they allow to not recompile all stuff ;) However IMHO for all serious patches ... you have to recompile (even if most of the time you need a linux or mac box (or VM image :D) ... for the case-sensitiveness) Best Regards, Tony |
Java tuts
Thanks for the java tuts above. Interesting field....:-)
|
Well JD andDJ Java 3.11.95(2009) with JAD Jad 1.5.8g(2001).7z is nice to see what's going on in the code.
When you just like to do some little magic:rolleyes: - compiling the whole class file is often really painful, error prune or even not possible since there are to many errors / missing classes or whatever problems... Before I open the *.class in IDA(enable in option/Disam/opcode byte=3) and a hexeditor. And wow the CCK (Class Construction Kit)was a real revelation to me and exactly what I was looking for !!! :D http://bcel.sourceforge.net/cck2_2.gif (^As long as the [img] tag is not working here. you need the click") Beside modifying the bytecode (That JBE also does) you can also delete or add lines and when doing so CCK also takes care about updating jmp and goto references. Installation took me some time because I just downloaded BCEL.jar and tried to figure out how to run it. Well DL http://bcel.sourceforge.net/downloads/BCEL.jar and http://bcel.sourceforge.net/downloads/cck.jar and then run it with java.exe -jar cck.jar Btw. if you like associate *.jar with javaw.exe like this. ;) Well you can do it the clicky-clicky-way or in like this <windowskey+run>"cmd"<Enter> Code:
>assoc .jar |
Hi all
my 5 cents into java RE-ng there is a very nice tool called JMD, just give it a try when you see strings encrypted inside your files nice video tut: http://invokestatic.org/?p=88 |
I have done java cracking once before on a target call smart math calculator and another called graphing calculator 3d(both by the same company). I used the JD Decompiler and JBE(Java bytecode Editor). I could write a tutorial if anyone is interested.
|
Cracking Java programs Part1/Part2:
http://forum.tuts4you.com/index.php?showtopic=19653 |
java-decompiler web link:
http://www.java-decompiler.com/ |
Sorry for late repply....
Quote:
|
I used to use ObjectWebs ASM (http://asm.ow2.org/) to disassemble Java bytecodes to Java code. Then modify that Java code, re-compile it, and use it to generate a proper bytecode file. It's a little bit round about but it works wonderfully and more versatile than patching alone.
|
Hi
Just though I might add my own tip for cracking java. Notice: I know how to program in java (I also know the bytecode of course), and at least some basics are needed even if just for patching an instruction - objects, stack, etc. Well, since I don't usually run under a debugger (IDA or higher-level), what I do sometimes is have a static look at the code - normally with JD - and find interesting spots. Examples: encrypted strings, strange file accesses, etc. Just by the nature of the java.*.* objects being used, you often get a pretty good idea of what's going on, and those can never be obfuscated like the programmer's code. Then you need to patch the framework's code itself. "String", for instance, is a class you can easily change. Just fetch the java rt sources (it comes with the sdk), copy it to your own version, and for instance in the constructor just do a "System.out.println(this);". Want the stacktrace as well to know where this string was created? Just add another statement with "new Exception().printStackTrace();" :D The only thing left is to make java use your version of the rt classes instead of the original ones. Just add this modifier to the invocation: java ... -Xbootclasspath/p:my_path\my_jar_with_changed_stuff.jar ... There you go. All constructed strings (a LOT) will be written to the console, followed by the stack trace of the place they were created. Extending this technique, I once also did something with the java.lang.Exception class. Changed the source so that every single exception wrote the stack trace to a log (be it the captured ones, the ones that happen during regular class loading, etc.) - creates a huge log but also allows you to know about everything that got raised and might not be even been propagated to error windows or log files. Since the output is so huge, I later added some logic to it: created a settings file that could be supplied in the command line and where one could create regular expressions for the stack traces to ignore in order to hide "normal" exceptions that are raised a lot. Unfortunately, this was quite some time ago and I no longer have the code at hand. Still it's not hard for someone to do it if needed. |
There is rather a new tool, very similar to JBE (JBE is obsolete as it won't "patch" all .class files reliably when select features of java 1.6 are used) it's called DirtyJOE. In my opinion, its the easiest way/tool to reverse java. DirtyJOE has an Opcode library that will let you know what that particular java opcode or "bytecode instruction" signifies... http://dirty-joe.com/
I'm also happy to help... clarify and instruction or if you are simply looking for a way to do something... As a decompiler, I recommend using DJ as it is very quick and simple... http://java.decompiler.free.fr/?q=jdgui the basics to reverse java are... 1.Serch for the code to be patched with DJ; 2.Use winRAR and extract the .class file containing the "magic" section of code; 3.Get cracking with dirtyJOE. For JNLP applications, you need first to dig out the relevant .jar files... they are all in the java cache folder... marrom |
Password sniffing in Java
This is just an idea, I don't actually know much about Java but I do understand that Java code runs in a virtual machine (JVM) which is essentially a set of DLLs on windows, so shouldn't there be a way to set breakpoints directly in these DLLs while the virtual machine is interpreting and running a jar?
This could be useful for sniffing serials and the like for example... |
Dr. Garbage Tools is a suite of Eclipse Plugins released under Apache Open Source license. Before is comercial.
-Bytecode Visualizer
-Sourcecode Visualizer
http://www.drgarbage.com/index.html |
Hello,
Thats great, i have everything a Java Application that i will Reversing. Its a Car ODB Application from VW, and its written in Java by T-Systems. The Application loads yourself in a Java VM Bytecode Address to the Memory... No Tool from here is now working.... why? |
ok. just study a java patch.
|
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 |
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 All packaged up here: http://www.4shared.com/archive/x2N1Ns3R/Notes_On_Reversing_Java_Thunde.html |
This is new as of 11/29/2013
Java bytecode debugging http://blog.rewolf.pl/blog/?p=786 |
Adding another app here - Similar to JBE
You need to be regged on tuts4you http://forum.tuts4you.com/topic/33703-methodbodyeditor-for-java/ MethodBodyEditor for Java A Java class editor Just Open the desired Java class (File->Open) and then select the desired method from "Methods" tree after that you will see a list with all instructions of selected method. In order to edit instructions double click on instruction or do a right click on the instruction and select from menu "Show Opcode" then simple enter the hexadecimal opcodes of new instructions and click OK. Finally save with File->Save. |
Try BcelEditor
1 Attachment(s)
MethodBodyEditor for Java is for simple patches!
Try BcelEditor - full class editor, similar with CCK (Class Construction Kit). Best regards, CoeCracker |
JD-GUI 0.3.7
Changelog: Quote:
http://jd.benow.ca/jd-gui/downloads/jd-gui-0.3.7-RC-1.windows.zip |
JBE is really a good program.
But as far as I can see it, you can not directly change the opcodes in the program. Should I fool myself, let me know. |
JBE or JEB? I have studied how to reverse apk for 20 days.I know a tool named JEB(a interactive android decompiler) also powerful.Are we talking about the same thing£¿If someone knows, tell me please. Thank you£¡
|
JBE -> Java bytecode Editor (hxxp://set.ee/jbe/)
JEB -> hxxp://www.android-decompiler.com/ Don't know much, but I guess JBE is a more "generic" tool related to java "compiled" code editing like reflexil is for .Net, while JEB is a toolchain focused on android-specific java reversing/decompilation/editing/whatever (perhaps like Reflector?) I guess. |
Quote:
|
jbe doesn't work.. anymore. Hasnt been updated for a long time. For a similar GUI type tool you need to use DirtyJOE by ReWolf.. http://dirty-joe.com/ currently at v1.7 supports Java8 and it's new .class file structure.
|
JD-GUI v.1.4.0 is released
Download: Quote:
Quote:
|
Anyone can advice a Java bytecode debugger?
|
Quote:
|
If you guys try to practice java+web-based license check, "flowjo" would be a good target as I remember. I tried some years ago, and I had learned java cracking a lot.
Although "flowjo" ask a hasp dongle, it is not a hard part. For your interest, "flowjo" is single cell analysis software and I needed it at that time for my research.. ;) |
Quote:
I usually copy the required decompiled classes to a new project and fix the dependencies. Then you can easily debug with your IDE. Tho this won't work for all targets - but often does. |
if its .class n windows use
Dirtyjoe v1.7 cheers;) if android apps use smali/baksmali there are so many things to talk abt when it comes to java cus i love this language :) |
All times are GMT +8. The time now is 13:22. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2023, vBulletin Solutions, Inc.
Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX