Easy_firstCrackme-by-D4RK_FL0W |
nice refresher, thank you very much! |
Sh4ll10 |
Many thanks, had a blast with this. The %p made me waste a lot of time haha |
easy keyg3nme |
The key validation appears to be hardcoded; the validation function does a simple check
against the input to see if it equal 0x4c7, which is 1223 in dec. The application is validates both
hex and decimal input.
My keygen for this is simply the following one-liner, using python:
python -c "print int('0x4c7', 16)" | ./keyg3nme
Thanks ezman, this was fun! |
Sh4ll1 |
Fun simple challenge to get things started. Many thanks! |