diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2024-06-27 18:07:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 18:07:43 +0200 |
commit | 83e6e753af1a6123805a4777691da1f8821c01d0 (patch) | |
tree | 6029b802f7b533c07ef63b1166b3633e00be8843 /.gitignore | |
parent | 8f6f73505d34574c090e5ee59ee0c33c0c9732de (diff) |
fuzz: pl7m: add a custom mutator for better fuzzing of pcap files (#2483)
Pl7m is a custom mutator (used for structure aware fuzzing) for network
traffic packet captures (i.e. pcap files).
The output of the mutator is always a valid pcap file, containing the
same flows/sessions of the input file. That's it: the mutator only
changes the packet payload after the TCP/UDP header, keeping all the
original L2/L3 information (IP addresses and L4 ports).
See: https://github.com/IvanNardi/pl7m
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 4605ff12b..215324462 100644 --- a/.gitignore +++ b/.gitignore @@ -85,6 +85,11 @@ /fuzz/fuzz_gcrypt_gcm /fuzz/fuzz_gcrypt_cipher /fuzz/fuzz_ndpi_reader_payload_analyzer +/fuzz/fuzz_ndpi_reader_pl7m_simplest +/fuzz/fuzz_ndpi_reader_pl7m_simplest_internal +/fuzz/fuzz_ndpi_reader_pl7m +/fuzz/fuzz_ndpi_reader_pl7m_64k +/fuzz/fuzz_ndpi_reader_pl7m_internal /fuzz/fuzz_filecfg_protocols /fuzz/fuzz_filecfg_categories /fuzz/fuzz_filecfg_category @@ -96,6 +101,11 @@ /fuzz/fuzz_readerutils_parseprotolist /fuzz/fuzz_ndpi_reader_alloc_fail_seed_corpus.zip /fuzz/fuzz_ndpi_reader_seed_corpus.zip +/fuzz/fuzz_ndpi_reader_pl7m_seed_corpus.zip +/fuzz/fuzz_ndpi_reader_pl7m_64k_seed_corpus.zip +/fuzz/fuzz_ndpi_reader_pl7m_internal_seed_corpus.zip +/fuzz/fuzz_ndpi_reader_pl7m_simplest_seed_corpus.zip +/fuzz/fuzz_ndpi_reader_pl7m_simplest_internal_seed_corpus.zip /fuzz/fuzz_quic_get_crypto_data_seed_corpus.zip /fuzz/fuzz_community_id_seed_corpus.zip /fuzz/fuzz_is_stun_udp_seed_corpus.zip @@ -152,6 +162,7 @@ /src/lib/libndpi.so* /src/lib/protocols/.deps/ /src/lib/third_party/src/.deps/ +/src/lib/third_party/src/fuzz/.deps/ /tags /test-driver /tests/Makefile |