Wireshark, twoo twooo two twoo

This commit is contained in:
Maxime Vorwerk
2024-06-22 12:32:39 +02:00
parent 993ade098d
commit d92d5326ac
3 changed files with 101476 additions and 0 deletions

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@@ -0,0 +1,14 @@
#!/home/maxime/.pyvenv/bin/python3
from json import loads
from pwn import *
with open("out.json", 'r') as f:
text = f.read()
json = loads(text)
for frame in json:
pflag = list(frame["_source"]["layers"]["data-text-lines"].keys())[0].strip()
pflag_content = pflag[8:-1]
pflag_content = unhex(pflag_content)
if pflag_content.isascii():
print(pflag_content)