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.rs

13 lines
278 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::Frame::parse(&mut cursor);
});