-
Given is a network capture file whose contents can be read using
tshark
. From Hint 1,tshark -r data.pcap -Y "http.request.method == POST" -Tfields -e text
-
We get login credentials which contain an encoded password:
echo "<pswrd>" | base64 -d
Given is a network capture file whose contents can be read using tshark
. From Hint 1,
tshark -r data.pcap -Y "http.request.method == POST" -Tfields -e text
We get login credentials which contain an encoded password:
echo "<pswrd>" | base64 -d