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
| #!/usr/bin/env python3
# -*- coding: utf-8 -*-
# This exploit template was generated via:
# $ pwn template --host ctf2024-entry.r3kapig.com --port 31759
from pwn import *
# Set up pwntools for the correct architecture
context.update(arch='i386')
exe = './path/to/binary'
# Many built-in settings can be controlled on the command-line and show up
# in "args". For example, to dump all data sent/received, and disable ASLR
# for all created processes...
# ./exploit.py DEBUG NOASLR
# ./exploit.py GDB HOST=example.com PORT=4141 EXE=/tmp/executable
host = args.HOST or 'ctf2024-entry.r3kapig.com'
port = int(args.PORT or 31759)
def start_local(argv=[], *a, **kw):
'''Execute the target binary locally'''
if args.GDB:
return gdb.debug([exe] + argv, gdbscript=gdbscript, *a, **kw)
else:
return process([exe] + 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.LOCAL:
return start_local(argv, *a, **kw)
else:
return start_remote(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
#===========================================================
io = start()
more_than_90 = 0
more_than_95 = 0
more_than_99 = 0
for i in range(500):
log.info(f"Iteration {i}")
io.recvuntil(b"top_10_pred : ")
l = io.recvline().decode().strip().replace('[', '').replace(']', '').replace(' ', '').split(',')
l = [float(i) for i in l]
log.info(f" - [0] {round(l[0], 4)}")
log.info(f" - [1] {round(l[1], 4)}")
if(l[0] > 0.90 and l[1] < 0.20):
log.info(f" - Yes")
io.sendlineafter(b"Is this picture in the training set?", b"1")
else:
log.info(f" - No")
io.sendlineafter(b"Is this picture in the training set?", b"0")
if l[0] > 0.99:
more_than_99 += 1
elif l[0] > 0.95:
more_than_95 += 1
elif l[0] > 0.9:
more_than_90 += 1
log.info(f"More than 0.90: {more_than_90} ({more_than_90/500})")
log.info(f"More than 0.95: {more_than_95} ({more_than_95/500})")
log.info(f"More than 0.99: {more_than_99} ({more_than_99/500})")
io.interactive()
|