aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/buffer-overflow/buffer-overflowbin8520 -> 0 bytes
-rw-r--r--examples/buffer-overflow/buffer-overflow.c2
-rw-r--r--examples/command-injection/command-injection.c12
-rw-r--r--examples/xss/comments.dbbin8192 -> 8192 bytes
4 files changed, 13 insertions, 1 deletions
diff --git a/examples/buffer-overflow/buffer-overflow b/examples/buffer-overflow/buffer-overflow
deleted file mode 100755
index c518559..0000000
--- a/examples/buffer-overflow/buffer-overflow
+++ /dev/null
Binary files differ
diff --git a/examples/buffer-overflow/buffer-overflow.c b/examples/buffer-overflow/buffer-overflow.c
index 96f0ee8..4fcce8c 100644
--- a/examples/buffer-overflow/buffer-overflow.c
+++ b/examples/buffer-overflow/buffer-overflow.c
@@ -6,7 +6,7 @@ int main(void)
char buf[16];
int ok = 0;
- printf("Type admin password: \n");
+ printf("Type admin password: ");
gets(buf);
if (strcmp(buf, "pass123")) printf("\nWrong password!\n");
diff --git a/examples/command-injection/command-injection.c b/examples/command-injection/command-injection.c
new file mode 100644
index 0000000..914b32e
--- /dev/null
+++ b/examples/command-injection/command-injection.c
@@ -0,0 +1,12 @@
+#include <stdlib.h>
+#include <string.h>
+
+int main(int argc, char **argv)
+{
+ char cmd[strlen(argv[1]) + 6];
+ strcpy(cmd, "echo ");
+ strcat(cmd, argv[1]);
+ system(cmd);
+
+ return 0;
+}
diff --git a/examples/xss/comments.db b/examples/xss/comments.db
index 32114c2..2c1a491 100644
--- a/examples/xss/comments.db
+++ b/examples/xss/comments.db
Binary files differ