Evil Corp's Child 1, 2 and 3
Last updated
Was this helpful?
Last updated
Was this helpful?
Right so they started off easy. Opening up the pcap I used the http
display filter to show packets of this protocol:
Opening up the details for the first packet, we can see the full request URL
at http://www.sinotes.com/wp-content/themes/avada/picture4.png. I then ran wget
http://www.sinotes.com/wp-content/themes/avada/picture4.png
to download the file. As the brief suggests, this is not a png but rather a windows executable. Therefore renaming it to ecorp.exe
and running the command md5sum ecorp.exe
gives us the flag of flag{a95d24937acb3420ee94493db298b295}
.
Here, we need to use some display filters to refine our search. Firstly, we know it uses the same port as HTTPS. This is port 443. Secondly, We're talking about the malware and know that the infected client's ip is 192.168.1.91
from challenge 1. Putting this into a display filter would look like this:
Although there are quite a few packets, there are only so many different ips, so trying about 5 got me the correct answer, which was flag{213.136.94.177}
.
This was an interesting one. After some googling, I found out that Certificates are sent during tls handshakes, as TLS is used to encrypt HTTP traffic, making it HTTPS. The Display filter i needed to show these packets was tls.handshake.type == 11
.
As said in the brief, we need the packet from the source IP 37.205.9.252
. Therefore expaning this packet's details, then TLSv1.2 Record Layer: Handshake Protocol: Certificate
then Handshake Protocol: Certificate
then Certificates
then subject: rdnSequence (0)
finally gives us the LocalityName.
flag{Mogadishu}
By das :)