Exploit Development

Hands-on exploit development, foundational to advanced — stack overflows, SEH, ROP, shellcoding, and modern mitigations, each built and broken in the lab. Follow it top to bottom — foundational first (22 tutorials).

Exploit DevelopmentWhat is Exploit Development?To build a comprehensive understanding of what exploit development is, its goals, classifications, and how attackers leverage vulnerabilities to hijack program execution.…Apr 25, 2025 · 12 min readRead →Exploit Developmentx86 and x64 Assembly from ScratchTo gain a deep, foundational understanding of how x86 and x64 assembly work, from CPU registers and calling conventions to memory addressing…Apr 25, 2025 · 5 min readRead →Exploit DevelopmentSetting Up Your Exploit Development Lab (VMs, Debuggers, Tools)Learn to build a fully isolated Windows exploit development lab with two VMs, WinDbg kernel debugging, x64dbg, mona.py, boofuzz, and vulnerable targets…Jun 19, 2026 · 12 min readRead →Exploit DevelopmentWinDbg Crash Course: Navigation, Commands, and Workflow for Exploit DevsLearn to drive WinDbg from first principles - attach to targets, read access violations, master every breakpoint type, and use Time Travel…Jun 19, 2026 · 10 min readRead →Exploit Developmentx86 and x64 Calling Conventions: cdecl, stdcall, fastcall, and System VCalling conventions dictate exactly where return addresses and arguments sit in memory. This tutorial breaks down cdecl, stdcall, fastcall, Microsoft x64, and…Jun 19, 2026 · 11 min readRead →Exploit DevelopmentUnderstanding the Stack: Frames, Prologue/Epilogue, and Stack LayoutLearn how x86 and x64 Windows stack frames are structured - from EBP chains and shadow space to prologue/epilogue sequences - and…Jun 19, 2026 · 11 min readRead →Exploit DevelopmentClassic Stack Buffer Overflow: Smashing the Stack on WindowsMaster the classic stack buffer overflow on Windows x86: corrupt the saved EIP, pivot through a JMP ESP trampoline, and understand how…Jun 19, 2026 · 13 min readRead →Exploit DevelopmentFinding the EIP Offset: Pattern Creation and Cyclic PatternsMaster EIP offset discovery using De Bruijn cyclic patterns and tools like msf-pattern_create, mona.py, and pwntools. A repeatable, tool-agnostic workflow for x86…Jun 19, 2026 · 10 min readRead →Exploit DevelopmentBad Characters, Null Bytes, and Restricted Character SetsDiscover why bad characters like null bytes corrupt shellcode in buffer overflows, how to enumerate restricted character sets with mona.py, and how…Jun 20, 2026 · 11 min readRead →Exploit DevelopmentWriting Your First Shellcode: x86 Reverse Shell from ScratchLearn to hand-craft a Windows x86 reverse shell in NASM - resolving APIs via PEB walk and PE export parsing, initialising Winsock,…Jun 20, 2026 · 11 min readRead →Exploit DevelopmentWriting x64 Shellcode: Differences, Shadow Space, and Register ConventionsLearn the ABI-level differences between x86 and x64 Windows shellcode, including shadow space, register conventions, PEB walking via GS:[0x60], and export table…Jun 20, 2026 · 15 min readRead →Exploit DevelopmentPosition-Independent Code: Writing PIC Shellcode Without Hardcoded AddressesDiscover how Windows shellcode achieves position independence by walking the PEB loader chain, hashing export names with ROR-13, and eliminating null bytes…Jun 20, 2026 · 13 min readRead →