mr.penis on 6:36 PM 08/21/2024: XOQIBwcLudyp6NG
LAXY on 10:19 AM 08/25/2024: XOQIBwcLudyp6NG
u can use simple obf
shadowleet on 5:43 PM 08/25/2024: shadowleet
shadowleet on 5:43 PM 08/25/2024: https://gofile.io/d/tZx1GF
SamoXcZ on 10:10 AM 08/26/2024: What's the password to them?
newcracker on 2:02 AM 08/27/2024: XOQIBwcLudyp6NG
0ya3um1 on 7:08 PM 08/30/2024: xdddd i wanted to type crackme instead of c
Nicole.exe on 5:11 PM 09/01/2024: private void button1_Click(object sender, EventArgs e)
{
string text = this.keyfield.Text;
bool flag = text == "XOQIBwcLudyp6NG";
if (flag)
{
MessageBox.Show("nice, you did it");
Application.Exit();
}
else
{
MessageBox.Show("nope, thats not it");
}
}
minora on 9:12 PM 09/01/2024: XOQIBwcLudyp6NG
nigga on 3:41 AM 09/05/2024: can someone explain me how to do this pleaase
jewdev on 11:33 AM 09/06/2024: @nigga skill issue
id6zker on 9:27 AM 09/08/2024: private void button1_Click(object sender, EventArgs e)
{
string text = this.keyfield.Text;
bool flag = text == "XOQIBwcLudyp6NG";
if (flag)
{
MessageBox.Show("nice, you did it");
Application.Exit();
}
else
{
MessageBox.Show("nope, thats not it");
}
}
__________
use dnspy
jjthereverser on 4:39 AM 10/15/2024: The password is XOQIBwcLudyp6NG.
I am new to reverse engineering, and I have try for couple days using x64dbg, search for string references and intermodule calls.
For the string references, I cant get any useful information. For the intermodule call, I try breakpoint the MessageBox but nothing is hit when the error MessageBox pop out.
After some online searching, I find some similar video that cracking a .NET program which give me some information that the .NET program can detect the debugger attach with isDebuggerAttach (or something).
So I try ILSpy, and it works.
From the code, you will get a if else statement:
private void button1_Click(object sender, EventArgs e)
{
string text = keyfield.Text;
if (text == "XOQIBwcLudyp6NG")
{
MessageBox.Show("nice, you did it");
Application.Exit();
}
else
{
MessageBox.Show("nope, thats not it");
}
}
I dont know if I am telling the points correctly or not, but this is my understanding until now
gogetablue on 8:32 PM 10/17/2024: what is the code to copy the file?
Tewel on 9:22 PM 10/21/2024: Done, Thank you
soutt9 on 1:32 AM 11/17/2024: XOQIBwcLudyp6NG | Line 21