| Simple Crackme |
jz* |
2022-06-26 07:01 |
| Simple Crackme |
Default changing jn to jnz... |
2022-06-26 07:01 |
| .NET CrackMe |
Password: super_secret_pwd
It's very easy
Get dump + de4dot + dnSpy |
2022-06-26 05:43 |
| Basic One |
Not bad, I don't have a password, but I'm change code structure from
if (this.maskedTextBox_0.Text == text)
{
this.maskedTextBox_0.Text = "Correct";
}
else
{
this.maskedTextBox_0.Text = "Wrong!";
}
To
if (this.maskedTextBox_0.Text == text || this.maskedTextBox_0.Text != text)
{
this.maskedTextBox_0.Text = "Correct";
} |
2022-06-25 13:01 |
| CrackMe with my own obfuscator |
Not bad, I don't have a password, but I'm change code structure from
if (this.maskedTextBox_0.Text == text)
{
this.maskedTextBox_0.Text = "Correct";
}
else
{
this.maskedTextBox_0.Text = "Wrong!";
}
To
if (this.maskedTextBox_0.Text == text || this.maskedTextBox_0.Text != text)
{
this.maskedTextBox_0.Text = "Correct";
} |
2022-06-25 13:00 |
| CrackMe with my own obfuscator |
Oh my god...
I'm newbie, it's very hard for me! But I'm done it :)
Password: uaresoprobro
public static string smethod_1()
{
return "uaresoprobro";
}
public static string smethod_2()
{
return "You are so pro B)";
}
|
2022-06-25 12:39 |
| Crack Me With Ui. |
You seriously?
if (this.bunifuTextBox1.Text == "8103535")
{
this.Lol();
MessageBox.Show("Lel..");
return;
}
How I done it?
I'm found a this.Lol();... |
2022-06-25 11:42 |
| First crackme |
Password: T8h92cxq
de4dot + sizeOfFIX + MathFix
Nice! For newbies (me :)) |
2022-06-25 11:37 |