Table of Contents

IronForgeCyber

Courses

Resources

Blog

Log In

Avatar


IronForgeCyber

© 2026 IronForgeCyber. All rights reserved.

  1. courses
  2. reverse-engineering
  3. Home

Reverse Engineering

Reverse Engineering, also written as RE and sometimes shorted to rev, decomposes a binary to a C-level to understand how it works. This skill is very important and goes hand in hand with binary exploitation.

In reverse engineering challenges, software decompiles the binary into C code. The most common software to use is:

  • Ghidra - Free, open-source, and super popular
  • IDA Pro - Paid, but has a free version
  • Binary Ninja - Paid, but has a free version

Once you have the C code, it's a lot easier to understand what is happening.

The primary challenge behind reverse engineering challenges is that the program intentionally obfuscates the flag and then validates your input against the obfuscated code. Solving this involves reversing this obfuscation process, which results in the flag in raw bytes.

This can often be a challenging process and is hard to study for. Many techniques undergo various reversing challenges, and covering them all is impossible. To this day, I find myself struggling at the more advanced CTF reversing challenges because they're just hard.

This section will cover the basics of reverse engineering to provide an expectation of your base knowledge and teach you how to use various decompiler software.