Hello,
In this article I will describe how I solved the PE x86 – Xor Madness challenge from Root-Me
This challenge will ask you for a password and the password is also used to validate the flag. What makes this challenge interesting is that it only uses xor
, sub
, call
and ret
.
Here’s how I approached the challenge:
- Since the binary had a few function and some strings were in plain text, I tried to figure out the big picture and labeled all the function accordingly:
win
,lose
,check
and so on. - I’ve figured out that there are 6 stages, each stage tries to process a part of the password. The start function is also a stage and other stages are similar.
- Next, I’ve spend a few hours debugging this challenge and documenting everything it does in order to see what it wants.
To solve this challenge you need to know how the XOR operation works, please check that you know this before moving forward.
The behaviour of the challenge is simple, it computes an addr, let’s call this address SOLADDR, and it makes it point to the value 1. [SOLADDR] = 1
.
It takes a byte of the password you’ve gave and XORs it two times. The resulting value will be an address, we can call it PASSADDR. The trick is to look at how your password is XORed and make it equal to SOLADDR.
The function that will let you proceed to the next stage only does so when the location pointed to by PASSADDR has the value 1 assigned to it. This is stored into edx. edx = [PASSADDR]
.
The following function lets you proceed to the next stage if and only if EDX is 1:
|
|
We already know that EDX is set to [PASSADDR], which is EDX = *PASSADDR. Each stages performs this step.
In the main function, scanf scans for a maximum 63 characters (don’t trust anything you read, verify!) and stores the result in EDI, then it moved it into ESI and gets the first byte of the password_input into EBX.
|
|
EBX is then xored with a value, the first 3 bytes are just for show, we only care about the resulting last byte.
|
|
The next operations loads ESP into EBX, XORs them with the last resulting byte from the previous operation and saves it somewhere.
|
|
Note that EDX now contains the address that we control 19FD10, which we can call PASSADDR. We obtained 19FD10 after running the program and giving it 0
as the input.
The next piece of code computes the SOLADDR by XORing ESP with two hardcoded values and makes it point to the value of 1.
|
|
Now, the code assigns the value pointed by PASSADDR to EDX. EDX = [PASSADDR]
.
|
|
This is the only information you need to know to solve this challenge. You can now find the password by statically analyzing the next stages.
Thanks for reading!