![]() |
![]() |
![]() |
![]() |
![]() |
||||||||||
|
||||||||||||||
![]() |
#1
|
|||
|
|||
![]() This is the most sophisticated CrackME I ever wrote ....
I hope everyone tries with it, You must write a keygen and a tutor. Good Luck http://rapidshare.com/files/157996927/Released.rar.html
__________________
Life can only be understood backwards but It must be read forwards. Last edited by Kurapica : 10-27-2008 at 08:02 AM. |
#2
|
|||
|
|||
![]() Does the crackme work?
I edited the crackme to remove the try/catch and it gives an exception when checking the key(when run from the loader, nothing changed except the try/catch removed). ************** Exception Text ************** System.BadImageFormatException: Signature is not IMAGE_CEE_CS_CALLCONV_LOCAL_SIG. at CrackME.Form_Main.CheckLicense() the only thing I changed was Code:
private void CMD_Reg_Click(object sender, EventArgs e) { try { if (this.CheckLicense()) { Interaction.MsgBox("Well done !! Now write the tutor !", MsgBoxStyle.Information, null); } else { Interaction.MsgBox("Invalid License Key", MsgBoxStyle.Critical, null); } } catch (Exception exception1) { ProjectData.SetProjectError(exception1); Exception exception = exception1; Interaction.MsgBox("Invalid License Key", MsgBoxStyle.Critical, null); ProjectData.ClearProjectError(); } } Code:
private void CMD_Reg_Click(object sender, EventArgs e) { if (this.CheckLicense()) { Interaction.MsgBox("Well done !! Now write the tutor !", MsgBoxStyle.Information, null); } else { Interaction.MsgBox("Invalid License Key", MsgBoxStyle.Critical, null); } } Last edited by high6 : 10-11-2008 at 11:38 PM. |
#3
|
|||
|
|||
![]() Of course it's working...
![]() The Try-Catch block is added to make sure Key is in correct format or else an exception will be raised, anyway the core of this crackme is in the CheckLicense Function so try harder.
__________________
Life can only be understood backwards but It must be read forwards. Last edited by Kurapica : 10-12-2008 at 03:11 AM. |
#4
|
|||
|
|||
![]() Quote:
I am not great at non .net stuff so I don't think I can do this one. Last edited by high6 : 10-12-2008 at 09:16 AM. |
#5
|
|||
|
|||
![]() CrackME is solved by UFO, for more info :
http://forum.tuts4you.com/index.php?showtopic=17807
__________________
Life can only be understood backwards but It must be read forwards. |