mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
8 lines
127 B
Rust
8 lines
127 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
ironrdp_fuzzing::oracles::pdu_decode(data);
|
|
});
|