/* stack3-stdin.c * * specially crafted to feed your brain by gera */ #include int main() { int cookie; char buf[80]; printf("buf: %08x cookie: %08x\n", &buf, &cookie); gets(buf); if (cookie == 0x01020005) printf("you win!\n"); }