-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfuzzer4.py
55 lines (41 loc) · 1.39 KB
/
fuzzer4.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
#!/usr/bin/python
# 5-line fuzzer below is from Charlie Miller's
# "Babysitting an Army of Monkeys":
# Part 1 - http://www.youtube.com/watch?v=Xnwodi2CBws
# Part 2 - http://www.youtube.com/watch?v=lK5fgCvS2N
# List of files to use as initial seed
file_list=[
"doc_files_samples\LiveCode-Reviewers-Guide-April-2013.doc",
"doc_files_samples\Work Instructions - Rally Naming Conventions.docx",
"doc_files_samples\Parilak.doc"
]
# List of applications to test (vymazal som jednu dalsiu, pouzivam iba jednu a upravil som to dalej v kode)
apps = [
"\Program Files\Microsoft Office\Office14\WINWORD.EXE"
]
fuzz_output = "fuzz"
FuzzFactor = 244
num_tests = 10000
########### end configuration ##########
import math
import random
import string
import subprocess
import time
for i in range(num_tests):
file_choice = random.choice(file_list)
#app = random.choice(apps)
buf = bytearray(open(file_choice, 'r+b').read())
# start Charlie Miller code
numwrites=random.randrange(math.ceil((float(len(buf)) / FuzzFactor)))+1
for j in range(numwrites):
rbyte = random.randrange(256)
rn = random.randrange(len(buf))
buf[rn] = "%c"%(rbyte)
#end Charlie Miller code
open(fuzz_output, 'w+b').write(buf)
process = subprocess.Popen([apps, fuzz_output])
time.sleep(1)
crashed = process.poll()
if not crashed:
process.terminate()