Split
Writeup for Split (rev) - HackTheBox x Synack RedTeamFive CTF (2021) 💜
Video Walkthrough
Solution
backdoor.py
from pwn import *
# Load our binary
exe = 'split'
elf = context.binary = ELF(exe, checksec=False)
# Patch out the call to ptrace ;)
elf.asm(elf.symbols.ptrace, 'ret')
# Save the patched binary
elf.save('patched')
Last updated