You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
tungstenite-rs/fuzz/fuzz_targets/parse_frame_header.rs

12 lines
289 B

#![no_main]
#[macro_use] extern crate libfuzzer_sys;
extern crate tungstenite;
use std::io::Cursor;
fuzz_target!(|data: &[u8]| {
let vector: Vec<u8> = data.into();
let mut cursor = Cursor::new(vector);
tungstenite::protocol::frame::FrameHeader::parse(&mut cursor).ok();
});