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 /.github/workflows | |
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 '.github/workflows')
-rw-r--r-- | .github/workflows/cifuzz.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index c74c81096..a4b7ddbe9 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -18,7 +18,7 @@ jobs: uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: oss-fuzz-project-name: 'ndpi' - fuzz-seconds: 600 + fuzz-seconds: 900 dry-run: false sanitizer: ${{ matrix.sanitizer }} - name: Check Crash (fails when a crash is detected) |