## https://sploitus.com/exploit?id=FE2087A9-A05C-5ADF-8221-D2C95655E86C
# Win32 Exploit Dev Series: Vol. 1 (Vulnserver)
This repository marks the start of a structured series documenting my exploit development journey, focus areas, and technical proofs-of-work. Volume 1 focuses on standard x86 memory corruption, using Vulnserver to build out a clean portfolio of functional exploit scripts written completely from scratch.
Rather than looking at these as isolated exercises, this series documents the systematic execution of different memory exploitation techniques under varying constraints.
## Volume 1 Mechanics
* **TRUN (Direct EIP Overwrite):** Baseline workflow. Fuzzing, establishing precise cyclic pattern offsets, and utilizing a direct `JMP ESP` sequence.
* **GMON (SEH Hijacking):** Handling Structured Exception Handling. Weaponizing a `pop pop ret` sequence to execute short forward jumps past the SEH structure.
* **KSTET (Restricted Buffer Constraint):** Solving memory space limitations. Managing a heavily restricted buffer size (under 100 bytes) by engineering a multi-stage execution vector to successfully stage and trigger the final payload.