Reverse engineer Rust-compiled malware using IDA Pro and Ghidra with techniques for handling non-null-terminated strings, crate dependency extraction, and Rust-specific control flow analysis.
cybersecurity
malware-analysis
rust
reverse-engineering
malware-analysis
ghidra
ida-pro
binary-analysis
rust-malware
1.0
mahipal
MIT
Reverse Engineering Rust Malware
Overview
Rust has become increasingly popular for malware development due to its cross-compilation, memory safety guarantees, and the complexity it introduces for reverse engineers. Rust binaries contain the entire standard library statically linked, producing large binaries with extensive boilerplate code. Key challenges include non-null-terminated strings (Rust uses fat pointers with pointer+length), monomorphization generating duplicated generic code, complex error handling (Result/Option unwrap chains), and unfamiliar calling conventions. Decompiling Rust to C produces unhelpful output compared to C/C++ binaries. Tools like Ghidra scripts for crate extraction, and training focused on Rust-specific patterns (2024-2025) help address these challenges. Notable Rust malware includes BlackCat/ALPHV ransomware, Hive ransomware variants, and Buer Loader.
Prerequisites
IDA Pro 8.0+ or Ghidra 11.0+
Rust toolchain for reference compilation
Python 3.9+ for helper scripts
Understanding of Rust memory model (ownership, borrowing)
Familiarity with Rust string types (String, &str, CString)
Practical Steps
Step 1: Identify and Parse Rust Binary Metadata
#!/usr/bin/env python3"""Analyze Rust malware binary metadata and extract crate dependencies."""importreimportsysimportjsondefidentify_rust_binary(data):"""Check if binary is Rust-compiled and extract version info."""indicators={"rust_panic_strings":bool(re.search(rb'panicked at',data)),"rust_unwrap":bool(re.search(rb'called.*unwrap.*on.*None',data)),"core_panic":bool(re.search(rb'core::panicking',data)),"std_rt":bool(re.search(rb'std::rt::lang_start',data)),"cargo_path":bool(re.search(rb'\.cargo[/\\]registry',data)),"rustc_version":None,}version=re.search(rb'rustc\s+(\d+\.\d+\.\d+)',data)ifversion:indicators["rustc_version"]=version.group(1).decode()is_rust=sum(1forvinindicators.values()ifv)>=2returnis_rust,indicatorsdefextract_crates(data):"""Extract Rust crate (dependency) names from binary strings."""crate_pattern=re.compile(rb'(?:crates\.io-[a-f0-9]+/|\.cargo/registry/src/[^/]+/)'rb'([\w-]+)-(\d+\.\d+\.\d+)')crates={}formatchincrate_pattern.finditer(data):name=match.group(1).decode()version=match.group(2).decode()crates[name]=version# Also check for common malware-relevant cratessuspicious_crates={"reqwest":"HTTP client","hyper":"HTTP library","tokio":"Async runtime","aes":"AES encryption","chacha20":"ChaCha20 encryption","rsa":"RSA encryption","ring":"Crypto library","base64":"Base64 encoding","winapi":"Windows API bindings","winreg":"Registry access","sysinfo":"System information","screenshots":"Screen capture","clipboard":"Clipboard access","keylogger":"Key logging",}capabilities=[]forcrate_name,descriptioninsuspicious_crates.items():ifcrate_nameincrates:capabilities.append({"crate":crate_name,"version":crates[crate_name],"capability":description,})returncrates,capabilitiesdefextract_rust_strings(data):"""Extract strings handling Rust's non-null-terminated format."""# Rust strings are stored as pointer+length, but string literals# are often in .rodata as contiguous sequencesstrings=[]ascii_pattern=re.compile(rb'[\x20-\x7e]{8,500}')formatchinascii_pattern.finditer(data):s=match.group().decode('ascii')# Filter for malware-relevant stringskeywords=['http','socket','encrypt','decrypt','shell','exec','cmd','upload','download','persist','registry','mutex','pipe','inject']ifany(kwins.lower()forkwinkeywords):strings.append(s)returnstringsif__name__=="__main__":iflen(sys.argv)<2:print(f"Usage: {sys.argv[0]} <rust_binary>")sys.exit(1)withopen(sys.argv[1],'rb')asf:data=f.read()is_rust,indicators=identify_rust_binary(data)print(f"[{'+'ifis_rustelse'-'}] Rust binary: {is_rust}")print(json.dumps(indicators,indent=2,default=str))crates,capabilities=extract_crates(data)print(f"\n[+] Crates ({len(crates)}):")forname,verinsorted(crates.items()):print(f" {name} v{ver}")ifcapabilities:print(f"\n[!] Suspicious capabilities:")forcapincapabilities:print(f" {cap['crate']} -> {cap['capability']}")strings=extract_rust_strings(data)ifstrings:print(f"\n[+] Suspicious strings ({len(strings)}):")forsinstrings[:20]:print(f" {s}")
Validation Criteria
Binary correctly identified as Rust-compiled with version info