From af6e84b5430bf275ac6574cb66cbf08c4ca2cb2a Mon Sep 17 00:00:00 2001 From: lucky-vers Date: Sat, 4 Nov 2023 23:43:10 +0530 Subject: [PATCH] Fix table --- Phase 2/02 Binary Exploitation.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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