// Comparison

Reversing vs The Ghidra Book: Which Should You Read?

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

Intermediate
4/52005
Reversing

Secrets of Reverse Engineering

Eldad Eilam

The book that taught a generation how software actually looks once you strip away the source. Still the clearest on-ramp to thinking in assembly, even with dated tools.

Intermediate
4/52020
The Ghidra Book

The Definitive Guide

Chris Eagle, Kara Nance

The reference manual for the NSA's open-source disassembler, written by the author of The IDA Pro Book. Exhaustive on the tool, thinner on the craft of reversing itself.

Read this if

People who want to genuinely understand reverse engineering from first principles rather than just running a disassembler and hoping. Self-taught practitioners filling in the gaps under their tooling.
Practitioners switching from IDA or starting on Ghidra who want full coverage of the GUI, the decompiler, scripting, and the extension API.

Skip this if

Anyone who wants a modern, hands-on lab course. Skip this if you expect Ghidra walkthroughs or current malware samples; the toolchain here is OllyDbg and IDA-era and the OS examples are Windows XP.
Skip this if you want a tutorial on how to actually reverse-engineer malware. It documents the tool deeply but rarely walks you through a real target end to end.

Key takeaways

  • Reverse engineering is a disciplined reading skill, not magic; the fundamentals of how compilers, stacks, and calling conventions work outlast any tool.
  • The most durable part of the book is the bridge from high-level constructs to their assembly fingerprints, which you will recognize for the rest of your career.
  • The Windows-internals, copy-protection, and anti-reversing material is a snapshot of 2005 and should be treated as historical context, not current practice.
  • Ghidra's collaborative project model and headless analyzer are genuine advantages over single-user tools, and the book covers both properly.
  • The decompiler is the reason to use Ghidra, and the chapters on reading and improving its output are the most useful in the book.
  • Real power comes from scripting and writing extensions; budget time for the Java/Python API chapters because that is where the tool stops being just a GUI.

How they compare

Reversing and The Ghidra Book are both rated 4/5 in our catalog. Pick by topic preference and reading style rather than by rating.

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

Reversing and The Ghidra Book both cover Reverse Engineering, so reading them in sequence reinforces the same material from different angles.

Keep reading

Related topics