Buffer Overflow segfault even with executable stack
I’m trying to overflow and inject code into a buffer in the following program
// vulnerable.c
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char *argv[]) {
char buf[1024];
gets(buf);… Continue reading Buffer Overflow segfault even with executable stack