TICKET: SOC-IR-0051 | Server: web01.apexcorp.internal | Priority: HIGH
An IDS alert fired for a high volume of SSH connection attempts against web01.apexcorp.internal (10.10.1.10). The server is a Linux web server running Ubuntu 22.04 with SSH exposed on port 22. Your task is to analyse the /var/log/auth.log file, determine the scope of the attack, and recommend containment.
Brute force SSH — attacker attempts many username/password combinations against an SSH service. Unlike credential stuffing, the attacker does not have known passwords — they are guessing.
/var/log/auth.log — Linux system log recording all authentication events including SSH attempts. Failed attempts appear as "Failed password for [user] from [IP]".
iptables / ufw — Linux firewall tools. Blocking the attacker's IP prevents further attempts and is the first containment step.
| Item | Detail |
|---|---|
| Hostname | web01.apexcorp.internal |
| IP | 10.10.1.10 |
| OS | Ubuntu 22.04 LTS |
| SSH Port | 22 (default) |
| Exposure | Internet-facing (DMZ) |