-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pulldown-cmark target finds a segv and a buffer overflow #36
Comments
If I run it again, it finds:
|
#35 is the target |
Here's a gdb run:
|
How to reproduce this:
extern crate pulldown_cmark;
fn main() {
if let Ok(s) = std::str::from_utf8(b"\n:8\x02*>\n*\n\n\t\x02:\n\x0b\x12:<<<<<<<<<<<<<<<<<<<\'<\x00\x00\x00<<<<<<J") {
let parser = pulldown_cmark::Parser::new(s);
for _ in parser { }
}
} |
This might be because of rust-lang/rust#39882 ? |
Considering "ACCESS of size 0", I'm pretty sure this is rust-lang/rust#39882 |
I have another one which is also "ACCESS of size 0", but it's a heap-buffer-overflow:
Full log and input used: https://gist.github.com/killercup/a2ea1407ab61889f0aaa49e008e5e8c3 |
I'm planning on leaving this open until this gets fixed upstream in libfuzzer. |
The text was updated successfully, but these errors were encountered: