Timed Noise: LCG-Based Jitter in x64 Assembly

Fixed-interval sleeps make system behavior predictable. Break that pattern with LCG-based jitter — combine rdtsc entropy with LCG scrambling and deliver randomized delays via nanosleep.

April 20, 2026 · JM00NJ

Evasion Techniques in Pure x64 Assembly: SROP and Zero-Copy Injection

Combining SROP with Syscall 311 provides a stealthy way to load shellcode. Learn how to hide syscalls and manipulate context while surviving the debugging hell of unnoticeable opcodes.

April 13, 2026 · JM00NJ

Introduction to Position Independent Code (PIC) Architecture

Break free from compiler constraints. Explore how to write Sectionless x64 Assembly, manipulate the stack for dynamic Read-Write (R-W) memory, and build reliable, position-independent foundations from scratch.

April 3, 2026 · JM00NJ

Building a Reverse Shell in x86-64 Assembly

Learn how to chain socket creation, connection, file descriptor redirection, and process execution to build a functional reverse shell entirely in x86-64 assembly using PIC architecture.

April 3, 2026 · JM00NJ

Defying Python: Building a Bare-Metal HTTP Server in x86_64 Assembly

Throw away python -m http.server. Discover how to build a bare-metal web server from scratch using x64 Assembly, featuring zero-copy file transfers and manual IP parsing.

March 29, 2026 · JM00NJ