programs/C3.c
changeset 198 2ce98ee39990
parent 197 9c968d0de9a0
child 199 20af800ce736
--- a/programs/C3.c	Sat Oct 04 12:46:04 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-#include<stdio.h>
-#include<string.h>
-
-// 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;
-}