From ab03754617b30c830ce3d0324da7ef6b6887094e Mon Sep 17 00:00:00 2001 From: jerome Date: Tue, 1 Oct 2024 10:39:52 +0000 Subject: bufferflow.c --- elf/bufferflow.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 elf/bufferflow.c (limited to 'elf/bufferflow.c') 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 +#include + +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; +} + -- cgit v1.2.3