summaryrefslogtreecommitdiff
path: root/elf/bufferflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/bufferflow.c')
-rw-r--r--elf/bufferflow.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/elf/bufferflow.c b/elf/bufferflow.c
deleted file mode 100644
index 924c3ae..0000000
--- a/elf/bufferflow.c
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-
-int main(void)
-{
- int pass=0;
- char buff[10];
-
- printf("\nDonne le mot de passe pour avoir le flag : \n");
- scanf("%s",buff);
-
- if(!strcmp(buff,"s3cr3t"))
- {
- pass = 1;
- }
-
- if(pass)
- {
- printf ("\nBien joué !\nVoilà ton flag\n");
- }
- else
- {
- printf("\nMauvais mot de passe.\nBye\n");
- }
-
- return 0;
-}
-