You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`ASLR` is activated in the host therefore this `libc` address changes in every program `restart`. However we can always get a libc address from a fixed offset `[RSP + 8]`
207
+
-`ASLR` is activated in the host therefore this `libc` address changes in every program `restart`. However we can always get a libc address from a fixed offset (`x/gx $rsp + 56`).
208
208
- We can't `leak` the `canary` value because there are no `puts()` / `printf()` after the last `scanf()`.
209
209
- The binary has partial RELRO, allowing us to overwrite entries in the .GOT.
210
210
- Additionally, since this is a non-PIE binary, the .GOT address is fixed.
0 commit comments