I have come bearing gifts. (When looking up the spelling of that, I just learned the phrase was about the trojan horse. Neat.)
But inside of the horse is a fuzzer panic.
#[test]
fn test_bad_heading_attribute() {
let mut opts = pulldown_cmark::Options::empty();
opts.insert(Options::ENABLE_HEADING_ATTRIBUTES);
let data = "[[][({][}\n-";
for _ in pulldown_cmark::Parser::new_ext(data, opts) {};
}
This took a whole 10k seconds of CPU time, or 2 hours of wall clock time to find. So we are definitely making progress!
I have come bearing gifts. (When looking up the spelling of that, I just learned the phrase was about the trojan horse. Neat.)
But inside of the horse is a fuzzer panic.
This took a whole 10k seconds of CPU time, or 2 hours of wall clock time to find. So we are definitely making progress!