diff --git a/cbor/.gitignore b/cbor/.gitignore new file mode 100644 index 0000000..37458e1 --- /dev/null +++ b/cbor/.gitignore @@ -0,0 +1 @@ +cbor-fuzz.zip diff --git a/cbor/cborDecoderTerminals.go b/cbor/cborDecoderTerminals.go index 5b63a94..b9583d7 100644 --- a/cbor/cborDecoderTerminals.go +++ b/cbor/cborDecoderTerminals.go @@ -2,10 +2,16 @@ package cbor import ( "encoding/binary" + "errors" "fmt" "math" ) +const ( + maxUint = ^uint(0) + maxInt = int(maxUint >> 1) +) + func (d *Decoder) decodeFloat(majorByte byte) (f float64, err error) { var bs []byte switch majorByte { @@ -66,8 +72,12 @@ func (d *Decoder) decodeNegInt(majorByte byte) (i int64, err error) { if err != nil { return 0, err } - // TODO needs overflow check - return -1 - int64(ui), nil + pos := ui + 1 + if pos > uint64(-math.MinInt64) { + return -1, errors.New("cbor: negative integer out of rage of int64 type") + } + + return -int64(pos), nil } // Decode expecting a positive integer. @@ -80,7 +90,9 @@ func (d *Decoder) decodeLen(majorByte byte) (i int, err error) { if err != nil { return 0, err } - // TODO needs overflow check + if ui > uint64(maxInt) { + return 0, errors.New("cbor: positive integer is out of length") + } return int(ui), nil } diff --git a/cbor/cborFixtures_test.go b/cbor/cborFixtures_test.go index 9341859..f9d3b8b 100644 --- a/cbor/cborFixtures_test.go +++ b/cbor/cborFixtures_test.go @@ -4,6 +4,8 @@ import ( "bytes" "encoding/base64" "fmt" + "io/ioutil" + "testing" . "github.com/polydawn/refmt/tok" "github.com/polydawn/refmt/tok/fixtures" @@ -31,6 +33,21 @@ func deB64(s string) []byte { return bs } +func TestExportFixtures(t *testing.T) { + t.SkipNow() + for i, fix := range cborFixtures { + if fix.encodeResult != nil || fix.decodeResult != nil { + continue + } + + err := ioutil.WriteFile(fmt.Sprintf("fuzz-data/corpus/%d", i), fix.serial, 0666) + if err != nil { + t.Fatal(err) + } + } + +} + var inapplicable = fmt.Errorf("skipme: inapplicable") var cborFixtures = []struct { diff --git a/cbor/cbor_fuzz.go b/cbor/cbor_fuzz.go new file mode 100644 index 0000000..c6723f3 --- /dev/null +++ b/cbor/cbor_fuzz.go @@ -0,0 +1,44 @@ +// +build gofuzz + +package cbor + +import ( + "bytes" + "fmt" + + "github.com/polydawn/refmt/shared" +) + +func Fuzz(data []byte) int { + dec := NewDecoder(bytes.NewReader(data)) + buf := &bytes.Buffer{} + + // Run it once to sanitize + pump := shared.TokenPump{dec, NewEncoder(buf)} + err := pump.Run() + if err != nil { + return 0 + } + + // Run second loop to check stability + sanitized := buf.Bytes() + dec = NewDecoder(bytes.NewReader(sanitized)) + buf = &bytes.Buffer{} + pump = shared.TokenPump{dec, NewEncoder(buf)} + err = pump.Run() + if err != nil { + fmt.Printf("input: %v, sanitized: %v", data, sanitized) + panic("sanitised failed to prase: " + err.Error()) + } + + out := buf.Bytes() + if !bytes.Equal(out, sanitized) { + fmt.Printf("santized: %v, output: %v\n", sanitized, out) + panic("looping data failed") + } + + if len(out) == len(data) { + return 2 + } + return 1 +} diff --git a/cbor/fuzz-data/.gitignore b/cbor/fuzz-data/.gitignore new file mode 100644 index 0000000..f188d3b --- /dev/null +++ b/cbor/fuzz-data/.gitignore @@ -0,0 +1,4 @@ +* +!.gitignore +!corpus +!corpus/* diff --git a/cbor/fuzz-data/corpus/0 b/cbor/fuzz-data/corpus/0 new file mode 100644 index 0000000..f47828d --- /dev/null +++ b/cbor/fuzz-data/corpus/0 @@ -0,0 +1 @@ +evalue \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/00c2d8bd7f9d5778692ffa356e2a41d0b320af74-5 b/cbor/fuzz-data/corpus/00c2d8bd7f9d5778692ffa356e2a41d0b320af74-5 new file mode 100644 index 0000000..7261ad4 Binary files /dev/null and b/cbor/fuzz-data/corpus/00c2d8bd7f9d5778692ffa356e2a41d0b320af74-5 differ diff --git a/cbor/fuzz-data/corpus/01d799d0a49096f3cbcc8f4a25a5ebafa3bdd86d-1 b/cbor/fuzz-data/corpus/01d799d0a49096f3cbcc8f4a25a5ebafa3bdd86d-1 new file mode 100644 index 0000000..54e352c --- /dev/null +++ b/cbor/fuzz-data/corpus/01d799d0a49096f3cbcc8f4a25a5ebafa3bdd86d-1 @@ -0,0 +1 @@ +ebk2bv2 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/03a108515663d539c698013b2a6b01aaa99b8e9b-7 b/cbor/fuzz-data/corpus/03a108515663d539c698013b2a6b01aaa99b8e9b-7 new file mode 100644 index 0000000..70f4f97 --- /dev/null +++ b/cbor/fuzz-data/corpus/03a108515663d539c698013b2a6b01aaa99b8e9b-7 @@ -0,0 +1 @@ +akak-ak-akak-akak-akakakak-akakak-akak-akakakakakak-akakak56 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/079462bfb0217e988208a49ff833242524590e82-11 b/cbor/fuzz-data/corpus/079462bfb0217e988208a49ff833242524590e82-11 new file mode 100644 index 0000000..61c4920 --- /dev/null +++ b/cbor/fuzz-data/corpus/079462bfb0217e988208a49ff833242524590e82-11 @@ -0,0 +1 @@ +b5555555555555555 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/080c81eb6259dac44d602a85a8fffab4737b4612-8 b/cbor/fuzz-data/corpus/080c81eb6259dac44d602a85a8fffab4737b4612-8 new file mode 100644 index 0000000..b92390d --- /dev/null +++ b/cbor/fuzz-data/corpus/080c81eb6259dac44d602a85a8fffab4737b4612-8 @@ -0,0 +1 @@ +_____ \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/0822b29f4263def430e7e132211faf3fc27dabd8-4 b/cbor/fuzz-data/corpus/0822b29f4263def430e7e132211faf3fc27dabd8-4 new file mode 100644 index 0000000..0e21294 --- /dev/null +++ b/cbor/fuzz-data/corpus/0822b29f4263def430e7e132211faf3fc27dabd8-4 @@ -0,0 +1 @@ +5v21515125uebv2155111512312572702%:15312572702%: \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/082e8941734d10953526a093a2d367c3065d88c9-9 b/cbor/fuzz-data/corpus/082e8941734d10953526a093a2d367c3065d88c9-9 new file mode 100644 index 0000000..b3225d9 --- /dev/null +++ b/cbor/fuzz-data/corpus/082e8941734d10953526a093a2d367c3065d88c9-9 @@ -0,0 +1 @@ +``````````` \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/0877274f3ddc1fdf2f491791db17fcb71302eae8-5 b/cbor/fuzz-data/corpus/0877274f3ddc1fdf2f491791db17fcb71302eae8-5 new file mode 100644 index 0000000..9ef8125 Binary files /dev/null and b/cbor/fuzz-data/corpus/0877274f3ddc1fdf2f491791db17fcb71302eae8-5 differ diff --git a/cbor/fuzz-data/corpus/08d521fdb1934deefb95f1e40d20e10185743156-5 b/cbor/fuzz-data/corpus/08d521fdb1934deefb95f1e40d20e10185743156-5 new file mode 100644 index 0000000..bfc7835 Binary files /dev/null and b/cbor/fuzz-data/corpus/08d521fdb1934deefb95f1e40d20e10185743156-5 differ diff --git a/cbor/fuzz-data/corpus/08d760aff5d152ed3307cd7a9a1dfd8cd4159220-2 b/cbor/fuzz-data/corpus/08d760aff5d152ed3307cd7a9a1dfd8cd4159220-2 new file mode 100644 index 0000000..9512a38 --- /dev/null +++ b/cbor/fuzz-data/corpus/08d760aff5d152ed3307cd7a9a1dfd8cd4159220-2 @@ -0,0 +1 @@ +6134751:8882348962738v-06131347$> \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/09db419387b7ddaec6679b8c35514caaa95393c0-6 b/cbor/fuzz-data/corpus/09db419387b7ddaec6679b8c35514caaa95393c0-6 new file mode 100644 index 0000000..c7e99db --- /dev/null +++ b/cbor/fuzz-data/corpus/09db419387b7ddaec6679b8c35514caaa95393c0-6 @@ -0,0 +1 @@ +   \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/0a5740d33b5ed7381e62f828b7854e67ec71b56c-1 b/cbor/fuzz-data/corpus/0a5740d33b5ed7381e62f828b7854e67ec71b56c-1 new file mode 100644 index 0000000..b8908f4 Binary files /dev/null and b/cbor/fuzz-data/corpus/0a5740d33b5ed7381e62f828b7854e67ec71b56c-1 differ diff --git a/cbor/fuzz-data/corpus/0af0f3927ceda2ac7f184ee5a45cdaa5b6a9bd4b-2 b/cbor/fuzz-data/corpus/0af0f3927ceda2ac7f184ee5a45cdaa5b6a9bd4b-2 new file mode 100644 index 0000000..3f0de61 Binary files /dev/null and b/cbor/fuzz-data/corpus/0af0f3927ceda2ac7f184ee5a45cdaa5b6a9bd4b-2 differ diff --git a/cbor/fuzz-data/corpus/0b23dbf58351d1be7875f14ea0b814fc3e26bbfc-5 b/cbor/fuzz-data/corpus/0b23dbf58351d1be7875f14ea0b814fc3e26bbfc-5 new file mode 100644 index 0000000..89a3063 --- /dev/null +++ b/cbor/fuzz-data/corpus/0b23dbf58351d1be7875f14ea0b814fc3e26bbfc-5 @@ -0,0 +1 @@ +؀؀؀؀؀ \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/0b37d3b427f5dafd1c722c98ac95d93bab9eaa53-10 b/cbor/fuzz-data/corpus/0b37d3b427f5dafd1c722c98ac95d93bab9eaa53-10 new file mode 100644 index 0000000..48e83a2 --- /dev/null +++ b/cbor/fuzz-data/corpus/0b37d3b427f5dafd1c722c98ac95d93bab9eaa53-10 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/0c0e6f90d39e0a2569bf3019134456b21c01a429-11 b/cbor/fuzz-data/corpus/0c0e6f90d39e0a2569bf3019134456b21c01a429-11 new file mode 100644 index 0000000..61259f5 --- /dev/null +++ b/cbor/fuzz-data/corpus/0c0e6f90d39e0a2569bf3019134456b21c01a429-11 @@ -0,0 +1 @@ +`````` \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/0ce2971832e7bb017b2956e696f74abe6876f032-5 b/cbor/fuzz-data/corpus/0ce2971832e7bb017b2956e696f74abe6876f032-5 new file mode 100644 index 0000000..e77c061 Binary files /dev/null and b/cbor/fuzz-data/corpus/0ce2971832e7bb017b2956e696f74abe6876f032-5 differ diff --git a/cbor/fuzz-data/corpus/0d96e123a842eafc337563c599dd2e1233c0f089-1 b/cbor/fuzz-data/corpus/0d96e123a842eafc337563c599dd2e1233c0f089-1 new file mode 100644 index 0000000..dc12dcd --- /dev/null +++ b/cbor/fuzz-data/corpus/0d96e123a842eafc337563c599dd2e1233c0f089-1 @@ -0,0 +1 @@ +eluebv346944695195361418882384896278381347656252 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/0ddad824cecc91ae5ecc5945b355b7fa9bec1e24-5 b/cbor/fuzz-data/corpus/0ddad824cecc91ae5ecc5945b355b7fa9bec1e24-5 new file mode 100644 index 0000000..cece882 Binary files /dev/null and b/cbor/fuzz-data/corpus/0ddad824cecc91ae5ecc5945b355b7fa9bec1e24-5 differ diff --git a/cbor/fuzz-data/corpus/0e703ca882f06a5e095bb5e744e58c45775aba8b-10 b/cbor/fuzz-data/corpus/0e703ca882f06a5e095bb5e744e58c45775aba8b-10 new file mode 100644 index 0000000..d4aea8f Binary files /dev/null and b/cbor/fuzz-data/corpus/0e703ca882f06a5e095bb5e744e58c45775aba8b-10 differ diff --git a/cbor/fuzz-data/corpus/0ef9bc6cf0bead298bfa979c4e81cee61565124f-2 b/cbor/fuzz-data/corpus/0ef9bc6cf0bead298bfa979c4e81cee61565124f-2 new file mode 100644 index 0000000..fefe076 Binary files /dev/null and b/cbor/fuzz-data/corpus/0ef9bc6cf0bead298bfa979c4e81cee61565124f-2 differ diff --git a/cbor/fuzz-data/corpus/0fbf705dc376dc3defe507e8a9b56789f07b173c-3 b/cbor/fuzz-data/corpus/0fbf705dc376dc3defe507e8a9b56789f07b173c-3 new file mode 100644 index 0000000..5a9a2ec Binary files /dev/null and b/cbor/fuzz-data/corpus/0fbf705dc376dc3defe507e8a9b56789f07b173c-3 differ diff --git a/cbor/fuzz-data/corpus/10 b/cbor/fuzz-data/corpus/10 new file mode 100644 index 0000000..5416677 --- /dev/null +++ b/cbor/fuzz-data/corpus/10 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/11 b/cbor/fuzz-data/corpus/11 new file mode 100644 index 0000000..422ce24 --- /dev/null +++ b/cbor/fuzz-data/corpus/11 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/113ed6dc91ec1c9810762f4b82c7190181a9781e-12 b/cbor/fuzz-data/corpus/113ed6dc91ec1c9810762f4b82c7190181a9781e-12 new file mode 100644 index 0000000..c7029e2 Binary files /dev/null and b/cbor/fuzz-data/corpus/113ed6dc91ec1c9810762f4b82c7190181a9781e-12 differ diff --git a/cbor/fuzz-data/corpus/12 b/cbor/fuzz-data/corpus/12 new file mode 100644 index 0000000..5aa50be --- /dev/null +++ b/cbor/fuzz-data/corpus/12 @@ -0,0 +1 @@ +evalue \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/124c5c404eacc515375c3a71d05467871dce06fc-9 b/cbor/fuzz-data/corpus/124c5c404eacc515375c3a71d05467871dce06fc-9 new file mode 100644 index 0000000..e3ae502 Binary files /dev/null and b/cbor/fuzz-data/corpus/124c5c404eacc515375c3a71d05467871dce06fc-9 differ diff --git a/cbor/fuzz-data/corpus/13 b/cbor/fuzz-data/corpus/13 new file mode 100644 index 0000000..b169448 --- /dev/null +++ b/cbor/fuzz-data/corpus/13 @@ -0,0 +1 @@ +evalue \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/14f58395c4c4a9d86a2cd8d23a2493036022d77e-3 b/cbor/fuzz-data/corpus/14f58395c4c4a9d86a2cd8d23a2493036022d77e-3 new file mode 100644 index 0000000..94bb703 --- /dev/null +++ b/cbor/fuzz-data/corpus/14f58395c4c4a9d86a2cd8d23a2493036022d77e-3 @@ -0,0 +1 @@ +489627834796278347653252 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/15 b/cbor/fuzz-data/corpus/15 new file mode 100644 index 0000000..bf27316 --- /dev/null +++ b/cbor/fuzz-data/corpus/15 @@ -0,0 +1 @@ +evaluebv2 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/1585b5f9855a069d9335f91339243d548909cb11-2 b/cbor/fuzz-data/corpus/1585b5f9855a069d9335f91339243d548909cb11-2 new file mode 100644 index 0000000..6b62061 Binary files /dev/null and b/cbor/fuzz-data/corpus/1585b5f9855a069d9335f91339243d548909cb11-2 differ diff --git a/cbor/fuzz-data/corpus/15c9f24719cfd894487c2e96f3b7bdc4d642293b-2 b/cbor/fuzz-data/corpus/15c9f24719cfd894487c2e96f3b7bdc4d642293b-2 new file mode 100644 index 0000000..9bb6367 --- /dev/null +++ b/cbor/fuzz-data/corpus/15c9f24719cfd894487c2e96f3b7bdc4d642293b-2 @@ -0,0 +1 @@ +3L300472H333611R4410150625evalue \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/16 b/cbor/fuzz-data/corpus/16 new file mode 100644 index 0000000..0d5bab1 --- /dev/null +++ b/cbor/fuzz-data/corpus/16 @@ -0,0 +1 @@ +evaluebv2 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/168e7d8cf0fb10b929c76675cc0112282e63b661-3 b/cbor/fuzz-data/corpus/168e7d8cf0fb10b929c76675cc0112282e63b661-3 new file mode 100644 index 0000000..3db6f57 Binary files /dev/null and b/cbor/fuzz-data/corpus/168e7d8cf0fb10b929c76675cc0112282e63b661-3 differ diff --git a/cbor/fuzz-data/corpus/17 b/cbor/fuzz-data/corpus/17 new file mode 100644 index 0000000..653dbe4 --- /dev/null +++ b/cbor/fuzz-data/corpus/17 @@ -0,0 +1 @@ +bk1bv1bkebohdwheecwow \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/1727d7c2d0f62487d138b97af7aea28d6d7bc65b-2 b/cbor/fuzz-data/corpus/1727d7c2d0f62487d138b97af7aea28d6d7bc65b-2 new file mode 100644 index 0000000..515beba --- /dev/null +++ b/cbor/fuzz-data/corpus/1727d7c2d0f62487d138b97af7aea28d6d7bc65b-2 @@ -0,0 +1 @@ +((2 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/18 b/cbor/fuzz-data/corpus/18 new file mode 100644 index 0000000..d788438 --- /dev/null +++ b/cbor/fuzz-data/corpus/18 @@ -0,0 +1 @@ +bkebohdwheecwowbk1bv1 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/1853df160958748f7de5638c163d644ddcde6ee4-5 b/cbor/fuzz-data/corpus/1853df160958748f7de5638c163d644ddcde6ee4-5 new file mode 100644 index 0000000..c94f8f4 --- /dev/null +++ b/cbor/fuzz-data/corpus/1853df160958748f7de5638c163d644ddcde6ee4-5 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/19 b/cbor/fuzz-data/corpus/19 new file mode 100644 index 0000000..a3a4b90 --- /dev/null +++ b/cbor/fuzz-data/corpus/19 @@ -0,0 +1 @@ +akavdwheebk1bv1 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/19020e5166ce2fae279dcf655b4cef3b28d34718-3 b/cbor/fuzz-data/corpus/19020e5166ce2fae279dcf655b4cef3b28d34718-3 new file mode 100644 index 0000000..0ac4784 Binary files /dev/null and b/cbor/fuzz-data/corpus/19020e5166ce2fae279dcf655b4cef3b28d34718-3 differ diff --git a/cbor/fuzz-data/corpus/1b3acd67ee67427f42534fc3b3c6fedaf55dcbc5-1 b/cbor/fuzz-data/corpus/1b3acd67ee67427f42534fc3b3c6fedaf55dcbc5-1 new file mode 100644 index 0000000..aebe79f --- /dev/null +++ b/cbor/fuzz-data/corpus/1b3acd67ee67427f42534fc3b3c6fedaf55dcbc5-1 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/1bf293fc161bcb07f34851ebb02c8ed65f716845-2 b/cbor/fuzz-data/corpus/1bf293fc161bcb07f34851ebb02c8ed65f716845-2 new file mode 100644 index 0000000..b2013b5 --- /dev/null +++ b/cbor/fuzz-data/corpus/1bf293fc161bcb07f34851ebb02c8ed65f716845-2 @@ -0,0 +1 @@ +Ρak2aΡakava \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/1d07c49fb0625eafa6efdc452acc07e78ea178eb-2 b/cbor/fuzz-data/corpus/1d07c49fb0625eafa6efdc452acc07e78ea178eb-2 new file mode 100644 index 0000000..eb5d250 --- /dev/null +++ b/cbor/fuzz-data/corpus/1d07c49fb0625eafa6efdc452acc07e78ea178eb-2 @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/1dcf0ec2351966fc2b0babee787f535a2683f130-1 b/cbor/fuzz-data/corpus/1dcf0ec2351966fc2b0babee787f535a2683f130-1 new file mode 100644 index 0000000..07e2dac --- /dev/null +++ b/cbor/fuzz-data/corpus/1dcf0ec2351966fc2b0babee787f535a2683f130-1 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/1f2c63081af7dfb504c6239e546105b2582e4e67-8 b/cbor/fuzz-data/corpus/1f2c63081af7dfb504c6239e546105b2582e4e67-8 new file mode 100644 index 0000000..1231ec2 --- /dev/null +++ b/cbor/fuzz-data/corpus/1f2c63081af7dfb504c6239e546105b2582e4e67-8 @@ -0,0 +1 @@ +      \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/20 b/cbor/fuzz-data/corpus/20 new file mode 100644 index 0000000..1ba05eb --- /dev/null +++ b/cbor/fuzz-data/corpus/20 @@ -0,0 +1 @@ +akavdwheebk1bv1 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/20bfe752bfdb8783a109db7003ed214534463e7e-1 b/cbor/fuzz-data/corpus/20bfe752bfdb8783a109db7003ed214534463e7e-1 new file mode 100644 index 0000000..65f2bf6 --- /dev/null +++ b/cbor/fuzz-data/corpus/20bfe752bfdb8783a109db7003ed214534463e7e-1 @@ -0,0 +1 @@ +B@ \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/20eec9a326b70973a6f008872e75e44eeb833c88-3 b/cbor/fuzz-data/corpus/20eec9a326b70973a6f008872e75e44eeb833c88-3 new file mode 100644 index 0000000..f620390 Binary files /dev/null and b/cbor/fuzz-data/corpus/20eec9a326b70973a6f008872e75e44eeb833c88-3 differ diff --git a/cbor/fuzz-data/corpus/21 b/cbor/fuzz-data/corpus/21 new file mode 100644 index 0000000..9e49098 --- /dev/null +++ b/cbor/fuzz-data/corpus/21 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/21ae693e7e7497a587c96bfe964be76f57c2fe7c-2 b/cbor/fuzz-data/corpus/21ae693e7e7497a587c96bfe964be76f57c2fe7c-2 new file mode 100644 index 0000000..ab6e3ed --- /dev/null +++ b/cbor/fuzz-data/corpus/21ae693e7e7497a587c96bfe964be76f57c2fe7c-2 @@ -0,0 +1 @@ +4896278347656252 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/22 b/cbor/fuzz-data/corpus/22 new file mode 100644 index 0000000..c518287 --- /dev/null +++ b/cbor/fuzz-data/corpus/22 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/225560db0daa6b6a93a91a063f50072205e9e0f1-11 b/cbor/fuzz-data/corpus/225560db0daa6b6a93a91a063f50072205e9e0f1-11 new file mode 100644 index 0000000..6ef612b Binary files /dev/null and b/cbor/fuzz-data/corpus/225560db0daa6b6a93a91a063f50072205e9e0f1-11 differ diff --git a/cbor/fuzz-data/corpus/23 b/cbor/fuzz-data/corpus/23 new file mode 100644 index 0000000..0e641ec --- /dev/null +++ b/cbor/fuzz-data/corpus/23 @@ -0,0 +1 @@ +akbk2bv2 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/231bf1bd37eeeefa3a174bc3f96309141ca5eb54-7 b/cbor/fuzz-data/corpus/231bf1bd37eeeefa3a174bc3f96309141ca5eb54-7 new file mode 100644 index 0000000..5836e81 --- /dev/null +++ b/cbor/fuzz-data/corpus/231bf1bd37eeeefa3a174bc3f96309141ca5eb54-7 @@ -0,0 +1 @@ +|| \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/23eb4d3f4155395a74e9d534f97ff4c1908f5aac-1 b/cbor/fuzz-data/corpus/23eb4d3f4155395a74e9d534f97ff4c1908f5aac-1 new file mode 100644 index 0000000..24de910 --- /dev/null +++ b/cbor/fuzz-data/corpus/23eb4d3f4155395a74e9d534f97ff4c1908f5aac-1 @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/24 b/cbor/fuzz-data/corpus/24 new file mode 100644 index 0000000..e08452b --- /dev/null +++ b/cbor/fuzz-data/corpus/24 @@ -0,0 +1 @@ +akbk2bv2 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/25 b/cbor/fuzz-data/corpus/25 new file mode 100644 index 0000000..f7a8cad --- /dev/null +++ b/cbor/fuzz-data/corpus/25 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/25f9e7bff39c2cb6f55a6193b714a20f6ba377e3-1 b/cbor/fuzz-data/corpus/25f9e7bff39c2cb6f55a6193b714a20f6ba377e3-1 new file mode 100644 index 0000000..74863d3 --- /dev/null +++ b/cbor/fuzz-data/corpus/25f9e7bff39c2cb6f55a6193b714a20f6ba377e3-1 @@ -0,0 +1 @@ +(2 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/26 b/cbor/fuzz-data/corpus/26 new file mode 100644 index 0000000..6977b91 --- /dev/null +++ b/cbor/fuzz-data/corpus/26 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/26eb9e442db2ac77c4e90d863163bbf456b68994-6 b/cbor/fuzz-data/corpus/26eb9e442db2ac77c4e90d863163bbf456b68994-6 new file mode 100644 index 0000000..d60c582 --- /dev/null +++ b/cbor/fuzz-data/corpus/26eb9e442db2ac77c4e90d863163bbf456b68994-6 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/277c19167c80e9096850d842eb52923e75b2c675-7 b/cbor/fuzz-data/corpus/277c19167c80e9096850d842eb52923e75b2c675-7 new file mode 100644 index 0000000..4015f79 --- /dev/null +++ b/cbor/fuzz-data/corpus/277c19167c80e9096850d842eb52923e75b2c675-7 @@ -0,0 +1 @@ +    \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/28 b/cbor/fuzz-data/corpus/28 new file mode 100644 index 0000000..d4e7930 --- /dev/null +++ b/cbor/fuzz-data/corpus/28 @@ -0,0 +1 @@ +ak \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/29 b/cbor/fuzz-data/corpus/29 new file mode 100644 index 0000000..732e86f --- /dev/null +++ b/cbor/fuzz-data/corpus/29 @@ -0,0 +1 @@ +ak \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/2ab10899a9f4840cc5359c9040142cf722f1172d-4 b/cbor/fuzz-data/corpus/2ab10899a9f4840cc5359c9040142cf722f1172d-4 new file mode 100644 index 0000000..a7b80bc --- /dev/null +++ b/cbor/fuzz-data/corpus/2ab10899a9f4840cc5359c9040142cf722f1172d-4 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/2b5a1da7aa8fe76ab1532e6ec2f73c44631d8bb6-2 b/cbor/fuzz-data/corpus/2b5a1da7aa8fe76ab1532e6ec2f73c44631d8bb6-2 new file mode 100644 index 0000000..84117bc --- /dev/null +++ b/cbor/fuzz-data/corpus/2b5a1da7aa8fe76ab1532e6ec2f73c44631d8bb6-2 @@ -0,0 +1 @@ +be2220446025031300472613533361107144567552939551135250625333611640625B@evalue \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/2ba44f2bb00ff7088debc3cec9192248ebecad65-3 b/cbor/fuzz-data/corpus/2ba44f2bb00ff7088debc3cec9192248ebecad65-3 new file mode 100644 index 0000000..a66c4d0 --- /dev/null +++ b/cbor/fuzz-data/corpus/2ba44f2bb00ff7088debc3cec9192248ebecad65-3 @@ -0,0 +1 @@ +68081828+8485868788898888528384%58688888 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/2c79b2121c02607f55589d5a2b285f1642bee691-7 b/cbor/fuzz-data/corpus/2c79b2121c02607f55589d5a2b285f1642bee691-7 new file mode 100644 index 0000000..abe5019 --- /dev/null +++ b/cbor/fuzz-data/corpus/2c79b2121c02607f55589d5a2b285f1642bee691-7 @@ -0,0 +1 @@ +______ \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/2cbc821a695966cdcfb30aaeb9b88e6b285a6dd4-1 b/cbor/fuzz-data/corpus/2cbc821a695966cdcfb30aaeb9b88e6b285a6dd4-1 new file mode 100644 index 0000000..c5196fd --- /dev/null +++ b/cbor/fuzz-data/corpus/2cbc821a695966cdcfb30aaeb9b88e6b285a6dd4-1 @@ -0,0 +1 @@ +k \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/2e3cb6bd56a850569005199dd5b2aeef973a4823-14 b/cbor/fuzz-data/corpus/2e3cb6bd56a850569005199dd5b2aeef973a4823-14 new file mode 100644 index 0000000..7f7be80 --- /dev/null +++ b/cbor/fuzz-data/corpus/2e3cb6bd56a850569005199dd5b2aeef973a4823-14 @@ -0,0 +1 @@ +;;;;; \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/2fdbd115e9e45c784d3306bb48a037073635576e-3 b/cbor/fuzz-data/corpus/2fdbd115e9e45c784d3306bb48a037073635576e-3 new file mode 100644 index 0000000..2e47c92 --- /dev/null +++ b/cbor/fuzz-data/corpus/2fdbd115e9e45c784d3306bb48a037073635576e-3 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3 b/cbor/fuzz-data/corpus/3 new file mode 100644 index 0000000..48f757c --- /dev/null +++ b/cbor/fuzz-data/corpus/3 @@ -0,0 +1,2 @@ +qstr +broken tabbed \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/30 b/cbor/fuzz-data/corpus/30 new file mode 100644 index 0000000..47b87ba --- /dev/null +++ b/cbor/fuzz-data/corpus/30 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3038b2c85556fea3b84166ea45fe08b3de9f00d1-6 b/cbor/fuzz-data/corpus/3038b2c85556fea3b84166ea45fe08b3de9f00d1-6 new file mode 100644 index 0000000..758b8dc --- /dev/null +++ b/cbor/fuzz-data/corpus/3038b2c85556fea3b84166ea45fe08b3de9f00d1-6 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3153007da02255c6dbcdca3548276fb83d40a618-5 b/cbor/fuzz-data/corpus/3153007da02255c6dbcdca3548276fb83d40a618-5 new file mode 100644 index 0000000..645de7a --- /dev/null +++ b/cbor/fuzz-data/corpus/3153007da02255c6dbcdca3548276fb83d40a618-5 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/33 b/cbor/fuzz-data/corpus/33 new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/cbor/fuzz-data/corpus/33 differ diff --git a/cbor/fuzz-data/corpus/3323452904721da3ad33b3e74040d7515ac33956 b/cbor/fuzz-data/corpus/3323452904721da3ad33b3e74040d7515ac33956 new file mode 100644 index 0000000..391b2e3 --- /dev/null +++ b/cbor/fuzz-data/corpus/3323452904721da3ad33b3e74040d7515ac33956 @@ -0,0 +1 @@ +bke \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/338182ee6131345aa9bdf1bf95d4593ec6bbbc35-1 b/cbor/fuzz-data/corpus/338182ee6131345aa9bdf1bf95d4593ec6bbbc35-1 new file mode 100644 index 0000000..902b8c6 --- /dev/null +++ b/cbor/fuzz-data/corpus/338182ee6131345aa9bdf1bf95d4593ec6bbbc35-1 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/35 b/cbor/fuzz-data/corpus/35 new file mode 100644 index 0000000..6b2aaa7 --- /dev/null +++ b/cbor/fuzz-data/corpus/35 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/36 b/cbor/fuzz-data/corpus/36 new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/cbor/fuzz-data/corpus/36 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/37 b/cbor/fuzz-data/corpus/37 new file mode 100644 index 0000000..bfefdad --- /dev/null +++ b/cbor/fuzz-data/corpus/37 @@ -0,0 +1 @@ +8c \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3709ecf430e6a575c9982b552e382e6a6af6c67f-1 b/cbor/fuzz-data/corpus/3709ecf430e6a575c9982b552e382e6a6af6c67f-1 new file mode 100644 index 0000000..9b3fe1c --- /dev/null +++ b/cbor/fuzz-data/corpus/3709ecf430e6a575c9982b552e382e6a6af6c67f-1 @@ -0,0 +1 @@ +r)b \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/373e668b7f9615894ca774d66c16c13c937f1b4e-3 b/cbor/fuzz-data/corpus/373e668b7f9615894ca774d66c16c13c937f1b4e-3 new file mode 100644 index 0000000..bd81e8b --- /dev/null +++ b/cbor/fuzz-data/corpus/373e668b7f9615894ca774d66c16c13c937f1b4e-3 @@ -0,0 +1 @@ +؀؀؀ \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3893c5e0bb87be06781891b248476275ec4a7afb-7 b/cbor/fuzz-data/corpus/3893c5e0bb87be06781891b248476275ec4a7afb-7 new file mode 100644 index 0000000..7a1adf1 --- /dev/null +++ b/cbor/fuzz-data/corpus/3893c5e0bb87be06781891b248476275ec4a7afb-7 @@ -0,0 +1 @@ +b5 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/39 b/cbor/fuzz-data/corpus/39 new file mode 100644 index 0000000..9162819 Binary files /dev/null and b/cbor/fuzz-data/corpus/39 differ diff --git a/cbor/fuzz-data/corpus/3a19c11c214fdf064c441bf4746d6c7215c06b37-1 b/cbor/fuzz-data/corpus/3a19c11c214fdf064c441bf4746d6c7215c06b37-1 new file mode 100644 index 0000000..b568a4c --- /dev/null +++ b/cbor/fuzz-data/corpus/3a19c11c214fdf064c441bf4746d6c7215c06b37-1 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3a536840718847fec5c1e4f9258cba9d39960328-8 b/cbor/fuzz-data/corpus/3a536840718847fec5c1e4f9258cba9d39960328-8 new file mode 100644 index 0000000..d58e009 --- /dev/null +++ b/cbor/fuzz-data/corpus/3a536840718847fec5c1e4f9258cba9d39960328-8 @@ -0,0 +1 @@ +_________ \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3b6dab0d666049b6325a48b4dd8e74a771573c2e-3 b/cbor/fuzz-data/corpus/3b6dab0d666049b6325a48b4dd8e74a771573c2e-3 new file mode 100644 index 0000000..e6fac0e --- /dev/null +++ b/cbor/fuzz-data/corpus/3b6dab0d666049b6325a48b4dd8e74a771573c2e-3 @@ -0,0 +1 @@ +22044602503130047223415101562561353336110714456755293953613525062533361164062 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3d4ad8fe69ab38faabbcf4b783176e7accfe8885-4 b/cbor/fuzz-data/corpus/3d4ad8fe69ab38faabbcf4b783176e7accfe8885-4 new file mode 100644 index 0000000..620504b --- /dev/null +++ b/cbor/fuzz-data/corpus/3d4ad8fe69ab38faabbcf4b783176e7accfe8885-4 @@ -0,0 +1 @@ +@@@@@@@@@@@@@@@@@ \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3e0646350624ee86a1bb26a39268018fee36e309-6 b/cbor/fuzz-data/corpus/3e0646350624ee86a1bb26a39268018fee36e309-6 new file mode 100644 index 0000000..57c5deb Binary files /dev/null and b/cbor/fuzz-data/corpus/3e0646350624ee86a1bb26a39268018fee36e309-6 differ diff --git a/cbor/fuzz-data/corpus/3e4c416916ff8372a324f502ede8ece3acef8022-2 b/cbor/fuzz-data/corpus/3e4c416916ff8372a324f502ede8ece3acef8022-2 new file mode 100644 index 0000000..f92edd8 --- /dev/null +++ b/cbor/fuzz-data/corpus/3e4c416916ff8372a324f502ede8ece3acef8022-2 @@ -0,0 +1 @@ +o hex data for %x ringbe22204460250313004726333611640625evalue \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3f46aec3d90430dee3b7c7869272a20b66e66822-2 b/cbor/fuzz-data/corpus/3f46aec3d90430dee3b7c7869272a20b66e66822-2 new file mode 100644 index 0000000..ff19f62 Binary files /dev/null and b/cbor/fuzz-data/corpus/3f46aec3d90430dee3b7c7869272a20b66e66822-2 differ diff --git a/cbor/fuzz-data/corpus/3f6cb64769f8cbbf5430f1fd926b8e3807f80fe5-8 b/cbor/fuzz-data/corpus/3f6cb64769f8cbbf5430f1fd926b8e3807f80fe5-8 new file mode 100644 index 0000000..511d0d9 --- /dev/null +++ b/cbor/fuzz-data/corpus/3f6cb64769f8cbbf5430f1fd926b8e3807f80fe5-8 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/3f96c10111ce5224c24453269b12e58e71410cbb-2 b/cbor/fuzz-data/corpus/3f96c10111ce5224c24453269b12e58e71410cbb-2 new file mode 100644 index 0000000..4fea5ba Binary files /dev/null and b/cbor/fuzz-data/corpus/3f96c10111ce5224c24453269b12e58e71410cbb-2 differ diff --git a/cbor/fuzz-data/corpus/3fa8cb6031e579294fa5b9106e2ad2e522f6ed36-3 b/cbor/fuzz-data/corpus/3fa8cb6031e579294fa5b9106e2ad2e522f6ed36-3 new file mode 100644 index 0000000..c1baa51 Binary files /dev/null and b/cbor/fuzz-data/corpus/3fa8cb6031e579294fa5b9106e2ad2e522f6ed36-3 differ diff --git a/cbor/fuzz-data/corpus/4 b/cbor/fuzz-data/corpus/4 new file mode 100644 index 0000000..eea1bf0 --- /dev/null +++ b/cbor/fuzz-data/corpus/4 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/40 b/cbor/fuzz-data/corpus/40 new file mode 100644 index 0000000..8e79bf5 Binary files /dev/null and b/cbor/fuzz-data/corpus/40 differ diff --git a/cbor/fuzz-data/corpus/4035f88ba43ca06be340a78152bf6c756a3a4a75-5 b/cbor/fuzz-data/corpus/4035f88ba43ca06be340a78152bf6c756a3a4a75-5 new file mode 100644 index 0000000..b003216 --- /dev/null +++ b/cbor/fuzz-data/corpus/4035f88ba43ca06be340a78152bf6c756a3a4a75-5 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/41 b/cbor/fuzz-data/corpus/41 new file mode 100644 index 0000000..96081d3 --- /dev/null +++ b/cbor/fuzz-data/corpus/41 @@ -0,0 +1 @@ +Evalue \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/4179840e7d2494deb7a36f1a5472b872ca1cb0b3-2 b/cbor/fuzz-data/corpus/4179840e7d2494deb7a36f1a5472b872ca1cb0b3-2 new file mode 100644 index 0000000..9e54fdc --- /dev/null +++ b/cbor/fuzz-data/corpus/4179840e7d2494deb7a36f1a5472b872ca1cb0b3-2 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/4229be2eec19a27a182047f243a129916ed287d4-12 b/cbor/fuzz-data/corpus/4229be2eec19a27a182047f243a129916ed287d4-12 new file mode 100644 index 0000000..6160d3d --- /dev/null +++ b/cbor/fuzz-data/corpus/4229be2eec19a27a182047f243a129916ed287d4-12 @@ -0,0 +1 @@ +,,,, \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/42b25dc8ead0cd993cb87ea5a6c046ae064f9f9d-10 b/cbor/fuzz-data/corpus/42b25dc8ead0cd993cb87ea5a6c046ae064f9f9d-10 new file mode 100644 index 0000000..ace69c4 --- /dev/null +++ b/cbor/fuzz-data/corpus/42b25dc8ead0cd993cb87ea5a6c046ae064f9f9d-10 @@ -0,0 +1 @@ +b55555555 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/42c67beca88f373dc5d1d405f531b7243e22675a-6 b/cbor/fuzz-data/corpus/42c67beca88f373dc5d1d405f531b7243e22675a-6 new file mode 100644 index 0000000..a58684f --- /dev/null +++ b/cbor/fuzz-data/corpus/42c67beca88f373dc5d1d405f531b7243e22675a-6 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/431a48d15040702c37371f60731a0b65c5f36737-5 b/cbor/fuzz-data/corpus/431a48d15040702c37371f60731a0b65c5f36737-5 new file mode 100644 index 0000000..53859ea --- /dev/null +++ b/cbor/fuzz-data/corpus/431a48d15040702c37371f60731a0b65c5f36737-5 @@ -0,0 +1 @@ +`` \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/436749ab61521f1678c2604bffcd3dd60734a234-2 b/cbor/fuzz-data/corpus/436749ab61521f1678c2604bffcd3dd60734a234-2 new file mode 100644 index 0000000..37acd54 Binary files /dev/null and b/cbor/fuzz-data/corpus/436749ab61521f1678c2604bffcd3dd60734a234-2 differ diff --git a/cbor/fuzz-data/corpus/43d3a02d111c14ae58acc5925ef20358d41155e6-8 b/cbor/fuzz-data/corpus/43d3a02d111c14ae58acc5925ef20358d41155e6-8 new file mode 100644 index 0000000..8770cf0 --- /dev/null +++ b/cbor/fuzz-data/corpus/43d3a02d111c14ae58acc5925ef20358d41155e6-8 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/43e1b0e35f4838a37b7b13e8be6f38144c10f3ef-1 b/cbor/fuzz-data/corpus/43e1b0e35f4838a37b7b13e8be6f38144c10f3ef-1 new file mode 100644 index 0000000..180a10c Binary files /dev/null and b/cbor/fuzz-data/corpus/43e1b0e35f4838a37b7b13e8be6f38144c10f3ef-1 differ diff --git a/cbor/fuzz-data/corpus/43e8e71280502c2a4abb858a0085389c104cea11-5 b/cbor/fuzz-data/corpus/43e8e71280502c2a4abb858a0085389c104cea11-5 new file mode 100644 index 0000000..6c58b5c --- /dev/null +++ b/cbor/fuzz-data/corpus/43e8e71280502c2a4abb858a0085389c104cea11-5 @@ -0,0 +1 @@ +| \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/44 b/cbor/fuzz-data/corpus/44 new file mode 100644 index 0000000..9b4ff92 Binary files /dev/null and b/cbor/fuzz-data/corpus/44 differ diff --git a/cbor/fuzz-data/corpus/448fb8d6a6fd4e00625ce711fe46c287672348e1-5 b/cbor/fuzz-data/corpus/448fb8d6a6fd4e00625ce711fe46c287672348e1-5 new file mode 100644 index 0000000..6f49452 Binary files /dev/null and b/cbor/fuzz-data/corpus/448fb8d6a6fd4e00625ce711fe46c287672348e1-5 differ diff --git a/cbor/fuzz-data/corpus/45 b/cbor/fuzz-data/corpus/45 new file mode 100644 index 0000000..aefcada --- /dev/null +++ b/cbor/fuzz-data/corpus/45 @@ -0,0 +1 @@ +2akav \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/45355eabf19d43478d3d8b952ea6ef5b4b1f9eee-1 b/cbor/fuzz-data/corpus/45355eabf19d43478d3d8b952ea6ef5b4b1f9eee-1 new file mode 100644 index 0000000..efd7a53 --- /dev/null +++ b/cbor/fuzz-data/corpus/45355eabf19d43478d3d8b952ea6ef5b4b1f9eee-1 @@ -0,0 +1 @@ +ؐ \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/46 b/cbor/fuzz-data/corpus/46 new file mode 100644 index 0000000..e8cdf2b --- /dev/null +++ b/cbor/fuzz-data/corpus/46 @@ -0,0 +1 @@ +2ewahoo \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/47 b/cbor/fuzz-data/corpus/47 new file mode 100644 index 0000000..7c976db --- /dev/null +++ b/cbor/fuzz-data/corpus/47 @@ -0,0 +1 @@ +(2c500 \ No newline at end of file diff --git a/cbor/fuzz-data/corpus/48 b/cbor/fuzz-data/corpus/48 new file mode 100644 index 0000000..14c40aa --- /dev/null +++ b/cbor/fuzz-data/corpus/48 @@ -0,0 +1 @@ +bk12c500bk2huntaggedbk3