mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch 'ondrej/copy-wire-test-to-fuzz' into 'main'
Add dns_message_parse() fuzzer See merge request isc-projects/bind9!4009
This commit is contained in:
commit
f3270a6d88
303 changed files with 182 additions and 0 deletions
1
fuzz/.gitignore
vendored
1
fuzz/.gitignore
vendored
|
|
@ -1,5 +1,6 @@
|
|||
/*.dSYM/
|
||||
/*.out/
|
||||
/dns_message_parse
|
||||
/dns_name_fromtext_target
|
||||
/dns_rdata_fromwire_text
|
||||
/isc_lex_getmastertoken
|
||||
|
|
|
|||
|
|
@ -19,12 +19,14 @@ libfuzzmain_la_SOURCES = \
|
|||
main.c
|
||||
|
||||
check_PROGRAMS = \
|
||||
dns_message_parse \
|
||||
dns_name_fromtext_target \
|
||||
dns_rdata_fromwire_text \
|
||||
isc_lex_getmastertoken \
|
||||
isc_lex_gettoken
|
||||
|
||||
EXTRA_DIST = \
|
||||
dns_message_parse.in \
|
||||
dns_name_fromtext_target.in \
|
||||
dns_rdata_fromwire_text.in \
|
||||
isc_lex_getmastertoken.in \
|
||||
|
|
|
|||
178
fuzz/dns_message_parse.c
Normal file
178
fuzz/dns_message_parse.c
Normal file
|
|
@ -0,0 +1,178 @@
|
|||
/*
|
||||
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*
|
||||
* See the COPYRIGHT file distributed with this work for additional
|
||||
* information regarding copyright ownership.
|
||||
*/
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <isc/buffer.h>
|
||||
#include <isc/commandline.h>
|
||||
#include <isc/file.h>
|
||||
#include <isc/mem.h>
|
||||
#include <isc/print.h>
|
||||
#include <isc/string.h>
|
||||
#include <isc/util.h>
|
||||
|
||||
#include <dns/message.h>
|
||||
#include <dns/result.h>
|
||||
|
||||
#include "fuzz.h"
|
||||
|
||||
bool debug = false;
|
||||
|
||||
static isc_mem_t *mctx = NULL;
|
||||
static uint8_t *output = NULL;
|
||||
static size_t output_len = 1024;
|
||||
static uint8_t *render_buf[64 * 1024];
|
||||
|
||||
int
|
||||
LLVMFuzzerInitialize(int *argc __attribute__((unused)),
|
||||
char ***argv __attribute__((unused))) {
|
||||
isc_mem_create(&mctx);
|
||||
output = isc_mem_get(mctx, output_len);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static isc_result_t
|
||||
parse_message(isc_buffer_t *input, dns_message_t **messagep) {
|
||||
isc_result_t result;
|
||||
dns_message_t *message = NULL;
|
||||
|
||||
result = dns_message_create(mctx, DNS_MESSAGE_INTENTPARSE, &message);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
return (result);
|
||||
}
|
||||
|
||||
result = dns_message_parse(message, input, DNS_MESSAGEPARSE_BESTEFFORT);
|
||||
if (result == DNS_R_RECOVERABLE) {
|
||||
result = ISC_R_SUCCESS;
|
||||
}
|
||||
|
||||
if (result == ISC_R_SUCCESS && messagep != NULL) {
|
||||
*messagep = message;
|
||||
} else {
|
||||
dns_message_destroy(&message);
|
||||
}
|
||||
|
||||
return (result);
|
||||
}
|
||||
|
||||
static isc_result_t
|
||||
print_message(dns_message_t *message) {
|
||||
isc_result_t result;
|
||||
isc_buffer_t buffer;
|
||||
|
||||
do {
|
||||
isc_buffer_init(&buffer, output, output_len);
|
||||
result = dns_message_totext(message, &dns_master_style_debug, 0,
|
||||
&buffer);
|
||||
if (result == ISC_R_NOSPACE) {
|
||||
isc_mem_put(mctx, output, output_len);
|
||||
output_len *= 2;
|
||||
output = isc_mem_get(mctx, output_len);
|
||||
continue;
|
||||
}
|
||||
} while (result == ISC_R_NOSPACE);
|
||||
|
||||
return (result);
|
||||
}
|
||||
|
||||
#define CHECKRESULT(r, f) \
|
||||
{ \
|
||||
r = (f); \
|
||||
if (r != ISC_R_SUCCESS) { \
|
||||
return (r); \
|
||||
} \
|
||||
}
|
||||
|
||||
static isc_result_t
|
||||
render_message(dns_message_t **messagep) {
|
||||
isc_result_t result;
|
||||
dns_message_t *message = *messagep;
|
||||
isc_buffer_t buffer;
|
||||
dns_compress_t cctx;
|
||||
|
||||
isc_buffer_constinit(&buffer, render_buf, sizeof(render_buf));
|
||||
|
||||
message->from_to_wire = DNS_MESSAGE_INTENTRENDER;
|
||||
for (size_t i = 0; i < DNS_SECTION_MAX; i++) {
|
||||
message->counts[i] = 0;
|
||||
}
|
||||
|
||||
CHECKRESULT(result, dns_compress_init(&cctx, -1, mctx));
|
||||
CHECKRESULT(result, dns_message_renderbegin(message, &cctx, &buffer));
|
||||
|
||||
CHECKRESULT(result, dns_message_rendersection(message,
|
||||
DNS_SECTION_QUESTION, 0));
|
||||
|
||||
CHECKRESULT(result,
|
||||
dns_message_rendersection(message, DNS_SECTION_ANSWER, 0));
|
||||
CHECKRESULT(result, dns_message_rendersection(
|
||||
message, DNS_SECTION_AUTHORITY, 0));
|
||||
|
||||
CHECKRESULT(result, dns_message_rendersection(
|
||||
message, DNS_SECTION_ADDITIONAL, 0));
|
||||
|
||||
dns_message_renderend(message);
|
||||
|
||||
dns_compress_invalidate(&cctx);
|
||||
|
||||
message->from_to_wire = DNS_MESSAGE_INTENTPARSE;
|
||||
|
||||
dns_message_destroy(messagep);
|
||||
|
||||
result = parse_message(&buffer, messagep);
|
||||
|
||||
return (result);
|
||||
}
|
||||
|
||||
int
|
||||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
isc_buffer_t buffer;
|
||||
isc_result_t result;
|
||||
dns_message_t *message = NULL;
|
||||
|
||||
if (size > 65535) {
|
||||
return (0);
|
||||
}
|
||||
|
||||
isc_buffer_constinit(&buffer, data, size);
|
||||
isc_buffer_add(&buffer, size);
|
||||
isc_buffer_setactive(&buffer, size);
|
||||
|
||||
result = parse_message(&buffer, &message);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
result = print_message(message);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
result = render_message(&message);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
result = print_message(message);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
cleanup:
|
||||
if (message != NULL) {
|
||||
dns_message_destroy(&message);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
BIN
fuzz/dns_message_parse.in/bind-systemtest-0a3807b25967.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-0a3807b25967.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-0af8cee23ed0.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-0af8cee23ed0.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-0b7820813414.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-0b7820813414.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-0bf0754502aa.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-0bf0754502aa.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-0c6c1a0dcff1.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-0c6c1a0dcff1.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-0ccf2a7952ea.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-0ccf2a7952ea.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-0dd75ab2e3f8.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-0dd75ab2e3f8.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-0de21419c7e7.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-0de21419c7e7.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-0eb553c77d2b.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-0eb553c77d2b.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-1295da719914.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-1295da719914.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-131eff5d4a89.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-131eff5d4a89.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-1359eec5b20f.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-1359eec5b20f.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-1410836d8ef5.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-1410836d8ef5.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-15df237e7dd9.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-15df237e7dd9.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-17ecbe4230d4.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-17ecbe4230d4.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-1818a0a13743.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-1818a0a13743.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-191a3716d274.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-191a3716d274.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-1dcb02bb39d7.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-1dcb02bb39d7.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-1f25e4467b28.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-1f25e4467b28.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-20aeb1ee571c.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-20aeb1ee571c.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-20cc218f4c3a.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-20cc218f4c3a.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-240335cece1a.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-240335cece1a.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-24b76ef067ec.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-24b76ef067ec.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-25305bdb78fe.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-25305bdb78fe.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-258334bb1e33.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-258334bb1e33.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-25c433073c4b.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-25c433073c4b.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-261086edd389.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-261086edd389.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-27326d79a152.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-27326d79a152.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-275812229fac.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-275812229fac.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-27b65637a4b5.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-27b65637a4b5.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-2938c8b1445b.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-2938c8b1445b.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-297325ce1762.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-297325ce1762.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-2b665de93d1a.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-2b665de93d1a.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-2c08fd4dcb3d.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-2c08fd4dcb3d.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-2c60032e840c.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-2c60032e840c.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-2d1dc7672bf2.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-2d1dc7672bf2.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-2d83e44b2f92.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-2d83e44b2f92.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-2e70e80504cd.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-2e70e80504cd.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-2fe12f38215a.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-2fe12f38215a.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-3230c27a3abe.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-3230c27a3abe.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-32392b7ae8a7.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-32392b7ae8a7.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-34a3a57c8ae4.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-34a3a57c8ae4.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-3655812d837d.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-3655812d837d.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-3a137dd7b503.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-3a137dd7b503.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-3cd5f858a00d.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-3cd5f858a00d.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-3d25900ba1b1.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-3d25900ba1b1.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-3e3cd0560440.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-3e3cd0560440.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-4266b7ed6d6a.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-4266b7ed6d6a.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-43c68a804d35.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-43c68a804d35.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-43d462943ca3.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-43d462943ca3.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-4434df5061b3.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-4434df5061b3.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-478b516e964a.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-478b516e964a.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-49bb8231b39d.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-49bb8231b39d.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-4aa7978e4119.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-4aa7978e4119.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-4bfca9820e10.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-4bfca9820e10.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-4dffd19c9afb.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-4dffd19c9afb.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-4ec445e05f0c.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-4ec445e05f0c.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-4f2cbb78045a.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-4f2cbb78045a.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-4f6cc6a12505.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-4f6cc6a12505.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-5169d80942f3.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-5169d80942f3.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-5296a02226d1.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-5296a02226d1.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-53ed4e7a29d6.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-53ed4e7a29d6.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-54215b8b2b8e.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-54215b8b2b8e.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-5634ef9088ee.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-5634ef9088ee.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-5b6b63dd703f.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-5b6b63dd703f.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-5b9da3da657a.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-5b9da3da657a.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-5c0ccc6b77bf.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-5c0ccc6b77bf.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-5d979f41d421.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-5d979f41d421.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-5d9c67d54aec.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-5d9c67d54aec.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-6303ab0cdf88.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-6303ab0cdf88.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-630463d00dac.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-630463d00dac.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-63be4d8a1d68.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-63be4d8a1d68.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-63d46cd58251.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-63d46cd58251.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-6400baa777ad.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-6400baa777ad.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-641b1b826491.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-641b1b826491.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-646e3c9711e4.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-646e3c9711e4.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-6491f22d5f5b.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-6491f22d5f5b.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-651968863bc9.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-651968863bc9.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-66197bb21ca4.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-66197bb21ca4.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-68f9625e0aec.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-68f9625e0aec.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-69362e75d3be.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-69362e75d3be.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-6a5efb202ad8.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-6a5efb202ad8.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-6a93e44599bf.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-6a93e44599bf.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-6be5dd262530.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-6be5dd262530.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-6c7b6f8c8afd.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-6c7b6f8c8afd.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-6e4e87d71bc5.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-6e4e87d71bc5.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-702a6a8add74.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-702a6a8add74.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-72266173e768.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-72266173e768.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-75ae672e4cae.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-75ae672e4cae.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-787896107cf3.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-787896107cf3.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-78ab38d04283.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-78ab38d04283.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-795193a1db70.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-795193a1db70.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-797d68892908.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-797d68892908.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-7b5c63ad58fb.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-7b5c63ad58fb.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-7d8144b4f9ac.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-7d8144b4f9ac.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-7dbaeeb319be.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-7dbaeeb319be.pkt
Normal file
Binary file not shown.
BIN
fuzz/dns_message_parse.in/bind-systemtest-7de0b8fa5185.pkt
Normal file
BIN
fuzz/dns_message_parse.in/bind-systemtest-7de0b8fa5185.pkt
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue