Network Security SIEM Systems

A SIEM (Security Information and Event Management) system is the command center of a security operations team. It collects logs and events from every device and application across the network, normalizes them into a common format, correlates related events, and generates alerts when patterns match known attack behaviors. What a log management system stores, a SIEM actively analyzes.

SIEM = SIM + SEM

SIM (Security Information Management):
→ Collects and stores log data
→ Long-term retention and compliance reporting
→ Historical analysis and forensics

SEM (Security Event Management):
→ Real-time monitoring of current events
→ Correlation of events across devices
→ Immediate alerting on suspicious patterns

SIEM combines both:
→ Real-time detection + historical context + compliance reporting

What a SIEM Collects

Data Source              | Events Collected
-------------------------|--------------------------------------------
Firewalls                | Allow/deny events, connection records
IDS/IPS                  | Intrusion alerts, blocked attacks
Active Directory         | Logins, logouts, password changes, group changes
Web servers              | HTTP requests, errors, file access
Email servers            | Messages sent/received, attachments, rejections
DNS servers              | All domain lookup queries and responses
VPN concentrators        | VPN connections, disconnections, failed auth
Cloud platforms          | API calls, configuration changes, access events
Endpoints (EDR agents)   | Process execution, file changes, network connections
Databases                | Queries executed, records accessed, exports

Event Normalization

Different devices use different log formats. A Cisco firewall log looks nothing like a Windows event log or a web server access log. The SIEM normalizes all incoming data into a standard format so the correlation engine can compare events across different systems.

BEFORE NORMALIZATION (raw logs from different sources):

Cisco Firewall:
%ASA-6-302013: Built outbound TCP connection 123456 for outside:8.8.8.8/53
to inside:192.168.1.50/52341

Windows Security Event (ID 4625):
An account failed to log on. Account Name: alice. Workstation: PC-01
Failure Reason: Unknown user name or bad password.

AFTER NORMALIZATION (SIEM common format):
{
  "timestamp": "2024-03-15T09:14:22Z",
  "event_type": "authentication_failure",
  "user": "alice",
  "source_ip": "192.168.1.50",
  "source_host": "PC-01",
  "severity": "medium"
}

Now the SIEM can correlate this with other events involving the same user,
same IP, or same host — regardless of which device generated the original log.

Correlation Rules — The Intelligence Layer

SIEM correlation rules define patterns that indicate attacks. They look across multiple data sources and multiple events to detect behaviors no single log source could reveal alone.

Correlation Rule Examples:

Rule: "Brute Force Attack"
Condition: More than 10 failed logins from the same IP in 60 seconds
Action: Alert Priority HIGH, block IP on firewall, notify SOC

Rule: "Lateral Movement"
Condition: Same user authenticates to more than 5 different internal hosts within 10 minutes
Action: Alert Priority CRITICAL, flag account for review

Rule: "After-Hours Access to Finance Server"
Condition: Any user accesses the finance database between 10pm and 6am
Action: Alert Priority MEDIUM, log for next-day review

Rule: "Data Exfiltration Indicator"
Condition: Internal host transfers >1GB to an external IP never contacted before
          AND the transfer occurs between midnight and 5am
Action: Alert Priority CRITICAL, quarantine host, notify incident response

SIEM Dashboards and Visualization

Raw log data is unreadable at scale. SIEM platforms provide dashboards that visually represent security status in real time. Security analysts see top-level health at a glance and drill into specifics when an alert fires.

Typical SOC SIEM Dashboard:

┌───────────────────────────────────────────────────────────┐
│ SECURITY OPERATIONS CENTER DASHBOARD        [LIVE]        │
├─────────────────┬───────────────┬─────────────────────────┤
│ Events Today    │ Open Alerts   │ Top Attacking IPs       │
│ 14,847,291      │ CRITICAL: 2   │ 1. 185.100.87.23 (1,204)│
│                 │ HIGH:     8   │ 2. 45.33.32.156  (891)  │
│ Blocked Today   │ MEDIUM:  47   │ 3. 192.241.x.x   (432)  │
│ 3,241           │ LOW:    203   │                         │
├─────────────────┴───────────────┴─────────────────────────┤
│ Geographic Attack Map: [world map with attack origins]    │
├───────────────────────────────────────────────────────────┤
│ Authentication Failures (last 60 minutes): ████░░ 847     │
│ Firewall Denies (last 60 minutes):         ██░░░░ 3,241   │
│ IPS Alerts (last 60 minutes):              █░░░░░ 12      │
└───────────────────────────────────────────────────────────┘

SIEM and Compliance

Regulations including PCI DSS, HIPAA, SOX, and GDPR require organizations to monitor systems for security events and retain evidence of that monitoring. SIEM platforms generate compliance reports automatically, demonstrating that required controls are active and that security events are being reviewed — reducing the manual effort of compliance audits significantly.

SIEM Deployment Models

Model            | Description                   | Best For
-----------------|-------------------------------|----------------------------------
On-premises      | SIEM runs in your data center | Organizations with strict data residency
Cloud SIEM       | SIEM hosted by vendor         | Organizations with cloud-first strategy
Hybrid           | Mix of on-prem and cloud      | Complex environments with both
MSSP-managed     | Provider operates SIEM 24/7   | Organizations without a dedicated SOC

A SIEM without skilled analysts to review its alerts provides limited value. The technology identifies patterns; the analysts provide context, judgment, and response. The most effective security operations centers treat the SIEM as an intelligence tool that amplifies analyst capability — not as an autonomous defense system that operates independently of human oversight.

Leave a Comment

Your email address will not be published. Required fields are marked *