LAXY on 2024-08-25 10:19:
[Click to reveal]XOQIBwcLudyp6NG
u can use simple obf
shadowleet on 2024-08-25 17:43:
[Click to reveal]shadowleet
shadowleet on 2024-08-25 17:43:
https://gofile.io/d/tZx1GF
SamoXcZ on 2024-08-26 10:10:
What's the password to them?
newcracker on 2024-08-27 02:02:
[Click to reveal]XOQIBwcLudyp6NG
0ya3um1 on 2024-08-30 19:08:
xdddd i wanted to type crackme instead of c
Nicole.exe on 2024-09-01 17:11:
[Click to reveal] 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 2024-09-01 21:12:
[Click to reveal]XOQIBwcLudyp6NG
nigga on 2024-09-05 03:41:
can someone explain me how to do this pleaase
id6zker on 2024-09-08 09:27:
[Click to reveal] 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 2024-10-15 04:39:
[Click to reveal]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 2024-10-17 20:32:
what is the code to copy the file?