RSSAmplifier

Blog

eddy.work

Just read a post and see.

eddy.workRSS feed ↗2 posts

Latest posts

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…

justCTF 2020 - reklest Writeup

The task The shown task can be found here Linked resources The tasks links to a webpage and a binary. The linked page does contain some instructions: Download the binary Run the binary Wait for binary Everything will be fine It also tells us that it worked on their infrastructure. When we try following the instructions we immediately reach a stopper: file reklest reklest: Mach-O 64-bit executable…