A security analyst investigates a SIEM alert triggered by the following sequential log entries collected from a Linux authentication server:
Jul 27 14:02:11 host01 sshd[14201]: Failed password for invalid user admin from 198.51.100.44 port 49152 ssh2
Jul 27 14:02:13 host01 sshd[14205]: Failed password for invalid user root from 198.51.100.44 port 49154 ssh2
Jul 27 14:02:15 host01 sshd[14210]: Failed password for user jdoe from 198.51.100.44 port 49156 ssh2
Jul 27 14:02:18 host01 sshd[14214]: Accepted password for user jdoe from 198.51.100.44 port 49160 ssh2
Jul 27 14:02:22 host01 sudo: jdoe : TTY=pts/1 ; PWD=/home/jdoe ; USER=root ; COMMAND=/usr/bin/cat /etc/shadow
Based on these log entries, which of the following best describes the attack sequence and the correlation rule logic required to detect this incident?
- A brute-force or password guessing attempt succeeded against a valid user account, followed by privileged local access attempt; the correlation rule should link multiple failed authentication events from a single source IP with a successful logon and subsequent sudo execution within a short time window.Answer
- BAn unauthorized client bypassed access control lists at the network boundary; the correlation rule should filter on network firewall deny logs and alert on authorization failures originating from external IP ranges.
- CA Cross-Site Scripting (XSS) attack compromised the session cookies of a web application administrator; the correlation rule should look for HTTP GET requests containing embedded script tags in web server access logs.
- DA rogue insider executed unapproved software; the SIEM rule should apply a compensating control to permanently disable sudo access for all unprivileged users across the enterprise network.