aboutsummaryrefslogtreecommitdiff
path: root/programs/crashtest.py
blob: f3a47533f1364e1dd1ac7c6edd710fc2c34b09b6 (plain)
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
#!/usr/bin/env python3
import glob
import subprocess
import os

reportdir = "reports/"
fuzzer = "./fuzzer_upcall"

class bcolors:
	HEADER = '\033[95m'
	OKBLUE = '\033[94m'
	OKGREEN = '\033[92m'
	WARNING = '\033[93m'
	FAIL = '\033[91m'
	ENDC = '\033[0m'
	BOLD = '\033[1m'
	UNDERLINE = '\033[4m'


print("Testing crashfiles")

FNULL = open(os.devnull, "w")
crashfiles = []
crashfiles.extend(glob.glob("crash-*"))
crashfiles.extend(glob.glob("timeout-*"))

if not os.path.exists(reportdir):
	os.makedirs(reportdir)

num_files = len(crashfiles)
filecounter = 1
for filename in crashfiles:
	filename_report = '{}{}{}'.format(reportdir, filename, '.report')
	reportfile = open(filename_report, "w")
	fuzzer_retval = subprocess.call([fuzzer, "-timeout=6", filename], stdout=reportfile, stderr=reportfile)
	if fuzzer_retval == 0:
		print(bcolors.FAIL, "[", filecounter, "/", num_files, "]", filename,"- not reproducable", bcolors.ENDC)
		reportfile.close()
		os.remove(filename_report)
	else:
		print(bcolors.OKGREEN, "[", filecounter, "/", num_files, "]", filename, "- reproducable", bcolors.ENDC)
		reportfile.write("\n>> HEXDUMP <<\n\n")
		reportfile.flush()
		subprocess.call(["hexdump", "-Cv", filename], stdout=reportfile)

	filecounter = filecounter + 1