aboutsummaryrefslogtreecommitdiff
path: root/shellcode/simple2.c
diff options
context:
space:
mode:
Diffstat (limited to 'shellcode/simple2.c')
-rw-r--r--shellcode/simple2.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/shellcode/simple2.c b/shellcode/simple2.c
new file mode 100644
index 0000000..341b2de
--- /dev/null
+++ b/shellcode/simple2.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int _start(void) {
+ while (1) {
+ //printf("Shellcode!\n");
+ }
+ return (0);
+}