Deployed Elastic Fleet with Elastic Defend agents across 100+ cross-platform servers at PostEx. This layer provides EDR capabilities (Endpoint Detection and Response), centralized endpoint security policy management, and Elastic SIEM detection rules — complementing the Splunk Enterprise SIEM and Wazuh deployments with deep endpoint telemetry.
Elastic Fleet Server (Management Plane)
|
v
Elastic Agent + Elastic Defend (100+ servers)
Windows Server (Windows Workstations, DCs)
Linux (Ubuntu, CentOS, RHEL servers)
macOS (Admin workstations)
|
v
Elasticsearch Cluster (3-node, hot-warm-cold)
|
v
Kibana (Elastic SIEM + Fleet UI)
|- Security > Alerts (detection rules)
|- Security > Timelines (investigation)
|- Fleet > Agents (policy management)
|- Dashboards (custom security views)
# Elastic Defend policy settings
protection_level: prevent # Block malicious activity
malware_detection: enabled # On-access + on-write scan
memory_protection: enabled # Prevent process injection
behavioral_protection: enabled # Anomaly-based detection
ransomware_protection: enabled # Canary file approach
# Integration: Windows Event Logs
channel: Security
event_ids: [4624, 4625, 4648, 4672, 4688, 4698, 4702, 7045]
# Integration: Linux auditd
audit_rules:
- "-w /etc/passwd -p wa -k user-modify"
- "-w /etc/sudoers -p wa -k sudoers-modify"
- "-a always,exit -F arch=b64 -S execve"
/* Elastic EQL - Credential Dumping via LSASS */
process where event.action == "start" and
process.name : "lsass.exe" and
process.parent.name != ("wininit.exe","svchost.exe","services.exe")
| eval severity = "CRITICAL", technique = "T1003.001"
/* Elastic EQL - RDP Lateral Movement */
sequence by winlog.computer_name with maxspan=5m
[authentication where event.code == "4648"
and winlog.event_data.TargetServerName != "localhost"]
[process where process.name == "mstsc.exe"]
| Tactic | Technique | Detection Method |
|---|---|---|
| Execution | T1059.001 PowerShell | Script block logging via Elastic Agent |
| Defense Evasion | T1055 Process Injection | Elastic Defend memory protection |
| Credential Access | T1003.001 LSASS Dump | EQL rule + Elastic Defend block |
| Persistence | T1547 Boot Autostart | Registry monitoring via auditd/Winlogbeat |
| Lateral Movement | T1021.001 RDP | EQL sequence correlation |
| Exfiltration | T1048 Alt Protocol | Network anomaly detection (ML) |