reverse_engineering_lib 0.3.0

A Rust library for reverse engineering tasks, including entropy calculation, color-based hex visualization, and PE file analysis.
Documentation
1
2
3
4
5
6
7
8
9
use reverse_engineering_lib::disassemble;

fn main() {
    let file_path = "test_files/elf64_test";
    match disassemble(&file_path) {
        Ok(disassembly) => println!("{}", disassembly),
        Err(e) => eprintln!("Disassembly failed: {}", e),
    }
}