jz* |
==> |
Default changing jn to jnz... |
==> |
Password: super_secret_pwd
It's very easy
Get dump + de4dot + dnSpy |
==> |
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";
} |
==> |
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";
} |
==> |
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)";
}
|
==> |
You seriously?
if (this.bunifuTextBox1.Text == "8103535")
{
this.Lol();
MessageBox.Show("Lel..");
return;
}
How I done it?
I'm found a this.Lol();... |
==> |
Password: T8h92cxq
de4dot + sizeOfFIX + MathFix
Nice! For newbies (me :)) |
==> |