// Comparison

Practical Reverse Engineering vs Windows Internals, Part 1: Which Should You Read?

Two cybersecurity books on Windows Internals, compared honestly: who each is for, what each does best, and which to read first.

Advanced
4/52014
Practical Reverse Engineering

x86, x64, ARM, Windows Kernel, Reversing Tools, and Obfuscation

Bruce Dang, Alexandre Gazet, Elias Bachaalany

A working reverser's textbook from three Microsoft / Quarkslab veterans, covering the architectures and toolchain you'll actually meet on real targets, including the Windows kernel and modern obfuscation patterns.

Advanced
5/52017
Windows Internals, Part 1

System architecture, processes, threads, memory management, and more

Pavel Yosifovich, Alex Ionescu, Mark Russinovich, David Solomon

The canonical Microsoft Press reference on Windows internals: how processes, threads, memory and system services are actually implemented in the modern Windows kernel. User-mode focus in this volume.

Read this if

Reverse engineers transitioning from "I can read disassembly" to "I can audit a Windows kernel driver." The architecture-first companion to Practical Malware Analysis.
Windows malware analysts, kernel reverse engineers, OS-level developers, and anyone whose security work requires understanding the platform at depth. Russinovich's name is on the cover for a reason; this is the canonical reference for what Windows actually does.

Skip this if

Beginners with no assembly background, or readers focused exclusively on Linux/userland. The book is heavy on Windows internals and assumes you'll do the exercises in WinDbg.
Beginners or readers without programming background. The book is dense, lengthy, and assumes Win32 API fluency at minimum. Read after Practical Reverse Engineering, not before.

Key takeaways

  • x86, x64, ARM, kernel-mode debugging, and anti-RE techniques in a single coherent volume; nothing else competes for breadth.
  • The kernel debugging chapters are the practical introduction the official Windows Internals book never quite delivers for security audiences.
  • Anti-RE coverage (obfuscation, packing, anti-debug, virtualization-based protection) is the bridge to modern malware analysis that PMA consciously skips.
  • Process, thread, and memory management on Windows have specific shapes that don't transfer from Linux mental models; the chapters on each are the canonical authority.
  • Object Manager and the kernel handle table are the two concepts most malware analysts wish they'd understood earlier; the book is where to learn them.
  • User-mode security boundaries (token, ACL, integrity levels, AppContainer) are the layer where most modern Windows exploits operate; the book maps the surface.

How they compare

We rate Windows Internals, Part 1 higher (5/5 against 4/5 for Practical Reverse Engineering). For most readers, that means Windows Internals, Part 1 is the primary pick and Practical Reverse Engineering is a useful follow-up.

Both books target advanced-level readers, so the choice is about topic, not difficulty.

Practical Reverse Engineering and Windows Internals, Part 1 both cover Windows Internals, so reading them in sequence reinforces the same material from different angles.

Keep reading

Related topics