Advanced Buffer Overflow #7


/* abo7.c                                       *
 * specially crafted to feed your brain by gera */

/* sometimes you can,       *
 * sometimes you don't      *
 * that's what life's about */

char buf[256]={1};

int main(int argv,char **argc) {
	strcpy(buf,argc[1]);
}

{Previous} {index} {Next}