capstone-rs

Bindings to capstone-engine

There's an example in demo.rs, but as a sample:

```rust extern crate capstone;

static CODE: &'static [u8] = b"\x55\x48\x8b\x05\xb8\x13\x00\x00";

fn expose(a: &str) { }

fn main() { match capstone::Capstone::new(capstone::CsArch::ARCHX86, capstone::CsMode::MODE64) { Some(cs) => { if let Some(insns) = cs.disasm(CODE, 0x1000, 0) { println!("Got {} instructions", insns.len());

            for i in insns.iter() {
                println!("{:?}", i);
            }
        }
    },
    None => {
        println!("Ohnoes");
    }
}

} ```

Produces:

Got 2 instructions Insn { address: 4096, mnemonic: Some("push"), op_str: Some("rbp") } Insn { address: 4097, mnemonic: Some("mov"), op_str: Some("rax, qword ptr [rip + 0x13b8]") }

Reporting Issues

Please open a Github issue, or email me directly if you prefer

Demo

You can run:

cargo run --example=demo

To produce a short demonstration. More complex demos welcome!

Author

Library Author: Nguyen Anh Quynh Binding Author: Richo Healey richo@psych0tik.net

License

Mit.