Skip to content

Commit ccbf1ce

Browse files
committed
Add some American Fuzzy Lop findings
american fuzzy lop 2.57b (fuzz) ┌─ process timing ─────────────────────────────────────┬─ overall results ─────┐ │ run time : 0 days, 10 hrs, 55 min, 50 sec │ cycles done : 22 │ │ last new path : 0 days, 0 hrs, 1 min, 17 sec │ total paths : 3157 │ │ last uniq crash : none seen yet │ uniq crashes : 0 │ │ last uniq hang : none seen yet │ uniq hangs : 0 │ ├─ cycle progress ────────────────────┬─ map coverage ─┴───────────────────────┤ │ now processing : 3123* (98.92%) │ map density : 1.50% / 6.58% │ │ paths timed out : 0 (0.00%) │ count coverage : 4.72 bits/tuple │ ├─ stage progress ────────────────────┼─ findings in depth ────────────────────┤ │ now trying : arith 8/8 │ favored paths : 653 (20.68%) │ │ stage execs : 68.4k/315k (21.68%) │ new edges on : 1025 (32.47%) │ │ total execs : 105M │ total crashes : 0 (0 unique) │ │ exec speed : 2791/sec │ total tmouts : 0 (0 unique) │ ├─ fuzzing strategy yields ───────────┴───────────────┬─ path geometry ────────┤ │ bit flips : 296/3.73M, 129/3.73M, 45/3.72M │ levels : 25 │ │ byte flips : 0/465k, 3/438k, 4/434k │ pending : 1115 │ │ arithmetics : 251/24.3M, 2/287k, 0/22.6k │ pend fav : 0 │ │ known ints : 35/2.54M, 5/12.1M, 0/18.9M │ own finds : 3154 │ │ dictionary : 0/0, 0/0, 234/19.1M │ imported : n/a │ │ havoc : 2150/15.1M, 0/0 │ stability : 100.00% │ │ trim : 26.11%/150k, 5.30% ├────────────────────────┘ └─────────────────────────────────────────────────────┘ [cpu000: 1%]
1 parent 62357a7 commit ccbf1ce

File tree

2,307 files changed

+76546
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,307 files changed

+76546
-8
lines changed

fuzzies/id:000000,orig:t1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]

fuzzies/id:000001,orig:t2

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"empty_object": {},
3+
"empty_array": [],
4+
"nested_empty": {"a": {}, "b": []},
5+
"deep_nesting": {
6+
"level1": {
7+
"level2": { "level3": {
8+
"level4": {
9+
"level5": "deep"
10+
}
11+
}
12+
}
13+
}
14+
},
15+
"array_nesting": [[[[[["deep"]]]]]],
16+
"number_edge_cases": {
17+
"zero": 0,
18+
"negative_zero": -0,
19+
"max_int": 90071991,
20+
"min_int": -9007199254740991,
21+
"decimal_point": 0.0,
22+
"negative_decimal": -0.0,
23+
"scientific": 1.23e-4,
24+
"negative_scientific": -1.23e+4,
25+
"float_precision": 1.2345678901234567
26+
},
27+
"string_edge_cases": {
28+
"empty": "",
29+
"space": " ",
30+
"escaped_quotes": "\"quoted\"",
31+
"escaped_chars": "\b\f\n\r\t",
32+
"unicode_escapes": "\u0000\uffff\ud800\udc00",
33+
"slashes": "\\\/\\\\",
34+
"control_chars": "\u0001\u001f",
35+
"surrogate_pairs": "\ud83d\ude00"
36+
},
37+
"array_edge_cases": [
38+
null,
39+
true,
40+
false,
41+
[],
42+
[[]],
43+
[null, null],
44+
[true, false, null],
45+
["", " ", " "],
46+
[0, -0, 0.0, -0.0]
47+
],
48+
"mixed_nesting": {
49+
"array_in_object": {"array": [1,2,3]},
50+
"object_in_array": [{"key": "value"}],
51+
"complex": [{"a":[{"b":{"c":[1,2,3]}}]}]
52+
},
53+
"special_chars": {
54+
"ascii_boundaries": "\u0000\u001f\u007f",
55+
"unicode_boundaries": "\u0080\u00ff\u0100\uffff",
56+
"quotes_in_strings": "\"'\"'",
57+
"whitespace": "\r\n\t ",
58+
"zero_width": "\u200b\ufeff",
59+
"direction_marks": "\u200e\u200f",
60+
"combining_chars": "a\u0300\u0301\u0302"
61+
},
62+
"large_structures": {
63+
"repeated_keys": {"a":"a","b":"b","c":"c","d":"d","e":"e","f":"f","g":"g","h":"h","i":"i","j":"j"},
64+
"long_array": [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],
65+
"nested_arrays": [[1],[2],[3],[4],[5],[6],[7],[8],[9],[10]]
66+
},
67+
"type_transitions": {
68+
"number_to_string": ["1", "2", "3"],
69+
"string_to_number": [1, "2", 3],
70+
"boolean_mix": [true, "true", 1, "1"],
71+
"null_mix": [null, "null", 0, ""]
72+
},
73+
"key_edge_cases": {
74+
"": "empty_key",
75+
" ": "space_key",
76+
"\"": "quote_key",
77+
"\\": "backslash_key",
78+
"\u0000": "null_char_key",
79+
"\uffff": "max_unicode_key"
80+
}
81+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
�1, "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
1, "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{1, "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[�, "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[0, "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1. "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1- "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1,�"hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1,`"hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1,0"hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1,""hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, 2hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "�µ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hB�💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "h��💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "h�💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "h��💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "h�5💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµp���\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµП��\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ����\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ����\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ���\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ�ߒ�\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘�u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘|u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\�1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\51234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\e1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\t1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u�234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u0234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u1�34\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u12�4\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u123�\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u1234|x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u1234\x�2",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u1234\x52",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u1234\x1�",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
]1, "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[14 "hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1,8"hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1,,"hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, :hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ蟒�\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u1234<x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u1234\t12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, "hµ💘\u1234\x22",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[1, -hµ💘\u1234\x12",4e-17, 4, {
2+
"k": null,
3+
"roo": -1
4+
}]

0 commit comments

Comments
 (0)