EvilZone
Hacking and Security => Reverse Engineering => : Raavgo July 10, 2013, 12:11:05 PM
-
This Programme has a password within it and I am unable to crack it.The access is only protected through a 6-digit code which is checked on clientside.
This is part of a wargame and I am unable to solve it at the moment but I am eager to learn maybe someone wants to set me on the right part.
regards
Raavgo
-
Get JAD: http://varaneckas.com/jad/
Look for the .jar file that has the main Java code. I guess it's Client.jar.
Unzip it.
Put the .class files into the same folder as jad
Run ./jad *.class
You will get a bunch of .jad files which is the decompiled Java code. Read them and look for the password.
-
Already did that stuff :( just don't get through the source code
the password is encoded within the programme
-
Already did that stuff :( just don't get through the source code
the password is encoded within the programme
If the password is checked client side, then that means it is either created/calculated or stored within the program, you just have to find that location.
Also, I recommend: http://java.decompiler.free.fr/?q=jdgui for a java decompiler.