brewery

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
fuzz/fuzz_targets/graphics_parse.rsRust9 lines262 B
1
#![no_main]
2
3
use libfuzzer_sys::fuzz_target;
4
5
// The kitty graphics APC control block is attacker-controllable escape data;
6
// the key/value parse must tolerate any byte sequence.
7
fuzz_target!(|data: &[u8]| {
8
  let _ = beer_protocols::graphics::parse(data);
9
});