Picoctf 2020 - Part 1: Guessing Game 1
This year I decided to compete in the picoCTF 2020 Mini-Competition as my first CTF. This is the first post in a series covering the tasks of the competition. The task The shown task can be found here The code int main ( int argc , char ** argv ){ int res; printf ( "Welcome to my guessing game! \n\n " ); while ( 1 ) { res = do_stuff (); if (res) { win (); } } return 0 ; } The program consists of a…