feat: refactor sgclaw around zeroclaw compat runtime
This commit is contained in:
10
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_command_validation.rs
vendored
Normal file
10
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_command_validation.rs
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
#![no_main]
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
use zeroclaw::security::SecurityPolicy;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
if let Ok(s) = std::str::from_utf8(data) {
|
||||
let policy = SecurityPolicy::default();
|
||||
let _ = policy.validate_command_execution(s, false);
|
||||
}
|
||||
});
|
||||
9
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_config_parse.rs
vendored
Normal file
9
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_config_parse.rs
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
#![no_main]
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
if let Ok(s) = std::str::from_utf8(data) {
|
||||
// Fuzz TOML config parsing — silently discard invalid input
|
||||
let _ = toml::from_str::<toml::Value>(s);
|
||||
}
|
||||
});
|
||||
9
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_provider_response.rs
vendored
Normal file
9
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_provider_response.rs
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
#![no_main]
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
if let Ok(s) = std::str::from_utf8(data) {
|
||||
// Fuzz provider API response deserialization
|
||||
let _ = serde_json::from_str::<serde_json::Value>(s);
|
||||
}
|
||||
});
|
||||
9
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_tool_params.rs
vendored
Normal file
9
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_tool_params.rs
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
#![no_main]
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
if let Ok(s) = std::str::from_utf8(data) {
|
||||
// Fuzz JSON tool parameter parsing — silently discard invalid input
|
||||
let _ = serde_json::from_str::<serde_json::Value>(s);
|
||||
}
|
||||
});
|
||||
9
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_webhook_payload.rs
vendored
Normal file
9
third_party/zeroclaw/fuzz/fuzz_targets/fuzz_webhook_payload.rs
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
#![no_main]
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
if let Ok(s) = std::str::from_utf8(data) {
|
||||
// Fuzz webhook body deserialization
|
||||
let _ = serde_json::from_str::<serde_json::Value>(s);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user