The U.S. Department of Justice has secured a four-year prison sentence for a Ukrainian national who deployed Conti ransomware against at least 12 organizations in the United States, according to reporting from The HIPAA Journal. While the sentencing itself is a law-enforcement milestone, the operational significance for defenders is different: the Conti playbook — despite the group's formal dissolution in 2022 — remains the template that active ransomware crews continue to run against healthcare providers, business associates, and mid-market enterprises in 2026.
Let me be direct about why this matters to your SOC. Conti wasn't just a ransomware strain. It was an operational model: initial access through brokered footholds, rapid credential theft, lateral movement over SMB and RDP, staged exfiltration for double extortion, and then — only after data was safely off your network — mass encryption preceded by systematic destruction of Volume Shadow Copies and backup catalogs. The leaked Conti manuals (the 2021 "Conti leaks") gave every affiliate-level operator in the ecosystem a copy of that playbook, and its techniques are still what we see in ransomware IR engagements today, whether the payload is branded Black Basta, Akira, or a dozen other successor operations.
For healthcare organizations specifically, the stakes are amplified. Conti and its successors have repeatedly targeted covered entities where encryption of clinical systems translates directly into patient-safety risk, and where exfiltrated PHI triggers HIPAA breach notification obligations, OCR investigations, and class-action exposure. A four-year sentence for one operator does nothing to reduce that risk. Your detection coverage does.
Technical Analysis
The Conti Attack Chain (as relevant to current intrusions)
Based on DOJ disclosures and the documented Conti tradecraft that persists in successor operations, the intrusion lifecycle defenders must detect breaks down as follows:
- Initial Access: Typically via phishing-delivered loaders (BazarLoader/TrickBot lineage), exposed RDP, or purchased access from initial access brokers. No software vulnerability is required — the attack chain is overwhelmingly credential- and social-engineering-driven.
- Execution & Persistence: Cobalt Strike beacons deployed via rundll32 or regsvr32, persistence through scheduled tasks and Run keys. Conti operators favored
AnyDeskand similar RMM tools as fallback access — a pattern still seen constantly in healthcare ransomware cases. - Credential Access: Mimikatz and comsvcs.dll-based LSASS dumps, plus extraction of saved RDP credentials and browser stores.
- Discovery & Lateral Movement:
net.exedomain enumeration,nltest,AdFind, then PsExec-style service creation over SMB (admin$ shares) and RDP pivoting. - Exfiltration (Double Extortion): Rclone or MEGASync staged into staging directories, frequently under
C:\ProgramDataor user profile temp paths, exfiltrated over HTTPS to cloud storage. This phase routinely runs for days before encryption — it is your best detection window. - Impact: Before the locker runs, operators execute
vssadmin delete shadows,wbadmin delete catalog, andbcdeditrecovery-disabled modifications, then push the encryptor domain-wide via PsExec or Group Policy.
Exploitation Status
This news item is not tied to a specific CVE, and none should be invented. The threat is a technique set, not a patchable bug. Conti-derived TTPs are confirmed actively in use by successor ransomware groups targeting US healthcare and enterprise organizations in 2025–2026. Multiple Conti-associated techniques and successor operations appear in CISA advisories and #StopRansomware joint guidance. Treat every stage above as a currently observed behavior, not a historical curiosity.
Detection & Response
The following detections target the highest-signal, lowest-noise behaviors in the Conti kill chain. I have deliberately excluded noisy detections (e.g., generic net.exe usage) that would be disabled within a week in any real environment. Each rule below fires on behavior that is either explicitly malicious or has an extremely narrow legitimate-use profile.
Sigma Rules
---
title: Shadow Copy and Backup Catalog Deletion - Ransomware Pre-Encryption Staging
id: 8c2f4a91-3b7d-4e5f-9a21-6d8c0e1f2a3b
status: experimental
description: Detects deletion of Volume Shadow Copies, backup catalogs, or boot recovery configuration — the canonical pre-encryption behavior used by Conti and successor ransomware operations to prevent recovery.
references:
- https://attack.mitre.org/techniques/T1490/
- https://www.hipaajournal.com/conti-ransomware-member-sentenced-4-years/
author: Security Arsenal
date: 2026/04/06
tags:
- attack.impact
- attack.t1490
logsource:
category: process_creation
product: windows
detection:
selection_vssadmin:
Image|endswith: '\vssadmin.exe'
CommandLine|contains:
- 'delete shadows'
- 'resize shadowstorage'
selection_wbadmin:
Image|endswith: '\wbadmin.exe'
CommandLine|contains:
- 'delete catalog'
- 'delete backup'
selection_bcdedit:
Image|endswith: '\bcdedit.exe'
CommandLine|contains:
- 'recoveryenabled no'
- 'ignoreallfailures'
selection_wmic:
Image|endswith: '\wmic.exe'
CommandLine|contains: 'shadowcopy delete'
condition: 1 of selection_*
falsepositives:
- Rare legitimate backup maintenance by backup administrators - whitelist known maintenance accounts and windows
level: critical
---
title: Rclone or Cloud Sync Tool Execution from Suspicious Path - Data Exfiltration Staging
id: 3d7e9b24-8a1c-4f6d-b5e2-9c0a1d3e4f5a
status: experimental
description: Detects execution of rclone or similar cloud-sync exfiltration tools from non-standard paths, a hallmark of Conti-style double-extortion staging before encryption.
references:
- https://attack.mitre.org/techniques/T1567/002/
- https://attack.mitre.org/techniques/T1105/
author: Security Arsenal
date: 2026/04/06
tags:
- attack.exfiltration
- attack.t1567.002
logsource:
category: process_creation
product: windows
detection:
selection_img:
Image|endswith:
- '\rclone.exe'
- '\megacmd.exe'
- '\MEGAsync.exe'
selection_cli:
CommandLine|contains:
- ' copy '
- ' sync '
- ' move '
selection_path:
Image|contains:
- '\Users\Public\'
- '\ProgramData\'
- '\AppData\Local\Temp\'
- '\AppData\Roaming\'
condition: selection_img and selection_cli and selection_path
falsepositives:
- IT-sanctioned rclone deployments run from fixed install directories - exclude approved install paths
level: high
---
title: PsExec-Style Remote Service Creation with Encryptor-Like Binary
id: 5a1c8e36-2f4b-4d7a-9c3e-1b5d7f9a2c4e
status: experimental
description: Detects remote service installation executing a binary from ADMIN$ or a temporary path - consistent with Conti operators pushing encryptors laterally via PsExec or similar tooling.
references:
- https://attack.mitre.org/techniques/T1569/002/
- https://attack.mitre.org/techniques/T1021/002/
author: Security Arsenal
date: 2026/04/06
tags:
- attack.lateral_movement
- attack.t1569.002
- attack.t1021.002
logsource:
category: process_creation
product: windows
detection:
selection_parent:
ParentImage|endswith: '\services.exe'
selection_path:
Image|contains:
- 'ADMIN$'
- '\Windows\Temp\'
- '\Users\Public\'
condition: selection_parent and selection_path
falsepositives:
- Legitimate software deployment tools (SCCM, PDQ) - baseline approved deployment service binaries and parent processes
level: high
KQL — Microsoft Sentinel / Defender
This query hunts the full pre-encryption behavior cluster across both Defender for Endpoint telemetry and Sysmon-ingested SecurityEvent data. It correlates shadow copy destruction, suspicious cloud-exfil tooling, and lateral service execution into a single triage view:
let Lookback = 7d;
let SuspiciousExfilTools = dynamic(["rclone.exe", "megacmd.exe", "MEGAsync.exe"]);
let ImpactCmds = dynamic(["delete shadows", "delete catalog", "shadowcopy delete", "recoveryenabled no", "resize shadowstorage"]);
let MDE = DeviceProcessEvents
| where TimeGenerated > ago(Lookback)
| where (FileName in~ (SuspiciousExfilTools) and ProcessCommandLine has_any ("copy", "sync", "move"))
or (ProcessCommandLine has_any (ImpactCmds))
or (InitiatingProcessFileName =~ "services.exe" and (FolderPath has_any (@"\Windows\Temp\", @"\Users\Public\") or ProcessCommandLine has "ADMIN$"))
| project TimeGenerated, DeviceName, AccountName, FileName, ProcessCommandLine, InitiatingProcessFileName, SHA256, Source = "MDE";
let Sysmon = SecurityEvent
| where TimeGenerated > ago(Lookback)
| where EventID == 4688
| where (Process in~ (SuspiciousExfilTools) and CommandLine has_any ("copy", "sync", "move"))
or (CommandLine has_any (ImpactCmds))
or (ParentProcessName has "services.exe" and (NewProcessName has_any (@"\Temp\", @"\Public\") or CommandLine has "ADMIN$"))
| project TimeGenerated, Computer, Account, Process, CommandLine, ParentProcessName, Source = "Sysmon";
union MDE, Sysmon
| sort by TimeGenerated desc
Run this as a scheduled analytics rule with a high-severity alert mapping. Any hit on the ImpactCmds branch outside a documented backup-maintenance window is a page-the-on-call event: shadow copy deletion on a server is, in practice, a ransomware precursor until proven otherwise.
Velociraptor VQL
For IR triage and proactive hunts, this artifact pulls running processes matching exfiltration tooling or impact-phase command lines, plus evidence of recently executed encryptor staging paths:
-- Hunt for ransomware staging: exfil tools, impact commands, and suspicious executables
SELECT Pid, Ppid, Name, Exe, CommandLine, Username, CreateTime
FROM pslist()
WHERE CommandLine =~ '(?i)delete shadows|delete catalog|shadowcopy delete|recoveryenabled no|rclone.*(copy|sync|move)|megasync'
OR Exe =~ '(?i)(Users\\Public|ProgramData|AppData\\Local\\Temp)\\[^\\]+\.exe$'
OR Name =~ '(?i)rclone|megacmd'
Pair this with a glob hunt for ransom notes and staged archives in common staging directories:
-- Hunt for ransom notes and staged exfiltration archives
SELECT FullPath, Size, Mtime
FROM glob(globs=['C:/Users/Public/**/*.txt', 'C:/Users/Public/**/*.zip', 'C:/Users/Public/**/*.7z', 'C:/ProgramData/**/*.rar', 'C:/ProgramData/**/readme*.txt', 'C:/ProgramData/**/*recover*.txt'])
WHERE Mtime > now() - 604800
AND Size > 0
Hardening & Verification Script
The following PowerShell script validates the controls that break the Conti kill chain: shadow copy protection status, LSA protection (against credential dumping), SMB signing, and audit posture for the detections above. Run it across servers via your RMM or GPO startup script and pipe results to your SIEM.
# Conti-technique hardening verification - run elevated, output to SIEM
$Report = [ordered]@{}
$Report.Hostname = $env:COMPUTERNAME
$Report.Timestamp = (Get-Date).ToString('o')
# 1. Verify VSS is enabled and shadow copies exist on all fixed volumes
$Volumes = Get-WmiObject Win32_Volume -Filter "DriveType=3" | Where-Object { $_.DriveLetter }
$VssStatus = foreach ($v in $Volumes) {
$shadows = Get-WmiObject Win32_ShadowCopy -ErrorAction SilentlyContinue | Where-Object { $_.VolumeName -eq $v.Name }
[PSCustomObject]@{ Volume = $v.DriveLetter; ShadowCopiesPresent = [bool]$shadows }
}
$Report.VssStatus = ($VssStatus | ConvertTo-Json -Compress)
# 2. LSA Protection (RunAsPPL) - mitigates Mimikatz/comsvcs LSASS dumping
$lsa = Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Lsa' -Name RunAsPPL -ErrorAction SilentlyContinue
$Report.LsaProtectionEnabled = ($lsa.RunAsPPL -eq 1)
# 3. SMB signing required - hinders unsigned lateral movement relay/abuse
$smbServer = Get-SmbServerConfiguration
$Report.SmbSigningRequired = $smbServer.RequireSecuritySignature
# 4. Command-line process auditing enabled (required for Sigma/KQL detections above)
$cmdAudit = (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\Audit' -Name ProcessCreationIncludeCmdLine_Enabled -ErrorAction SilentlyContinue).ProcessCreationIncludeCmdLine_Enabled
$Report.CmdLineAuditingEnabled = ($cmdAudit -eq 1)
# 5. Check for unauthorized RMM tools commonly abused by ransomware affiliates
$rmm = @('AnyDesk.exe','ScreenConnect.exe','TeamViewer.exe','AteraAgent.exe','SplashtopSOS.exe')
$installed = Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall','HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall' -ErrorAction SilentlyContinue |
Get-ItemProperty | Select-Object -ExpandProperty DisplayName -ErrorAction SilentlyContinue
$Report.UnauthorizedRMM = @($rmm | Where-Object { $tool = $_; $installed | Where-Object { $_ -match ($tool -replace '\.exe$','') } }) -join ','
# 6. PowerShell logging posture (ScriptBlock + Module logging)
$sb = (Get-ItemProperty 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\PowerShell\ScriptBlockLogging' -Name EnableScriptBlockLogging -ErrorAction SilentlyContinue).EnableScriptBlockLogging
$Report.ScriptBlockLoggingEnabled = ($sb -eq 1)
$Report | ConvertTo-Json -Compress
# Fail conditions requiring action: LsaProtectionEnabled=$false, CmdLineAuditingEnabled=$false, non-empty UnauthorizedRMM
Remediation
Because this threat is technique-based rather than CVE-based, remediation is architectural, not a patch deployment. Prioritize in this order:
- Immutable, isolated backups with tested restore: Conti's first impact action is shadow copy and backup catalog destruction. Assume on-network backups will be found and destroyed. Maintain offline or immutable (object-lock) backup copies, and — critically — run a timed restore drill quarterly. In healthcare IR engagements, the difference between a 3-day and a 30-day outage is almost always whether restores were ever actually tested.
- Kill the exfiltration window: Deploy egress filtering that blocks or alerts on unsanctioned cloud storage endpoints (MEGA, and similar), and alert on rclone-class tooling via the detections above. Double extortion means encryption is the last stage — catching staged exfiltration days earlier converts a breach into a contained incident.
- Credential hygiene: Enable LSA Protection (RunAsPPL), deploy Credential Guard on supported endpoints, rotate all service and admin credentials on any suspicion of intrusion, and enforce phishing-resistant MFA on all remote access (RDP gateways, VPN, VDI). Conti affiliates lived off stolen credentials; credential theft is still the pivot point in nearly every ransomware case we work.
- Restrict lateral movement: Require SMB signing, disable PsExec-style remote service creation where deployment tooling allows, tier administrative accounts, and firewall workstation-to-workstation SMB/RDP. A single flat network is what turns one phished workstation into a domain-wide encryption event.
- Control RMM tooling: Maintain an explicit allowlist of remote-management software and alert on any other execution. Unauthorized AnyDesk remains one of the most reliable ransomware-intrusion indicators in existence.
- Healthcare-specific obligations: If your organization is a covered entity or business associate, map this scenario into your HIPAA Security Rule risk analysis and incident response plan now. A Conti-style double-extortion event is virtually certain to constitute a reportable breach involving unsecured PHI — pre-stage your OCR notification workflows, forensic retainer, and counsel contacts before you need them at 3 a.m.
- Tabletop the scenario: Run an executive and technical tabletop exercise on exactly this kill chain — access broker foothold, silent exfiltration, weekend encryption. Measure time-to-detect against each stage above. If your answer for the exfiltration stage is "we wouldn't see it," that is your first funded project.
The sentencing of one Conti operator is a footnote. The playbook he ran is still in active use against US organizations — including healthcare — every week. The detections and hardening steps above target the exact behaviors that playbook depends on. Deploy them, tune them against your environment, and test them with purple-team validation before an affiliate tests them for you.
Related Resources
Security Arsenal Healthcare Cybersecurity AlertMonitor Platform Book a SOC Assessment healthcare Intel Hub
Is your security operations ready?
Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.