Basics of pwn: About GOT and PLT

2020-01-05

GOT stands for Global Offset Table. It holds sections of addresses of functions that are dynamically liked. Most binaries usually don’t include every function to reduce the binary size.

Read More

Basics of pwn: Stack

2020-01-03

Key concept

stack grows down to lower memory addresses. (00000000~ffffffff)

The stack is simply an area in RAM that was chosen to be the stack.

Read More