Problem overiding the return address when performing a buffer overflow, what am I missing?
Playing around with probably the most basic buffer overflow attack there is on my raspberry pi, looks like this
#include <stdio.h>
#include <string.h>
int main(int argc, char *argv[]) {
char buf[256];
strcpy(buf, argv[… Continue reading Problem overiding the return address when performing a buffer overflow, what am I missing?