Rust port of Ghidra's SLEIGH decompiler. This library allows you to decompile or translate machine code for multiple architectures.
SLEIGH is a language for describing the instruction sets of general purpose microprocessors, in order to facilitate the reverse engineering of software written for them. SLEIGH was designed for the GHIDRA reverse engineering platform and is used to describe microprocessors with enough detail to facilitate two major components of GHIDRA, the disassembly and decompilation engines.
Add the following to Cargo.toml:
sleigh = "*"
Create a decompiler and decompile bytecodes:
use sleigh::{Decompiler, X86Mode};
let mut decompiler = Decompiler::builder().x86(X86Mode::Mode32).build();
let code = b"\x01\xd8"; // ADD EAX, EBX
// Lift bytecodes into SLEIGH IL
let (len, pcodes) = decompiler.translate(code, 0x1000);
println!("{} {:?}", len, pcodes);
// Disasm bytecodes
let (len, insts) = decompiler.disassemble(code, 0x1000);
println!("{} {:?}", len, insts);
✔️ = Ready to Go!
🚧 = Working in Progress
Arch | Status |
---|---|
x86 | ✔️ |
x86_64 | ✔️ |
ARM(v4/5/6/7/8/thumb) | ✔️ |
AArch64 | ✔️ |
MIPS | 🚧 |
PowerPC | 🚧 |
AVR | 🚧 |
Dalvik | ✔️ |
JVM | ✔️ |
- Documentation
- Detailed disasm operands
- Detailed varnode
- Unit tests
This crate is under construction. Ping me if you find any bugs. Any PRs are welcomed!