Client-side Demo: Buffer Overflow
Demo
For this demo, your goal is to reach the function win, located at the address 0x402000.
The C code of the assembly code below would be roughly like so:#include "stdio.h"
void win(){
// You win by calling this function.
}
void main(){
vuln();
}
void vuln(){
char arr[0x10];
gets(arr);
return;
}
Stack
Registers
Functions
Controls
Input
You can change the value of the input by clicking on the bytes.