A security analyst is reviewing authentication logs from a Linux server (`/var/log/auth.log`) after a SIEM alert fired:
May 12 14:02:11 auth-srv sshd[4102]: Failed password for root from 192.0.2.45 port 49152 ssh2
May 12 14:02:14 auth-srv sshd[4102]: Failed password for root from 192.0.2.45 port 49154 ssh2
May 12 14:02:17 auth-srv sshd[4102]: Failed password for root from 192.0.2.45 port 49156 ssh2
May 12 14:02:22 auth-srv sshd[4102]: Accepted password for root from 192.0.2.45 port 49160 ssh2
May 12 14:02:23 auth-srv pam_unix(sshd:session): session opened for user root by (uid=0)
Based on the log snippet above, which of the following statements regarding the incident and appropriate response actions are correct? (Select TWO.)
- The event sequence demonstrates a successful password brute-force attack resulting in account compromise.Cevap
- The affected host should be immediately isolated from the network as part of incident containment.Cevap
- CThe log entries indicate a Cross-Site Scripting (XSS) injection attack against the SSH daemon service.
- DThe 'session opened' entry confirms that role-based authorization was evaluated before identity verification took place.
Cevap
The correct conclusions are that the event sequence demonstrates a successful password brute-force attack resulting in account compromise, and the affected host should be immediately isolated from the network as part of incident containment.
The sequence of multiple failed password attempts from IP 192.0.2.45 followed immediately by a successful login for the root user indicates a successful brute-force attack. Because privileged access (root) was established by an untrusted source, the immediate incident response action is system containment via network isolation.
Adım Adım Çözüm
Anahtar Kavram
Identifying brute-force authentication indicators in log files and determining immediate incident containment steps.