aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2022-12-01 12:21:04 +0100
committerGitHub <noreply@github.com>2022-12-01 12:21:04 +0100
commit02e7e3c23b29002267a89ae74e51c2285bb27da1 (patch)
treee81044cad57a397a940f278ac53f6aec3be0fc92 /.github/workflows
parentafb5c3e6bad82ebd265ab12254ac7c6e067a791b (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.yml2
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)