diff --git a/Phase 2/02 Binary Exploitation.md b/Phase 2/02 Binary Exploitation.md index 51a7474..f78ac58 100644 --- a/Phase 2/02 Binary Exploitation.md +++ b/Phase 2/02 Binary Exploitation.md @@ -157,14 +157,14 @@ Performing a search for every instruction with the structure above, we get So we get the hex values for the possible keybinds as `0x6c`, `0x70`, `0x77`, `0x73`, `0x61` and `0x64`. Converting them to ASCII leads to the following possible keybinds being discovered -| Hex | ASCII | -+------+-------+ -| 0x6c | l | -| 0x70 | p | -| 0x77 | w | -| 0x73 | s | -| 0x61 | a | -| 0x64 | d | +| Hex | ASCII | +|--------|-------| +| `0x6c` | l | +| `0x70` | p | +| `0x77` | w | +| `0x73` | s | +| `0x61` | a | +| `0x64` | d | # buffer overflow 0