1.Which SIEM have you used and what did you build in it?
Name the tool — Splunk, Sentinel, QRadar, Wazuh, Elastic — and describe one dashboard or rule you built, its logic, and what it caught. A home lab counts. "I shipped Sysmon logs into Wazuh and wrote a rule for parent-child anomalies" is a real answer.
2.What log sources would you onboard first in a new SOC?
Identity (AD and cloud IdP), endpoint (EDR and Sysmon), firewall and proxy, DNS, email gateway, and cloud control-plane logs. Identity first, because almost every modern intrusion touches authentication somewhere.
3.How do you write a detection rule that doesn't drown the team?
Start from a hypothesis and a specific technique, baseline what normal looks like for a week, add exclusions for known-good service accounts and admin tooling, and set severity by asset. Then review the rule's true-positive rate after two weeks and either tune or retire it.
4.What is log correlation? Give an example.
Combining events from different sources into one meaningful signal. Example: a VPN login from a new country, followed within minutes by a mail-forwarding rule, then a bulk file download from SharePoint. Any one is unremarkable; the chain is a business email compromise.
5.What Windows event IDs do you look at most?
4624 successful logon and its logon type, 4625 failed logon, 4672 special privileges assigned, 4688 process creation with command line, 4720 account created, 4768/4769 Kerberos tickets, 7045 service installed, and 1102 log cleared. Explain the logon types on 4624 — type 3 network and type 10 RDP tell very different stories.
6.What is UEBA?
User and entity behaviour analytics — baselining what normal looks like per user and device, then alerting on deviation instead of on static signatures. It catches credential misuse that no signature will, at the cost of a warm-up period and more false positives early on.