Skip to content

Commit f6fb234

Browse files
committed
Fixes ctfs#725 Correcting the address of the username
1 parent 056c98d commit f6fb234

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ekoparty-pre-ctf-2015/pwn/login/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ gdb-peda$ x/20wx $rbp-0xa8
111111
0x7fffffffe3a8: 0xffffe508 0x00007fff 0xf7a251a8 0x00007fff
112112
```
113113

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

0 commit comments

Comments
 (0)