a simple ever evolving set of crackme's to learn reverse engineering
|
|
||
|---|---|---|
| v1-strcmp | ||
| v2-math | ||
| v3-modulo | ||
| v4-xor | ||
| .gitignore | ||
| README.md | ||
Crackme
A simple evolving set of crackme's for me to learn reverse engineering by analyzing my own code compiled to assembly.
Writeups
For each crackme I reversed I do a writeup discussing how I did it and explain stuff for future reference.
these can be found in the root of each sub folder for each crackme.
programs
- v1: basic password checker with plaintext hardcoded password
- v2: a program that requires a number from the user to be let in, here I had to find an algoritm
- v3: similar to v2 this one also requires a number but with modulo instead
- v4: basic password checker like v1 but with xor encoded strings instead.