Files
cuprate-for-explorer/fuzz/fuzz_targets/oxide_block.rs
Boog900 1b28c3b728 Add Fuzzing + fix found issues (#464)
* add fuzz tests

* fix CI

* fix found vuln

* fix deny

* add more targets

* fmt + clippy

* Add exclude for fuzz

* add defaults rather than exclude

* add fuzz to CI

* remove clippy run

* add readme

* review fixes

* Update Cargo.toml

Co-authored-by: hinto-janai <hinto.janai@protonmail.com>

---------

Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
2025-05-28 20:29:06 +01:00

10 lines
151 B
Rust

#![no_main]
use libfuzzer_sys::fuzz_target;
use monero_serai::block::Block;
fuzz_target!(|data: &[u8]| {
drop(Block::read(&mut &data[..]));
});