pwncollege
DojosLeaderboardCommunity
Back to computing-101

The Stack

computing-101
0/4 challenges completed

So far, you've been reading from memory addresses that we set up for you. But your program already has a region of memory ready to go: the stack. The stack is pointed to by the rsp register, and it contains useful data about how your program was launched and accumulates other data as the program executes. Let's explore it!

1
The Stack
2
Stack Offsets
3
Program Arguments on the Stack
4
Popping From the Stack