level02: walkthrough done

This commit is contained in:
0x35c 2025-05-07 13:12:04 +02:00
parent 69275059ec
commit 8d0be75a66
2 changed files with 19 additions and 1 deletions

View File

@ -7,7 +7,7 @@ int main(void)
char buff[96];
int v5;
char password[48];
char s[96]; // buffer located at the 28th element on the stack
char s[96];
int v8;
int len;
FILE *stream;

18
level02/walkthrough Normal file
View File

@ -0,0 +1,18 @@
# Level02
Using ghidra, we can decompile the code and see that it reads the password through a file stream and stores it in a buffer.
Then, there are 2 calls to `fgets()`, the first one being used as the format string to `printf()` later on.
We can use this to print whatever we want (e.g dump the stack, change variables).
Our goal here will be to change the address of the second buffer (`buff` in the code) to the GOT value of `exit()`. This will then allow us to write whatever we want at this address when the second `fgets()` will be called (here, the address of the `system()` call).
To do so, we will first dump the stack to know where the buffer is located.
Let's print something basic like `print("AAAA" + "%x"*20)`. We can see that 0x41414141 (= "AAAA") is printed at the 8th position in the stack.
Now that we know where our buffer is located on the stack, let's exploit printf.
By using the `%n` flag, we can change the value of a variable to the length of what's been printed before (here, the GOT address of `exit()`).
To do this, we just need to print 4196997 (the address of the `system()` call) using `printf()`'s padding feature. But since it will be executed at the call to `printf()`, we first need to modify the value of `buff` (the buffer at the 8th position on the stack) in the 2nd `fgets()`.
All we have to do is put the GOT address of the `exit()` instruction in `buff`.
Here is the command:
`(python -c 'print("%4196997p" + "%8$n" + "\n" + "\x28\x12\x60")'; cat) | ./level02
`