#反汇编 #绑定 #高层 #引擎 #高层 #反汇编 #框架

无需 std capstone

对 capstone 反汇编引擎(https://capstone-engine.org/)的高级绑定

18 个版本 (重大变更)

0.12.0 2024年2月25日
0.11.0 2022年5月2日
0.10.0 2021年8月9日
0.9.0 2021年7月14日
0.0.3 2015年4月5日

#20调试

Download history 12894/week @ 2024-04-28 11020/week @ 2024-05-05 17793/week @ 2024-05-12 16649/week @ 2024-05-19 18635/week @ 2024-05-26 18054/week @ 2024-06-02 21194/week @ 2024-06-09 20581/week @ 2024-06-16 20953/week @ 2024-06-23 15753/week @ 2024-06-30 20920/week @ 2024-07-07 20476/week @ 2024-07-14 23808/week @ 2024-07-21 24025/week @ 2024-07-28 21641/week @ 2024-08-04 21910/week @ 2024-08-11

每月 93,473 次下载
用于 47 个crate(33 个直接使用)

MIT 许可证

32MB
1M SLoC

Bitbake 859K SLoC // 0.1% comments C 52K SLoC // 0.1% comments Rust 33K SLoC // 0.0% comments Python 22K SLoC // 0.1% comments C# 19K SLoC // 0.1% comments Java 15K SLoC // 0.0% comments OCaml 14K SLoC // 0.0% comments VB6 3K SLoC // 0.2% comments Shell 855 SLoC // 0.1% comments PowerShell 519 SLoC // 0.3% comments C++ 484 SLoC // 0.1% comments Visual Studio Project 310 SLoC Batch 290 SLoC // 0.0% comments RPM Specfile 121 SLoC // 0.0% comments Visual Studio Solution 68 SLoC Cython 43 SLoC

包含 (Mach-o 可执行文件, 9KB) examples/darwin

capstone-rs

Crates.io Badge

Linux Github 工作流程 CI 徽章 | Windows Appveyor CI 徽章 | FreeBSD Cirrus CI 徽章

codecov

API 文档

capstone 库 反汇编框架的绑定。

Capstone 结构是到库的主要接口。

需求

capstone-rs 使用 capstone-sys crate 提供对 Capstone C 库的低级绑定。

请参阅 capstone-sys 页面以获取需求和支持的平台。

  • 最低 Rust 版本: 1.60.0

示例

extern crate capstone;

use capstone::prelude::*;

const X86_CODE: &'static [u8] = b"\x55\x48\x8b\x05\xb8\x13\x00\x00\xe9\x14\x9e\x08\x00\x45\x31\xe4";

/// Print register names
fn reg_names(cs: &Capstone, regs: &[RegId]) -> String {
    let names: Vec<String> = regs.iter().map(|&x| cs.reg_name(x).unwrap()).collect();
    names.join(", ")
}

/// Print instruction group names
fn group_names(cs: &Capstone, regs: &[InsnGroupId]) -> String {
    let names: Vec<String> = regs.iter().map(|&x| cs.group_name(x).unwrap()).collect();
    names.join(", ")
}

fn main() {
    let cs = Capstone::new()
        .x86()
        .mode(arch::x86::ArchMode::Mode64)
        .syntax(arch::x86::ArchSyntax::Att)
        .detail(true)
        .build()
        .expect("Failed to create Capstone object");

    let insns = cs.disasm_all(X86_CODE, 0x1000)
        .expect("Failed to disassemble");
    println!("Found {} instructions", insns.len());
    for i in insns.as_ref() {
        println!();
        println!("{}", i);

        let detail: InsnDetail = cs.insn_detail(&i).expect("Failed to get insn detail");
        let arch_detail: ArchDetail = detail.arch_detail();
        let ops = arch_detail.operands();

        let output: &[(&str, String)] = &[
            ("insn id:", format!("{:?}", i.id().0)),
            ("bytes:", format!("{:?}", i.bytes())),
            ("read regs:", reg_names(&cs, detail.regs_read())),
            ("write regs:", reg_names(&cs, detail.regs_write())),
            ("insn groups:", group_names(&cs, detail.groups())),
        ];

        for &(ref name, ref message) in output.iter() {
            println!("{:4}{:12} {}", "", name, message);
        }

        println!("{:4}operands: {}", "", ops.len());
        for op in ops {
            println!("{:8}{:?}", "", op);
        }
    }
}

生成

Found 4 instructions

0x1000: pushq %rbp
    read regs:   rsp
    write regs:  rsp
    insn groups: mode64

0x1001: movq 0x13b8(%rip), %rax
    read regs:
    write regs:
    insn groups:

0x1008: jmp 0x8ae21
    read regs:
    write regs:
    insn groups: jump

0x100d: xorl %r12d, %r12d
    read regs:
    write regs:  rflags
    insn groups:

要查看更多示例,请查看 examples/ 目录。欢迎提供更复杂的示例!

特性

  • full:不要在diet 模式下编译 Capstone C 库
  • std:启用仅 std 的特性,例如 Error 特性
  • use_bindgen:运行 bindgen 生成 Rust 绑定到 Capstone C 库,而不是使用预生成的绑定(不推荐)。

:默认启用

问题报告

请创建一个 Github 问题

作者

您可以在 Github 上找到完整的贡献者列表

许可证

MIT

依赖关系