What Is SIEM
SIEM (Security Information and Event Management) is a platform that centrally collects, analyzes, and responds to security events generated by systems across the organization.
SIEM vs SOAR vs XDR
| Solution | Key functions | Differentiation |
|---|---|---|
| SIEM | Log collection, correlation, alerting | Data-analysis centric |
| SOAR | Incident-response automation, playbooks | Automation/orchestration centric |
| XDR | Unified detection across endpoint, network, and cloud | Integrated detection and response |
Major Solution Comparison
- Splunk: Industry standard. Powerful SPL. License cost is very high.
- Microsoft Sentinel: Azure-native. ML-based detection. Pay-as-you-go.
- IBM QRadar: Strong on-premises presence. Many references in Korean finance and the public sector.
- Igloo Corporation SPiDER TM: No. 1 SIEM in the Korean market.
- Wazuh: Open source. OSSEC-based. Integrated endpoint agents.
Detection Rule Examples
Splunk SPL — brute-force detection
index=authentication action=failure
| stats count by src_ip, user
| where count > 10
| eval alert="Brute Force Attempt"
| table _time, src_ip, user, count, alertMicrosoft Sentinel KQL — impossible-travel detection
SigninLogs
| where ResultType == 0
| project TimeGenerated, UserPrincipalName, IPAddress, Location
| summarize Locations=make_set(Location)
by UserPrincipalName, bin(TimeGenerated, 1h)
| where array_length(Locations) > 2Operational Know-How
False-positive management is the core A new SIEM typically fires thousands of alerts per day. Without about six months of tuning, alert fatigue will cause you to miss real threats.
MTTR (mean time to respond) targets
- High alerts: initial response within 15 minutes
- Medium alerts: within 4 hours
- Low alerts: within 24 hours
Pre-Adoption Checklist
□ Estimated daily log ingest (GB/day)
□ Retention requirements (typically 1–3 years)
□ On-premises vs. cloud vs. hybrid
□ Whether dedicated operations staff can be secured
□ Inventory of existing security tools to integrateSIEM adoption is not a product purchase—it is building operational capability. Without dedicated people and process, you are unlikely to see a return on the investment.
Log-Source Onboarding Priority
Do not “ingest everything.” Connect sources in detection-value order so you control cost and noise.
| Priority | Log source | Detection value |
|---|---|---|
| 1 | Authentication/accounts (AD, IAM, VPN) | Account takeover, privilege escalation |
| 2 | Endpoint (EDR) | Malicious execution, lateral movement |
| 3 | Firewall / proxy | C2 communication, data exfiltration |
| 4 | Cloud audit logs (CloudTrail, etc.) | Configuration changes, key misuse |
| 5 | Application / DB | Anomalous queries, bulk lookups |
Sigma — Vendor-Agnostic Detection Rules
To avoid locking into a specific SIEM syntax (SPL/KQL), write Sigma rules and convert them to each SIEM’s format. That is easier to maintain.
title: 단시간 다수 로그인 실패 후 성공
logsource:
product: windows
service: security
detection:
failed:
EventID: 4625
success:
EventID: 4624
timeframe: 5m
condition: failed | count() > 10 and success
level: highIn-House vs. Managed (MSSP)
| Aspect | In-house SOC | Managed (MSSP) |
|---|---|---|
| Upfront cost | High | Low (subscription) |
| 24/365 coverage | Requires three-shift staffing | Included |
| Understanding of internal context | High | Low (tuning required) |
| Best fit | Large enterprises, finance | Mid-market, teams short on staff |
If you cannot staff dedicated analysts on three shifts, a staged approach is more realistic: start with an MSSP and internalize only core capabilities.
Preventing Cost Blowouts
Cloud SIEM is billed by ingest volume (GB) or EPS, so data governance is cost.
- Drop unnecessary fields at ingest (e.g., debug logs, health checks).
- Separate hot (analytics) and cold (retention) tiers — move older logs to cheaper storage.
- Confirm log-retention requirements first (ISMS-P, Electronic Financial Supervisory Regulations, etc.) and design tiering around them.
FAQ
Q. Does detection happen automatically once SIEM is deployed? No. SIEM is the foundation; actual detection rates depend on the quality of correlation rules and continuous tuning. Without rules, it is just an expensive log store.
Q. Can we start with open source (Wazuh)? It is sufficient for PoCs and small-to-medium environments. At large ingest volumes, operations and scaling become heavy, so review a commercial migration against your growth curve.
Nodelog는 모든 콘텐츠의 내용과 출처를 공개 전에 검토합니다. 환경(OS·버전)에 따라 결과가 달라질 수 있는 기술 정보는 공식 문서와 함께 확인하며, 검토 기준과 정정 원칙은 편집 정책에서 안내합니다. 오류를 발견하시면 이메일로 제보해 주세요 — 확인 후 신속히 정정합니다.
Comments
Be the first to comment.