summaryrefslogtreecommitdiff
path: root/elf
diff options
context:
space:
mode:
Diffstat (limited to 'elf')
-rwxr-xr-xelf/bufferflowbin0 -> 21264 bytes
-rw-r--r--elf/hello.c6
2 files changed, 6 insertions, 0 deletions
diff --git a/elf/bufferflow b/elf/bufferflow
new file mode 100755
index 0000000..c51098e
--- /dev/null
+++ b/elf/bufferflow
Binary files differ
diff --git a/elf/hello.c b/elf/hello.c
new file mode 100644
index 0000000..0aa057e
--- /dev/null
+++ b/elf/hello.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+void main(void)
+{
+ char * hello="Hello World !\n";
+ printf (hello);
+}