Here is a main "problem". Code:
#include <stdio.h>
#include <string.h>
int main(int argc, char **argv){
char buf[10];
strcpy(buf,argv[1]);
printf("%s",buf);
return 0;
}
I'm trying overflow stack like that:
gcc main.c -o runMe
./runMe "$(printf '%.sA' {1..15})"
But output is clear. No overflow. So ... what the heck???