-
Notifications
You must be signed in to change notification settings - Fork 9
/
config.py
89 lines (83 loc) · 1.18 KB
/
config.py
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
#
# litefuzz project
#
# config.py
#
#
import signal
# main
address = None
attach = None
dbg32 = None
debug = False
cmd = None
count = 0
current_input = None
env = None
exec_avg = 0
exec_times = []
fuzz = False
golang = False
inputs = None
insulate = False
insulate_pid = None
key = None
kill_proc = None
iterations = 0
maxtime = 0
min = False
min_current = 0
min_original = 0
min_pc = None
min_hit = False
supermin = False
memdump_pid = None
multibin = False
multistr = False
multinum = None
mode = 0
nofuzz = False
pb = None
process = None
report_crash = False
report_list = []
repro = False
returncode = None
reusedir = None
rmfile = None
rmtemp = True
run_id = 0
session = []
session_prev = []
show_stats = True
static_fuzz_file = None
target = None
try_again = False
# crash
crash = False
duplicate = False
crashes = 0
dups = 0
current_pc = None
pc_list = []
# network
broken_pipe = False
conn = None
sock = None
context = None
cli_conn = None
down = False
prot = None
host = None
port = None
replay_file = None
cert = None
tls = False
triage = False
# files
crash_file = ''
file_ext = ''
# pause/resume
org_sigint = signal.getsignal(signal.SIGINT)