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

Blinding AI Scanners with CMOV: Polymorphic CFG Breakers in Assembly

Static analysis tools like Ghidra and AI-driven EDRs rely on branching instructions to map malicious behavior. Discover how replacing JMPs with CMOV instructions creates a ‘Flat Graph’ illusion that completely blinds heuristic engines.

April 15, 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

VESQER: A DPCM+RLE Hybrid Compressor in Pure x64 Assembly

I accidentally reinvented a 1970s telecom algorithm at 5 AM while trying to shrink C2 payloads. Here’s how it works, why it’s effective, and a full walkthrough of the x64 Assembly implementation.

April 11, 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