We need to gain access to some routers. Let's try and see if we can find the password in the captured network data: data.pcap.
It looks like someone logged in with their password earlier. Where would log in data be located in a network capture? If you think you found the flag, but it doesn't work, consider that the data may be encrypted.
It was also easy challenge. We just find the flag from the captured packets. I am going to solve it using wireshark
-
So we got one
.pcapfile.data.pcap
-
As you can see their are a lot of captured packets. Just analyise and at 98 you will get captured login packet(
Read: Hint).Like this:- Justright click on packet>Follow TCP Stream
you will see somthing like this . As you can see in pswrdfield their is something unique. Its actually combination of Base64 and url encoding:-pswrd=cHJ2cUJaTnFZdw%3D%3D -
Lets decrypt:-
cHJ2cUJaTnFZdw%3D%3D> Decode url encoding:cHJ2cUJaTnFZdw==> decode base64:prvqBZNqYwand we got the flag
prvqBZNqYw
Thanks :)
