A security analyst is reviewing the following firewall Syslog entries forwarded to a SIEM collector:
`Jul 27 10:15:01 fw01 kernel: [FW_DROP]: IN=eth0 OUT= SRC=192.0.2.50 DST=10.0.1.10 PROTO=TCP SPT=49152 DPT=22`
`Jul 27 10:15:01 fw01 kernel: [FW_DROP]: IN=eth0 OUT= SRC=192.0.2.50 DST=10.0.1.10 PROTO=TCP SPT=49153 DPT=80`
`Jul 27 10:15:01 fw01 kernel: [FW_DROP]: IN=eth0 OUT= SRC=192.0.2.50 DST=10.0.1.10 PROTO=TCP SPT=49154 DPT=443`
`Jul 27 10:15:01 fw01 kernel: [FW_DROP]: IN=eth0 OUT= SRC=192.0.2.50 DST=10.0.1.10 PROTO=TCP SPT=3389 DPT=3389`
Which of the following network activities is best indicated by this log sequence?
- Port scanning targeting multiple standard service ports on a single hostAnswer
- BCross-site scripting (XSS) payload execution against an exposed application
- CUser authentication and authorization granting for an administrative session
- DSIEM correlation parser misinterpretation of encrypted log payloads
Answer
Port scanning targeting multiple standard service ports on a single host
The log entries show a single external source IP address (192.0.2.50) attempting connections to several well-known service ports (22 for SSH, 80 for HTTP, 443 for HTTPS, and 3389 for RDP) on a target host (10.0.1.10) at the exact same second. This pattern of rapidly probing multiple ports on a single host is the classic signature of a port scan.
Step-by-Step Solution
Key Concept
Identifying port scanning behavior from firewall log parameters in SIEM monitoring