31. SOC, SIEM and Incident Response
31.5 Alert Triage
In short: Triage means quickly deciding what each alert is and what to do next.
Triage means quickly deciding what each alert is and what to do next.
| Outcome | Meaning | Example |
|---|---|---|
| True positive | Real attack, alert is correct | Brute force followed by successful login from an unknown foreign IP |
| False positive | Alert fired but nothing bad happened | Admin mistyped their password five times |
| True negative | No alert, nothing bad | Normal traffic |
| False negative | Attack happened but no alert – the most dangerous | Attacker used a valid stolen password during office hours |
An L1 triage routine for every alert:
- Read the alert: what rule, which host, which user, which source IP, what time.
- Enrich: is the IP internal or external? Check reputation on services like AbuseIPDB or VirusTotal. Is the user real and expected on this host?
- Scope: did the same IP or user touch other hosts? Any success after the failures?
- Decide: false positive (close with a note), or true positive (escalate to L2 with evidence).
- Document everything in the ticket: what you checked, what you found, why you decided.
Severity usually considers impact (production server, customer data) and confidence. A failed scan against a patched web server is low; an admin login from a new country followed by a new user being created is critical.
Ravindra Bagale's Tip
Writing only "false positive – closed" in a ticket is the most common L1 mistake. Write why it is a false positive: "User Sneha entered the wrong password 5 times over VPN, then logged in with the correct password; the IP belongs to the company." This is very useful for the next shift and for audits.
Ravindra Bagale's Tip – मराठी
Ticket मध्ये फक्त "false positive – closed" लिहिणे ही सर्वात common L1 mistake आहे. का false positive आहे हे लिहा: "User Sneha ने VPN वरून 5 वेळा चुकीचा password टाकला, नंतर योग्य password ने login, IP company चा आहे." पुढच्या shift ला आणि audit ला हे खूप उपयोगी पडते.
Ravindra Bagale's Tip – हिंदी
Ticket में सिर्फ़ "false positive – closed" लिखना सबसे common L1 mistake है. क्यों false positive है यह लिखो: "User Sneha ने VPN से 5 बार गलत password डाला, फिर सही password से login, IP company का है." अगली shift और audit के लिए यह बहुत काम आता है.
Practice task
For each alert, decide true or false positive and write a one-line ticket note: (1) 40 failed SSH logins from an external IP, no success; (2) 5 failed logins then success for user admin from a new country at 3 a.m.; (3) Nikto scan alert from the company's own vulnerability scanner IP during an approved scan window.