MANUAL ANALYSIS: VARIABLES
gef➤ x/s 0x402000
0x402000: "Hello!"
* this is useful for examining upcoming commands or what's being moved
- if the Size or Format isn't specified, it will default to the last one we used
* use the following to perform manual analysis of values in registers and addresses
- format: x/FMT ADDRESS
- ADDRESS is the address or register to be examined
- FMT refers to the examine format
- FMT parts
- count: is the number of times to repeat the examination 2, 3, 10
- format representation: x(hex), s(string), i(instruction)
- size of memory to examine: b(byte), h(halfword), w(word),
g(giant, 8 bytes)
Last updated