killchain-compendium/Exploits/Binaries/gdb CheatSheet.md

9 lines
112 B
Markdown
Raw Normal View History

# GDB CheatSheet
## Cast a register value
* Cast the content of a register to char
```sh
p *(char **)$rax
```