Ultimation on 2019-01-09 15:58:
Finished - Keygen solution in c#
---- Code Begin -----
var key1 = 0;
var uname = Environment.UserName;
Console.Write("Enter name:");
var name = Console.ReadLine();
foreach (var c in uname)
{
key1 += (byte)c +100000;
}
foreach (var c in name)
{
key1 += (byte)c + 100000;
}
key1 += 0x7A69;
Console.WriteLine($"Key: {key1}");
------ Code End ------
reverflotz on 2019-02-15 19:52:
what is the password for the zip file ???
reverflotz on 2019-02-15 19:54:
Never mind I read the faq
madlogik on 2019-02-22 03:01:
Changing the push data from "Try Again" to the serial makes a bad try a keygen straight to the messagebox ;)
(In the try again change the push from : PUSH 405034 to: PUSH 19F744 )
madlogik
1232564
zaturion on 2019-02-26 18:28:
Hey guys, this was my first CrackMe I solved and I wondered about your comments because they are all wrong, or atleast partially wrong.
The solution is:
1. convert your Windows-Username to ASCII-Code, sum them up and add (X*100000) where X is the usernames length in characters.
2. Repeat Step 1. for the name you have chosen in the crackme.exe
3. Add both sums together and add "31337"
Thanks for the riddle, was really fun and took me some hours as I just began researching reversing :)
thoonline on 2019-03-08 15:12:
zaturion - agree with you.
TheBrokenWasp on 2019-06-11 19:33:
How come everybody make keygens? I mean I just found and removed the key cheek so I can type in anything I want :S
TheBrokenWasp on 2019-06-11 19:38:
Nevermind I just read the faq... Where would I find programs designed to be patched?
You must be logged in to submit a writeup
Solution by Strydr01 on 2019-01-05 22:43: This is my first solution submission. Hopefully it's in correct format.