test(fuzz): add webhook, provider response, and command validation fuzz targets
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>
This commit is contained in:
parent
bec1dc7b8c
commit
d407eb61f0
4 changed files with 46 additions and 0 deletions
|
|
@ -24,3 +24,21 @@ 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue