A security analyst is investigating a alert on an internal Linux server and reviews the following authentication log entries:
text
Jul 27 14:10:02 auth-server sshd[4102]: Failed password for root from 203.0.113.5 port 49152 ssh2
Jul 27 14:10:03 auth-server sshd[4105]: Failed password for root from 203.0.113.5 port 49154 ssh2
Jul 27 14:10:04 auth-server sshd[4109]: Failed password for root from 203.0.113.5 port 49156 ssh2
Jul 27 14:10:05 auth-server sshd[4112]: Failed password for root from 203.0.113.5 port 49158 ssh2
Which type of security event is directly indicated by these log entries?
- AA Cross-Site Scripting (XSS) payload execution against a web interface
- An SSH password brute-force attack against the root user accountCevap
- CAn authorization permission failure when accessing protected files
- DA corrective security control automatically blocking database queries
Cevap
An SSH password brute-force attack against the root user account
The correct answer is correct because the SSH log entries (`sshd`) show repeated, consecutive `Failed password` messages for the privileged `root` user originating from the same source IP (`203.0.113.5`) in one-second intervals, which is a classic signature of an automated brute-force login attack.
Adım Adım Çözüm
Anahtar Kavram
SSH Authentication Log Analysis