Files
live-campus-mcs-p-2027.2/Semaine_10/Jour_03/offset.py
T
2026-06-12 20:25:28 +02:00

10 lines
180 B
Python

from pwn import *
pattern = cyclic(200)
p = process('./vuln_esdi')
print(pattern)
print(f"Le PATTERN a une longueur de {len(pattern)} caractères.")
p.sendline(pattern)
p.wait()