tag: blog

The most engaging Reverse Engineering challenge of my life

30 Mar, 2024 - 9 minutes
The initial pitch It started as a normal work-day morning, when my friend Alessio comes out of the blue and asked me to play some CTF. "My colleague sent me this VM challenge..." Challenge name: VeryMuch RE Description: Implementing my own VM - Can you check if I did it right? Milestones 15 minutes: player recognizes the implemented virtual machine 30 minutes: (the player) starts writing a disassembler 1 hour: (the player) has the whole program disassembled 1 hour and a half: (the player) understands the logic 2 hours and a half: (the player comes up with a) solution Later in the evening, I picked the challenge up.

Public Service Announcement: the server is gone

28 Jan, 2019 - 1 minutes
Unfortunately my m8 forgot to renew our micro-dedicated server. We got that as a Black Friday deal. ATM we can’t really afford to take another one, thus I will rely on Github. End of transmission

Hello World!

24 Aug, 2018 - 1 minutes
1 2 3 4 5 6 7 /* Welcome to my blog! */ #include <stdio.h> int main() { printf("hello, world!"); return 0; }