Classification: TLP:AMBER — Enterprise Defensive Intelligence Date: 2026-08-28 Source: Live monitoring of LOCKBIT5 .onion leak site via ransomware.live Analyst: Security Arsenal — From The Dark Side
Executive Summary
LOCKBIT5, the latest iteration of the persistent LockBit ransomware lineage, posted 5 new victims to its dark web leak site within a single 24-hour window (2026-08-27), signaling an active campaign burst concentrated against healthcare, professional services, and technology organizations across Tunisia, the Netherlands, Belgium, Czechia, and the United States. The simultaneous publication of five victims in one day suggests either a batch encryption event or a coordinated leak escalation following failed negotiations. Organizations in the targeted sectors — particularly healthcare providers in the US and small-to-midsize technology firms in Western Europe — should treat this as an immediate threat signal and execute the detection and hardening guidance below.
1. Threat Actor Profile — LOCKBIT5
Aliases: LockBit 5.0, LockBit Green (overlap), ABCD ransomware lineage heritage; successor branding following the 2024 Operation Cronos disruption and subsequent LockBit 4.0 rebuild.
Operating Model: Ransomware-as-a-Service (RaaS). LOCKBIT5 continues the franchise model: a core operator group maintains the encryptor, negotiation infrastructure, and Tor leak site, while affiliates execute intrusions. Revenue splits typically run 70–80% to the affiliate. This model explains the geographic and sector scatter observed in this campaign — multiple affiliates operating concurrently.
Ransom Demands: Historically ranges from $200K to $5M USD, scaled to victim revenue. Healthcare victims are frequently assigned aggressive deadlines (72 hours to first leak tranche) due to the perceived sensitivity of patient data.
Initial Access Methods (observed across LockBit lineage):
- Exploitation of perimeter devices (VPN gateways, firewalls — see CVE linkage below)
- Phishing with malicious macros / ISO / LNK loaders
- RDP brute force and purchased access from Initial Access Brokers (IABs)
- Compromised remote management tooling (ScreenConnect, ConnectWise, Kaseya-class RMM)
- Supply chain / developer tooling compromise
Double Extortion: Yes — data is staged and exfiltrated (frequently via Rclone to Mega/cloud storage, or via StealBit-derived exfil tooling) before encryption. Victims who refuse payment are published on the leak site in tranches, which matches the posting pattern observed here.
Average Dwell Time: Historically 5–10 days from initial access to detonation, though post-Cronos rebuild activity shows some affiliates operating on compressed 48–72 hour timelines. The T-minus detection window is narrow but exploitable if you know what to hunt for.
2. Current Campaign Analysis
Victimology (leak site data, 2026-08-27)
| Victim | Sector | Country |
|---|---|---|
| tnmed.org | Healthcare | TN |
| fpmanagement.nl | Professional Services | NL |
| takt.be | Technology | BE |
| dece.cz | Technology | CZ |
| theheartcenterofmemphis.com | Healthcare | US |
Sector Targeting
- Healthcare (40%) — two of five victims, including a named US cardiac care center. Healthcare remains LOCKBIT5's highest-leverage target: patient PII/PHI maximizes extortion pressure, and clinical uptime requirements force fast negotiation decisions.
- Technology (40%) — two European technology firms. Tech SMBs are targeted both for direct extortion and as potential supply-chain pivots into their customer base.
- Professional Services (20%) — a Dutch financial/facility management firm. These firms hold concentrated third-party client data, amplifying breach impact.
Geographic Concentration
No single-country concentration — TN, NL, BE, CZ, US. This spread strongly indicates multiple affiliates operating in parallel against opportunistic targets rather than a deliberate regional campaign. Western Europe (3 of 5) skew suggests an affiliate cluster with EU-language tooling/access.
Victim Profile
All five victims fit the SMB-to-mid-market profile (estimated 50–500 employees, $5M–$150M annual revenue) — classic LockBit affiliate targeting: organizations large enough to pay meaningful ransoms, small enough to lack 24/7 SOC coverage and mature backup hygiene.
Posting Frequency / Escalation
Five victims published in a single day is a batch-dump pattern, historically indicating either: (a) a negotiation-deadline expiration wave, or (b) an intimidation push to pressure concurrent live negotiations. Expect follow-on postings within 72 hours.
CVE / Initial Access Vector Correlation
The following CISA KEV entries with confirmed ransomware exploitation align with this campaign's likely entry points:
- CVE-2026-50751 — Check Point Security Gateway (improper authentication in IKEv1 key exchange): Perimeter VPN gateway compromise — the most probable initial access vector for this campaign given the SMB victim profile. If you run Check Point gateways, assume targeting.
- CVE-2024-1708 — ConnectWise ScreenConnect (path traversal → RCE): RMM exploitation fits the managed-service-provider-adjacent victim profile (professional services / tech SMBs).
- CVE-2025-60710 — Microsoft Windows Link Following (privilege escalation): Likely post-access privilege escalation component in the intrusion chain.
- CVE-2023-21529 — Microsoft Exchange deserialization: Authenticated Exchange RCE remains a reliable LockBit-lineage pivot for internal access.
- CVE-2026-48027 — Nx Console embedded malicious code: Developer-tooling supply chain vector; relevant given two technology-sector victims.
Assessment: Initial access is most consistent with perimeter device exploitation (Check Point) and/or RMM abuse (ScreenConnect), followed by privilege escalation via the Windows link-following bug and Exchange pivoting.
3. Detection Engineering
Sigma Rules
---
title: LockBit5 Initial Access - Suspicious VPN Gateway Authentication Anomaly
id: 7f3a1c2e-5b8d-4e1a-9c6f-2a8b3d4e5f01
status: experimental
description: Detects anomalous IKEv1/VPN authentication patterns consistent with Check Point Security Gateway exploitation (CVE-2026-50751) used by LockBit affiliates for initial access.
author: Security Arsenal Threat Intel
date: 2026/08/28
logsource:
category: firewall
product: checkpoint
detection:
selection_auth:
- action|contains: 'failed'
protocol|contains: 'IKEv1'
selection_burst:
- action|contains: 'success'
condition: selection_auth and selection_burst
timeframe: 10m
level: high
tags:
- attack.initial_access
- attack.t1133
- attack.t1190
- cve.2026.50751
falsepositives:
- Legitimate VPN re-authentication during network instability
---
title: LockBit5 Lateral Movement - PsExec or WMI Remote Service Creation
id: 8a4b2d3f-6c9e-5f2b-0d7a-3b9c4e5f6a12
status: experimental
description: Detects remote service installation via PsExec-style named pipes or WMI process creation, consistent with LockBit affiliate lateral movement prior to ransomware detonation.
author: Security Arsenal Threat Intel
date: 2026/08/28
logsource:
category: process_creation
product: windows
detection:
selection_psexec:
Image|endswith: '\PSEXESVC.exe'
selection_wmi:
ParentImage|endswith: '\WmiPrvSE.exe'
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
- '\pwsh.exe'
selection_service:
CommandLine|contains:
- 'admin$'
- '\\PSEXESVC'
- 'wmic process call create'
condition: selection_psexec or (selection_wmi and selection_service)
level: high
tags:
- attack.lateral_movement
- attack.t1021.002
- attack.t1047
- attack.t1569.002
falsepositives:
- Legitimate administrative tooling; baseline admin hosts and service accounts
---
title: LockBit5 Pre-Encryption Staging - Shadow Copy Deletion and Rclone Exfiltration
id: 9c5d3e4a-7d0f-6a3c-1e8b-4c0d5f6a7b23
status: experimental
description: Detects Volume Shadow Copy deletion via vssadmin/wmic and Rclone-based data exfiltration — hallmark LockBit pre-encryption anti-recovery and double-extortion staging behavior.
author: Security Arsenal Threat Intel
date: 2026/08/28
logsource:
category: process_creation
product: windows
detection:
selection_vss:
- Image|endswith: '\vssadmin.exe'
CommandLine|contains:
- 'delete shadows'
- 'resize shadowstorage'
- Image|endswith: '\wmic.exe'
CommandLine|contains: 'shadowcopy delete'
- Image|endswith: '\bcdedit.exe'
CommandLine|contains: 'recoveryenabled no'
selection_rclone:
Image|endswith:
- '\rclone.exe'
CommandLine|contains:
- 'copy'
- 'sync'
- 'mega'
- 's3'
condition: selection_vss or selection_rclone
level: critical
tags:
- attack.impact
- attack.t1490
- attack.t1567.002
- attack.exfiltration
falsepositives:
- Backup software performing legitimate shadow copy management; approved Rclone usage — verify against change records
KQL Hunt — Microsoft Sentinel (Pre-Ransomware Staging & Lateral Movement)
// LockBit5 Pre-Detonation Hunt: staging, exfil, and anti-recovery in a 72h window
// Correlate on device to surface the full kill chain per host
let Lookback = 72h;
let AntiRecovery =
DeviceProcessEvents
| where TimeGenerated > ago(Lookback)
| where ProcessCommandLine has_any ("delete shadows", "shadowcopy delete", "recoveryenabled no", "resize shadowstorage")
| project AntiRecoveryTime=TimeGenerated, DeviceName, AccountName, AntiRecoveryCmd=ProcessCommandLine;
let ExfilStaging =
DeviceProcessEvents
| where TimeGenerated > ago(Lookback)
| where (FileName =~ "rclone.exe" or ProcessCommandLine has_any ("rclone", "mega.nz", "7z.exe a -p", "tar cvf"))
or (ProcessCommandLine has "compress" and ProcessCommandLine has_any ("-p", "password"))
| project ExfilTime=TimeGenerated, DeviceName, ExfilCmd=ProcessCommandLine, InitiatingProcessAccountName;
let LateralMove =
DeviceEvents
| where TimeGenerated > ago(Lookback)
| where ActionType == "ServiceInstalled"
| extend ServiceName = tostring(parse_json(AdditionalFields).ServiceName)
| where ServiceName has_any ("PSEXESVC", "PAExec", "RemComSvc") or ServiceName matches regex "^[a-zA-Z0-9]{8,16}$"
| project LateralTime=TimeGenerated, DeviceName, ServiceName;
AntiRecovery
| join kind=fullouter ExfilStaging on DeviceName
| join kind=fullouter LateralMove on DeviceName
| extend SignalCount = iif(isnotempty(AntiRecoveryCmd),1,0) + iif(isnotempty(ExfilCmd),1,0) + iif(isnotempty(ServiceName),1,0)
| where SignalCount >= 2
| project DeviceName, AntiRecoveryTime, AntiRecoveryCmd, ExfilTime, ExfilCmd, LateralTime, ServiceName, SignalCount
| order by SignalCount desc;
Tuning note: Any single host hitting two or more of these signal classes inside 72 hours should be treated as a probable pre-ransomware intrusion and escalated to incident response immediately. Add your known backup-admin hosts to an allowlist watchlist before production deployment.
Rapid-Response Detection Script — PowerShell
# LockBit5 Rapid Triage — Run on suspected hosts or via remote PS across fleet
# Checks: shadow copy state, recent scheduled tasks, suspicious services, exposed RDP, recent exfil tooling
$Report = @()
Write-Host "[1/5] Checking Volume Shadow Copy integrity..." -ForegroundColor Cyan
$Shadows = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
$Report += [PSCustomObject]@{ Check="ShadowCopies"; Result = if($Shadows){ "$($Shadows.Count) shadow copies present" } else { "ALERT: NO shadow copies found - possible vssadmin deletion (T1490)" } }
Write-Host "[2/5] Enumerating scheduled tasks created in last 7 days..." -ForegroundColor Cyan
$RecentTasks = Get-ScheduledTask | Where-Object { $_.Date -and ([datetime]$_.Date) -gt (Get-Date).AddDays(-7) } |
Where-Object { $_.TaskPath -notlike "*Microsoft*" }
$Report += [PSCustomObject]@{ Check="RecentScheduledTasks"; Result = if($RecentTasks){ ($RecentTasks | ForEach-Object { "$($_.TaskName) [$($_.Date)]" }) -join "; " } else { "None" } }
Write-Host "[3/5] Checking for suspicious services (PsExec/random-name pattern)..." -ForegroundColor Cyan
$SusServices = Get-CimInstance Win32_Service | Where-Object {
$_.Name -match "^(PSEXESVC|PAExec|RemComSvc|[a-zA-Z0-9]{8,16})$" -and $_.PathName -notmatch "Program Files"
}
$Report += [PSCustomObject]@{ Check="SuspiciousServices"; Result = if($SusServices){ ($SusServices | ForEach-Object { "$($_.Name) -> $($_.PathName)" }) -join "; " } else { "None" } }
Write-Host "[4/5] Checking RDP exposure and recent failed logons..." -ForegroundColor Cyan
$RDPEnabled = (Get-ItemProperty "HKLM:\System\CurrentControlSet\Control\Terminal Server").fDenyTSConnections -eq 0
$FailedLogons = Get-WinEvent -FilterHashtable @{LogName='Security'; Id=4625; StartTime=(Get-Date).AddDays(-3)} -MaxEvents 500 -ErrorAction SilentlyContinue
$BruteForce = ($FailedLogons | Group-Object { $_.Properties[19].Value } | Where-Object { $_.Count -gt 25 })
$Report += [PSCustomObject]@{ Check="RDP"; Result = "RDP enabled: $RDPEnabled; Source IPs with >25 failed logons (3d): $(if($BruteForce){($BruteForce.Name) -join ', '}else{'None'})" }
Write-Host "[5/5] Searching for exfil/staging artifacts..." -ForegroundColor Cyan
$ExfilTools = Get-ChildItem -Path "C:\Users\*\*","C:\ProgramData","C:\Temp" -Include "rclone.exe","7z.exe","winrar.exe","*.mega*" -Recurse -ErrorAction SilentlyContinue -Depth 3 | Select-Object -First 20
$Report += [PSCustomObject]@{ Check="ExfilTooling"; Result = if($ExfilTools){ ($ExfilTools.FullName) -join "; " } else { "None" } }
$Report | Format-Table -AutoSize -Wrap
$Report | Export-Csv -Path "$env:TEMP\LockBit5_Triage_$(hostname)_$(Get-Date -Format 'yyyyMMdd_HHmm').csv" -NoTypeInformation
Write-Host "`nReport saved to $env:TEMP. Any ALERT or suspicious service = isolate host and escalate to IR." -ForegroundColor Yellow
4. Incident Response Priorities (LockBit-Specific Playbook)
T-Minus Detection Checklist — BEFORE Encryption Fires
- vssadmin / wmic / bcdedit execution anywhere outside a backup maintenance window (T1490)
- Rclone.exe, 7z with password flags, or large archive creation on file servers (T1560)
- New services with random 8–16 character names or PSEXESVC (T1569.002)
- Mass SMB write bursts or a single host touching an abnormally high share count in minutes
- EDR/AV tampering attempts: attempts to stop/defeat Defender, Sophos, CrowdStrike services (T1562.001)
- Anomalous VPN logons from unfamiliar ASN/geography against Check Point or any perimeter gateway, especially IKEv1 events
- ScreenConnect/RMM sessions initiated outside change windows (CVE-2024-1708 follow-on abuse)
Critical Assets This Gang Prioritizes for Exfiltration
- Patient/PHI and client PII databases — highest extortion leverage for healthcare victims
- HR/payroll exports and financial records (QuickBooks, ERP dumps)
- Legal documents, contracts, M&A material
- Email archives from executive mailboxes (Exchange — note CVE-2023-21529 relevance)
- Backup catalogs and credentials — affiliates actively enumerate and destroy recovery capability first
Containment Actions — Ordered by Urgency
- Isolate affected hosts at the switch/EDR level immediately — do not power off; preserve memory for forensics
- Disable the compromised VPN gateway accounts and force re-authentication; if Check Point exploitation is suspected, take the gateway offline pending patch verification
- Revoke all active sessions / rotate credentials for any account observed in lateral movement — assume domain-wide credential compromise if a DC or Tier-0 asset was touched
- Block Rclone/cloud-storage egress at the proxy/firewall (Mega, unknown S3 endpoints)
- Snapshot and isolate backup infrastructure; verify offline/immutable copies before touching anything else
- Engage IR retainer and legal/comms — healthcare victims have HIPAA notification clocks; EU victims have GDPR 72-hour obligations
5. Hardening Recommendations
Immediate (24 Hours)
- Patch or mitigate Check Point Security Gateways for CVE-2026-50751. If patching is not possible today, disable IKEv1 key exchange per vendor guidance and restrict gateway management/VPN interfaces to trusted source ranges.
- Patch ConnectWise ScreenConnect (CVE-2024-1708) and audit RMM logs for unauthorized sessions in the last 30 days.
- Apply Microsoft fixes for CVE-2025-60710 (privilege escalation) and CVE-2023-21529 (Exchange deserialization) — both are active post-access enablers.
- Deploy the Sigma rules above and run the KQL hunt across the last 72 hours of telemetry.
- Block vssadmin/wmic shadow deletion for non-backup service accounts via WDAC/AppLocker or endpoint policy.
- Disable RDP from the internet; enforce VPN + MFA for all remote administration.
Short-Term (2 Weeks)
- Implement immutable/offline backups (air-gapped or object-lock) with restoration tests — LockBit affiliates explicitly target backup infrastructure first.
- Segment the network: isolate clinical/OT systems (healthcare), file servers, and backup VLANs; deploy host-based firewall rules blocking workstation-to-workstation SMB/RDP/WinRM.
- Deploy application allowlisting on servers to block unauthorized binaries (rclone.exe, ad-hoc 7z/RAR, renamed tools).
- Enable MFA on all remote access and privileged accounts; audit and reduce local admin rights.
- Stand up canary file shares with alerting on access — an early-warning tripwire against encryption-stage mass file access.
- Review developer toolchain integrity (Nx Console / CVE-2026-48027) — pin package versions, verify signatures, and monitor build agents for egress anomalies.
Analyst Bottom Line
LOCKBIT5's five-victim single-day dump confirms the franchise has rebuilt affiliate capacity post-disruption and is operating against the soft underbelly of the mid-market: healthcare providers and European tech/professional services SMBs with exposed perimeter devices. The detection content above targets the specific TTP chain — perimeter exploitation → PsExec/WMI lateral movement → Rclone exfil → shadow copy destruction → encryption. The 5–10 day dwell window means the telemetry is already there if you're looking. Hunt now; don't wait for the note on the desktop.
Related Resources
Security Arsenal Incident Response Managed SOC & MDR Services AlertMonitor Threat Detection From The Dark Side Intel Hub
Is your security operations ready?
Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.