diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-12-01 12:21:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-01 12:21:04 +0100 |
commit | 02e7e3c23b29002267a89ae74e51c2285bb27da1 (patch) | |
tree | e81044cad57a397a940f278ac53f6aec3be0fc92 /.gitignore | |
parent | afb5c3e6bad82ebd265ab12254ac7c6e067a791b (diff) |
Add a new fuzzer for QUIC (#1800)
QUIC packets are encrypted/obfuscated; that means that we need to
decrypt them before parsing the real (TLS) message.
Fuzzing is not effective here, since a random buffer is hardly a valid
encrypted QUIC packet.
Add a new fuzzer, testing *decrypted* QUIC packets.
Add a basic corpus.
Fix a few bugs already found by this fuzzer.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 21f2a04d2..4565885d2 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,8 @@ /fuzz/fuzz_ndpi_reader_with_main /fuzz/fuzz_process_packet /fuzz/fuzz_process_packet_with_main +/fuzz/fuzz_quic_get_crypto_data +/fuzz/fuzz_quic_get_crypto_data_with_main /influxdb/Makefile /install-sh /libndpi.pc |