10 lines
180 B
Python
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()
|