diff options
Diffstat (limited to 'elf')
| -rw-r--r-- | elf/bufferflow.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/elf/bufferflow.c b/elf/bufferflow.c new file mode 100644 index 0000000..924c3ae --- /dev/null +++ b/elf/bufferflow.c @@ -0,0 +1,28 @@ +#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; +} + |
