Random OSX Crackmes Writeups
Here are some writeups for OSX crackmes randomly taken from reverse.put.as. If you haven’t done them and want to try them, of course this will spoil you. They are mostly very easy serial checkers, so let’s try to do it with only static analysis.
I will not give the file as they are all available at reverse.put.as.
Crackme #1
Crackme #1 is an i386 Mach-o application that asks for a name and a serial. Let’s write a keygen in python for it.
In the ‘validar’ function, we find that both fields are recovered when the user presses the button. Then the program checks that none of the fields are empty, that the name is more than 4 characters long and that the serial is 15 chars long.
It will then get the last two characters of the serial, get the int value and check that it is equal to the name’s length.
It then verifies that serial[10] == 'k' && serial[11] == 'n' && serial[12] == 'k'
.
Here are the value of the hardcoded strings used in the comparison:
And finally, it computes the SHA1 hash of the name, crop it to the first 10 characters, and check that the serial’s first 10 chars and the hash match:
Here is a simple python3 keygen:
Pie
Pie is a key checker from the MacSerialJunkies 2010 Contest. It asks for a name and a serial for registration. Let’s go for another keygen.
In the function verifySerialandName
(yes, I think that’s the one we
need to look at), the programs gets the two fields and check the serial’s length
first. It must be equal to 16.
It then calculate the MD5 sum of the 6 first characters of the serial.
This will be compared to a hardcoded hash which is equal to
66EAD6FE7CBE7987B7C4B1A1EED0E5A5
. A quick google search for this hash yields
this page and the corresponding string:
KRACK-
.
It then verifies that the 14th character of the serial is ‘F’.
The next step will be to compute the MD5 sum of the name, get the 7 first chars of its hexdigest, and compare them to the 7 chars long substring of the serial beginning at index 6.
The last step is comparing the two last characters of the serial and ‘BC’, which is a hardcoded string used earlier for encoding conversions.
Here is the keygen for this crackme:
FiveNiner
This one from Corruptfire.com (which seems down) is quite straightforward too.
It asks only for a serial:
This serial should be composed of 4 words separated with dashes, like
XXX-XXX-XXX-XXX
.
It then checks that the first word is equal to FN10
.
Then, it takes the second word, pass it into the sha1
function (which is in
reality a hidden MD5), crops it to take the 6 first chars, and compare it to the
third word.
It finally takes the three first words, join them with dashes, appends another dash at the end, and MD5 it. The 6 first chars of the hash are finally compared to the final word.
Here is the keygen for this challenge:
DeadSimple
This one is, indeed, really simple. It asks for a name and a serial.
The serial must be composed of two ints separated by a dash. The second component must be the square of the first one…
And the first component must be the sum of every char in the name:
Here is a “keygen”, but it’s almost useless to have one:
I may do more, but I will first try to find some a little bit more complicated. If you have any, please feel free to suggest them on Twitter or by mail.