In this post, we’ll explore what Dede is, how it works, why it was revolutionary, and where it stands in 2025. Dede is a static analysis tool specifically designed for binaries compiled with Borland Delphi (versions 2 through 7, and partially 2005-2010). Unlike a traditional disassembler (like IDA Pro or Ghidra) that shows raw x86 assembly, Dede understands Delphi’s Form DFM resources , RTTI (Run-Time Type Information) , and VCL (Visual Component Library) structures.
| Problem | Why It Fails | |---------|---------------| | (XE7, 10.x, 11.x, 12.x) | RTTI format changed; DFM compression (GZip) and 64-bit compilation break Dede’s parsers. | | Obfuscators (e.g., ASProtect, Themida) | Dede requires a raw, unpacked binary. It cannot handle packed or encrypted sections. | | No .NET support | Only native x86 Delphi. | | Outdated UI | Runs poorly on Windows 10/11 without compatibility mode. | | False positives | Sometimes misidentifies methods due to leftover RTTI from unused units. | Delphi Decompiler Dede
Load the EXE into Dede. Step 2: The "Forms" tab instantly shows MainForm contains TButton , TEdit , TListBox . Step 3: Click on Button1 . Dede lists its OnClick handler at address 0x0042A1B0 . Step 4: Switch to "Procedures", locate TMainForm.Button1Click , and view the disassembly: In this post, we’ll explore what Dede is,
If you’ve been in the Windows reverse engineering or legacy software maintenance space for more than a decade, one name still echoes through forums and tool libraries: Dede . | Problem | Why It Fails | |---------|---------------|