Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Cargo Build & Test
name: ci

on:
push:
Expand Down
44 changes: 44 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ cli = [
"target-triple",
"tempfile",
"time-humanize",
"tokio",
"twox-hash",
]
coverage = []
Expand All @@ -51,6 +52,7 @@ strip-ansi-escapes = { version = "0.2.1", optional = true }
target-triple = { version = "1.0.0", optional = true }
tempfile = { version = "3.27.0", optional = true }
time-humanize = { version = "0.1.3", optional = true }
tokio = { version = "1.50.0", features = ["process", "rt", "time"], optional = true }
twox-hash = { version = "2.1.2", optional = true }

[lints.clippy]
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# `ziggy`

[![Build status](https://github.com/srlabs/ziggy/actions/workflows/ci.yml/badge.svg)](https://github.com/srlabs/ziggy/actions/workflows/ci.yml)
[![Crates.io](https://img.shields.io/crates/v/ziggy.svg)](https://crates.io/crates/ziggy)
[![Docs.rs](https://img.shields.io/docsrs/ziggy)](https://docs.rs/ziggy)

`ziggy` is a fuzzer manager for Rust projects which is built to:

- launch different fuzzers in parallel with a shared corpus
Expand Down Expand Up @@ -43,7 +47,8 @@ Commands:
cover Generate code coverage information using the existing corpus
plot Plot AFL++ data using afl-plot
add-seeds Add seeds to the running AFL++ fuzzers
triage Triage crashes found with casr - currently only works for AFL++
triage Triage crashes found with CASR - currently only works for AFL++
clean Remove generated artifacts from the target directory
help Print this message or the help of the given subcommand(s)

Options:
Expand Down Expand Up @@ -76,6 +81,7 @@ After you've launched your fuzzer, you'll find a couple of items in the `output`

- the `corpus` directory containing the full corpus
- the `crashes` directory containing any crashes detected by the fuzzers
- the `timeouts` directory containing any timeouts/hangs detected by the fuzzers
- the `logs` directory containing fuzzer log files
- the `afl` directory containing AFL++'s output
- the `honggfuzz` directory containing Honggfuzz's output
Expand All @@ -94,10 +100,6 @@ CARGO_HOME=.cargo cargo ziggy cover
This will clone every dependency into a `.cargo` directory and this directory will be included in
the generated coverage.

## `ziggy` logs

If you want to see `ziggy`'s internal logs, you can set `RUST_LOG=INFO`.

## Trophy case

[CVE-2026-24116](https://www.cve.org/CVERecord?id=CVE-2026-24116) was found in wasmtime by differential fuzzing with wasmi
4 changes: 2 additions & 2 deletions examples/arbitrary/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "arbitrary-fuzz"
version = "0.1.0"
edition = "2021"
edition = "2024"
publish = false

[dependencies]
arbitrary = { version = "1", features = ["derive"] }
ziggy = { path = "../../", default-features = false }
arbitrary = { version = "1", features= ["derive"] }
2 changes: 1 addition & 1 deletion examples/asan/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "asan-fuzz"
version = "0.1.0"
edition = "2021"
edition = "2024"

[dependencies]
ziggy = { path = "../../", default-features = false }
4 changes: 2 additions & 2 deletions examples/url/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "url-fuzz"
version = "0.1.0"
edition = "2021"
edition = "2024"
publish = false

[dependencies]
url = "2.5.0"
ziggy = { path = "../../", default-features = false }

[features]
fuzzing = []
fuzzing = []
Loading