- Download the
PCAPNGfile. - Using Wireshark analyze it.
- After follow
HTTPrequests we shall understand that theFlagis presentBytebyByte. - So I have made a
Scapyscript for extracting them.
from scapy.all import *
a=rdpcap("capture.pcapng")
z=""
for i in a:
b=""
for j in i:
b=b+str(j)
if(len(b)==46 or len(b)==282):
z=z+b[-2]
print(z)
Flag --> WPI{su3p1ci0uS_htTp}
