-
Notifications
You must be signed in to change notification settings - Fork 0
/
fuzzpuzz.dict
51 lines (47 loc) · 1.1 KB
/
fuzzpuzz.dict
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# AFL dictionary to help with fuzzing the Puzzles save-file loader.
# All the keywords in their canonical form.
keyword="SAVEFILE:"
keyword="VERSION :"
keyword="GAME :"
keyword="PARAMS :"
keyword="CPARAMS :"
keyword="HEXSEED :"
keyword="SEED :"
keyword="DESC :"
keyword="PRIVDESC:"
keyword="AUXINFO :"
keyword="UI :"
keyword="TIME :"
keyword="NSTATES :"
keyword="STATEPOS:"
keyword="MOVE :"
keyword="SOLVE :"
keyword="RESTART :"
# Interesting integers from AFL++ "include/config.h" in decimal form.
interesting_8="-128"
interesting_8="-1"
interesting_8="0"
interesting_8="1"
interesting_8="16"
interesting_8="32"
interesting_8="64"
interesting_8="100"
interesting_8="127"
interesting_16="-32768"
interesting_16="-129"
interesting_16="128"
interesting_16="255"
interesting_16="256"
interesting_16="512"
interesting_16="1000"
interesting_16="1024"
interesting_16="4096"
interesting_16="32767"
interesting_32="-2147483648"
interesting_32="-100663046"
interesting_32="-32769"
interesting_32="32768"
interesting_32="65535"
interesting_32="65536"
interesting_32="100663045"
interesting_32="2147483647"