HackTheBox – TwoMillion Writeup

Categories: hackthebox

TwoMillion is a Linux box that features the old HackTheBox website. The first part of the challenge is to hack your way into getting an invite code (as it used to be on the old site). After getting the invite code we can create an account on the website and try to hack our way … Read More

OverTheWire – Bandit Writeup

Categories: overthewire

OverTheWire hosts wargames organized in levels. You need the flag from each level to access the next one. Bandit is the first wargame on the site aimed at beginners. You can check out the site at https://overthewire.org/wargames/ To follow along with the challenges and their descriptions you can go directly to https://overthewire.org/wargames/bandit/ Level 0 We … Read More

Making a CHIP-8 Emulator in C

Categories: programming

CHIP-8 is a simple virtual machine designed in the 1970s for creating games on early computers and gaming consoles. It is notable for its small instruction set and straightforward memory layout, making it suitable for beginners to emulation. Specifications Implementing Specifications CHIP-8’s index register and program counter can only address 12 bits, which is 4096 … Read More