diff -r 9c968d0de9a0 -r 2ce98ee39990 Attic/programs/C3.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Attic/programs/C3.c Sat Oct 04 13:17:18 2014 +0100 @@ -0,0 +1,19 @@ +#include +#include + +// simple program used for a bufferflow attack +// +// for installation notes see C0.c +// +// can be called with +// +// ./C3 `./args3` + +main(int argc, char **argv) +{ + char buffer[80]; + + strcpy(buffer, argv[1]); + + return 1; +}