You are a network forensic examiner investigating a suspected intrusion within a corporate DMZ. The Intrusion Detection System (IDS) alerted on anomalous traffic originating from a compromised web server targeting an internal database server.
You have extracted the relevant packet capture (PCAP) from the network forensic appliance. Your goal is to analyze the traffic patterns to determine the adversary's methodology and identify what information they were attempting to gather prior to lateral movement.
The PCAP extract displays sequential TCP SYN packets sent from the compromised server to various ports (21, 22, 1433) on the target database server. The target responds with `RST, ACK` for closed ports and `SYN, ACK` for open ports. This is a classic signature of active network reconnaissance.
Identification & Analysis - The investigator is analyzing network artifacts to identify attacker methodology and map the timeline of a security breach.
Port scanning is the specific active technique used to identify open ports and running services on a remote host. The evidence clearly shows a TCP SYN scan (half-open scan), which maps the attack surface of the target host by determining which services are listening for incoming connections.
Network forensic analysts use tools like Wireshark, Zeek, or Suricata to parse PCAP files and identify these scan patterns. When a port scan is detected in historical traffic, the analyst documents the targeted ports to understand the attacker's intent. For example, if port 1433 (MSSQL) is targeted and found open, the next forensic step is to correlate this network evidence with the host-based SQL Server logs on `10.0.60.15` to look for subsequent brute-force attacks or exploitation attempts.
A port scan is an active reconnaissance technique that generates traffic and leaves distinct artifacts in firewall logs, IDS alerts, and packet captures. Passive collection (sniffing) leaves no trace on the target. Recognizing port scan signatures (like sequential SYN packets or abnormal ICMP queries) is crucial for building the attack timeline and isolating the exact moment an adversary pivoted within the network.
Sharpen your digital investigation skills with more practical simulations.
Explore more CHFI simulations