dragondance

Crates.iodragondance
lib.rsdragondance
version0.1.0
sourcesrc
created_at2022-02-23 04:52:18.58602
updated_at2022-02-23 04:52:18.58602
descriptionCode coverage file format for the dragondance ghidra plugin
homepage
repositoryhttps://github.com/evanrichter/dragondance-rs/
max_upload_size
id537636
size7,361
Evan Richter (evanrichter)

documentation

https://docs.rs/dragondance

README

Dragon Dance Trace Recorder

Record code coverage traces in rust to the dragondance format.

Docs

Example

use dragondance::{Module, Trace};

// Create a Trace with module info
let modules = [Module::new("abcd", 0x1000, 0x2000),
               Module::new("libc.so", 0x555000, 0x556000)];
let mut trace = Trace::new(&modules);

// Add coverage events from your emulator, debugger, etc.
trace.add(0x1204, 3);
trace.add(0x1207, 12);

// Write the coverage to a dragondance coverage file
trace.save("trace.dd").unwrap();
Commit count: 3

cargo fmt