A security analyst is examining the following aggregated syslog entries ingested into a SIEM platform:
text
Jul 27 11:02:14 jump-srv01 sshd[14201]: Failed password for invalid user admin from 203.0.113.88 port 49152 ssh2
Jul 27 11:02:16 jump-srv01 sshd[14205]: Failed password for invalid user root from 203.0.113.88 port 49154 ssh2
Jul 27 11:02:19 jump-srv01 sshd[14210]: Accepted password for deployer from 203.0.113.88 port 49158 ssh2
Jul 27 11:02:22 jump-srv01 sudo: deployer : TTY=pts/1 ; PWD=/home/deployer ; USER=root ; COMMAND=/bin/bash
Based on the correlated log sequence above, which of the following conclusions accurately describes the security event?
- An external IP address successfully authenticated using valid credentials for an existing account after failed login attempts, followed by root privilege escalation.Answer
- BThe SSH daemon successfully prevented unauthorized access by rejecting authentication requests for invalid administrative user accounts.
- CAn authorization failure occurred when the remote host failed to present valid identity credentials during the initial connection requests.
- DA detective security control failed to operate because the firewall did not implement preventive blocking for incoming remote connections.
Answer
An external IP address successfully authenticated using valid credentials for an existing account after failed login attempts, followed by root privilege escalation.
The log sequence demonstrates an attack timeline: initial failed authentication attempts for common administrative accounts ('admin', 'root') from IP 203.0.113.88, followed three seconds later by a successful SSH authentication for user 'deployer' from the same IP, and finally a `sudo` command execution spawning an interactive root shell (`/bin/bash`).
Step-by-Step Solution
Key Concept
Sequential Log Correlation and Event Reconstruction