Skip to content

Commit

Permalink
Fixes #725 Correcting the address of the username
Browse files Browse the repository at this point in the history
  • Loading branch information
pawlos committed Aug 27, 2017
1 parent 056c98d commit f6fb234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ekoparty-pre-ctf-2015/pwn/login/README.md
Expand Up @@ -111,7 +111,7 @@ gdb-peda$ x/20wx $rbp-0xa8
0x7fffffffe3a8: 0xffffe508 0x00007fff 0xf7a251a8 0x00007fff
```

We see that our username size begins at `$rbp-0xd0` (`0x7fffffffe340`), followed by the username at `$rbp-0xcc` (`0x7fffffffe340`).
We see that our username size begins at `$rbp-0xd0` (`0x7fffffffe340`), followed by the username at `$rbp-0xcc` (`0x7fffffffe344`).
Right after that, we see our password size at `$rbp-0xbc` (`0x7fffffffe354`), followed by the password at `$rbp-0xb8` (`0x7fffffffe358`).
Finally, we see the `showflag` value at `$rbp-0xa8` (`0x7fffffffe368`).

Expand Down

0 comments on commit f6fb234

Please sign in to comment.