Process Memory
Motivation: Memory Permission
Memory Segments
ProcessesEndianness
vmmap

Reference
Last updated

Last updated
//hello_world.c
#include <stdio.h>
void main()
{
puts("hello, world\n");
}gcc hello_world.c -o hello_world$ gdb hello_world
pwndbg> b puts
pwndbg> r
pwndbg> vmmap