Solutions PwnMyWorkShop!

Starting Point Initial Statement Donnez votre nom au binaire et voyez ce que vous pouvez en tirer ! nc ctf.woody.sh 2000 Hint: CRIE FORT Code: #include int print_flag() { FILE *fd = fopen("./flag.txt", "r"); char flag[32]; fgets(flag, 32, fd); printf("%s\n", flag); fclose(fd); return…

DamCTF - Cookie-Monster

Introduction This challenge was the first pwn challenge of the CTF Initial Statement: Do you like cookies? I like cookies. nc chals.damctf.xyz 31312 Getting started First thing I did was download the binary and check protections and try to run it. $ file cookie-monster cookie-monster: ELF 32-bit LSB executable,…