Add three new fuzz targets expanding coverage from 2 to 5 targets: - fuzz_webhook_payload: fuzzes webhook body JSON deserialization - fuzz_provider_response: fuzzes provider API response parsing - fuzz_command_validation: fuzzes security policy command validation Addresses audit findings for critical fuzz coverage gaps in gateway, provider, and security subsystems. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
44 lines
743 B
TOML
44 lines
743 B
TOML
[package]
|
|
name = "zeroclaw-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
|
|
[dependencies.zeroclaw]
|
|
path = ".."
|
|
|
|
[[bin]]
|
|
name = "fuzz_config_parse"
|
|
path = "fuzz_targets/fuzz_config_parse.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_tool_params"
|
|
path = "fuzz_targets/fuzz_tool_params.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_webhook_payload"
|
|
path = "fuzz_targets/fuzz_webhook_payload.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_provider_response"
|
|
path = "fuzz_targets/fuzz_provider_response.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_command_validation"
|
|
path = "fuzz_targets/fuzz_command_validation.rs"
|
|
test = false
|
|
doc = false
|