DarkSide Ransomware – Detection Mapping
(Splunk | Sentinel | Elastic)
1. Initial Access – VPN Abuse (Valid Accounts)
Behavior
- Successful VPN login
- Legacy account
- No MFA
- Unusual geography / time
Splunk (VPN Logs)
Enhancement
-
Join against HR / IAM to flag inactive users
Sentinel (KQL – Azure AD / VPN)
Elastic (EQL)
2. Credential Access – LSASS / Dumping
Behavior
- LSASS handle access
- SAM/SECURITY registry export
- Mimikatz-like access patterns
Splunk (Sysmon Event ID 10)
Sentinel (Defender for Endpoint)
Elastic (EQL)
3. Discovery – Domain Recon
Behavior
nltestnet groupnet view /domain
Splunk
Sentinel (KQL)
Elastic
4. Lateral Movement – PsExec / SMB
Behavior
- Service creation
- Remote execution
- ADMIN$ usage
Splunk (Service Creation)
Sentinel
Elastic
5. Pre-Encryption – Shadow Copy Deletion
Behavior
vssadmin deletewmic shadowcopybcdedit recoveryenabled no
Splunk (High-Fidelity)
index=windows EventCode=4688
CommandLine="*vssadmin delete shadows*"
CommandLine="*vssadmin delete shadows*"
Sentinel (Very High Confidence)
Elastic
6. Ransomware Encryption Behavior
Behavior
- Mass file modifications
- Extension change
.darkside - High-rate file writes
Splunk (File Creation)
Sentinel (File Events)
Elastic (EQL)
7. Ransom Note Deployment
Behavior
-
README.darkside.txt written in many directories
Splunk
index=windows EventCode=4663
ObjectName="*README.darkside.txt"
ObjectName="*README.darkside.txt"
Sentinel
Elastic
file where
file.name == "README.darkside.txt"
file.name == "README.darkside.txt"
8. Network – Tor / C2 Indicators
Behavior
- Tor traffic
.onionresolution- Rare HTTPS destinations
Splunk (Proxy)
index=proxy url="*.onion*"
Sentinel (Defender Network)
DeviceNetworkEvents
| where RemoteUrl endswith ".onion"
Elastic
network where
network.protocol == "http" and
destination.domain : "*.onion"
network.protocol == "http" and
destination.domain : "*.onion"
9. Ransomware Kill-Chain Correlation (High Confidence)
Sentinel Fusion Logic (Example)
This is a near-certain ransomware signal.
10. Recommended Alert Severity
| Detection | Severity |
|---|---|
| LSASS access | High |
| Shadow copy deletion | Critical |
| Ransom note creation | Critical |
| Mass file extension change | Critical |
| VPN login without MFA | Medium → High |
11. IR Playbook Trigger
If ANY TWO occur within 15 minutes:
- Shadow copy deletion
- LSASS access
- Ransom note creation
➡️ Immediately isolate host
12. Why Behavior > IOCs for DarkSide
- Per-victim builds
- Rapid hash rotation
- Infrastructure churn
- Affiliate variability
DarkSide is best detected by intent, not signatures.
