mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
8 lines
148 B
Rust
8 lines
148 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use stract::feed;
|
|
|
|
fuzz_target!(|data: &str| {
|
|
let _ = feed::parse(data, feed::FeedKind::Rss);
|
|
});
|