When a Py/JS Brain Writes C++: A UAF Bug Story
June 17, 2025
TL;DR After two weeks or so of writing in high-level programming langauges such as JS and Python, my brain adapated to a similar coding style when switching back to C++, which …
I specialize in memory corruption, system internals and low-level software security.
This site contains vulnerability research, exploit-development notes, debugging tools, and open-source security projects.
June 17, 2025
TL;DR After two weeks or so of writing in high-level programming langauges such as JS and Python, my brain adapated to a similar coding style when switching back to C++, which …
July 28, 2024
Updated 08/07/2024 I received a lot of criticism suggesting I was trying to prove Tavis Ormandy wrong, which is not true. In fact, my entire video and post aim to delve into and …
July 14, 2023
This post has been ported from Darkwaves InfoSec blog. Introduction When it comes to dynamic analysis on Windows, WinDBG is our option of choice. The debugger provides several …
December 22, 2021
When it comes to handle exceptions in programming, we are all familiar with try/catch and it’s other variant syntax sugar. For example below is a divide by zero error raised as an …