Took me less then 10 minutes. |
==> |
textbox1 - tariq;
textbox2 - 123; |
==> |
Yeah same but I used ida(free). |
==> |
I seem to get Error msg can anyone help? |
==> |
I took like 1 hours to analyze and decode took short brake and cracked it in less then 5 minutes. Great crackme man =] |
==> |
Cracked, But at what cost i wasted 2 days just to crack this. |
==> |
Good crackme Nice.
|
==> |
I couldn't crack this shit can anyone help me? its 30 line of password-cheking with if statement, even tho password is given if you look at assemble code carefully. Please post solution |
==> |
Very good crackme nice
here is the code i found in dnspy its passwordcheker i guess.
private void button2_Click(object sender, EventArgs e)
{
uint num = (this.textBox2.Text == "E7F8-F3G5-G8J2-S1N9") ? 1U : 0U;
if ((byte)(((this.textBox1.Text == "MarkCool123") ? 1U : 0U) & num) != 0)
{
MessageBox.Show("Successfully Cracked, good job!!!");
MessageBox.Show("Subscribe also to my YouTube channel:)");
base.Close();
}
else
{
MessageBox.Show("Wrong Password!");
}
}
|
==> |