From ccddb18424008df760918b7629f3e42defc42b48 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 11 Jun 2021 22:13:58 +0200 Subject: [PATCH] Time to start fuzzing --- dnscrypt-proxy/fuzzing_test.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dnscrypt-proxy/fuzzing_test.go diff --git a/dnscrypt-proxy/fuzzing_test.go b/dnscrypt-proxy/fuzzing_test.go new file mode 100644 index 00000000..3a13d73b --- /dev/null +++ b/dnscrypt-proxy/fuzzing_test.go @@ -0,0 +1,19 @@ +// +build gofuzzbeta + +package main + +import ( + "encoding/hex" + "testing" +) + +func FuzzParseODoHTargetConfigs(f *testing.F) { + configs_hex := "0020000100010020aacc53b3df0c6eb2d7d5ce4ddf399593376c9903ba6a52a52c3a2340f97bb764" + configs, _ := hex.DecodeString(configs_hex) + f.Add(configs) + f.Fuzz(func(t *testing.T, configs []byte) { + if _, err := parseODoHTargetConfigs(configs); err != nil { + t.Skip() + } + }) +}