Why is this even a thing and isn't opt-in?
I dread the idea of starting to get notifications from them in my own projects.
void nobody_calls_me(const char *stuff) { char *a, *b; const size_t c = 1024; a = calloc(c); if (!a) return; b = malloc(c); if (!b) { free(a); return; } strncpy(a, stuff, c - 1); strcpy(b, a); strcpy(a, b); free(a); free(b); }
reply
Flashback of writing exploits for these back in high school.
And even if not, the motivation is building a reputation as a security “expert”.
Why is this even a thing and isn't opt-in?
I dread the idea of starting to get notifications from them in my own projects.