canfuzz 0.6.0

A coverage-guided fuzzing framework for Internet Computer canisters, built on `libafl` and `pocket-ic`
Documentation
1
2
3
4
5
6
7
8
9
//! Custom libafl components for canister fuzzing.
//!
//! - [`observer`]: Coverage map and instruction count observers.
//! - [`feedback`]: Instruction count maximization and OOM detection feedback.
//! - [`mutator`]: Candid-aware input mutation.

pub mod feedback;
pub mod mutator;
pub mod observer;