A new analysis of encryption-based cyber incident activity — ransomware, in plain terms — reveals a statistic that should reset priorities in every healthcare security program: 77% of active ransomware groups are now targeting the healthcare sector. This is not background noise or opportunistic scanning. It is broad, consistent, deliberate targeting pressure against hospitals, clinics, business associates, and the supply chain that supports them across the United States.
For defenders, the implication is stark: if you operate a HIPAA-covered entity or business associate, you are not a potential target — you are a priority target. Healthcare remains attractive to ransomware operators for three structural reasons: (1) patient safety pressure creates extreme willingness to pay, (2) clinical environments run legacy, unpatchable systems adjacent to modern IT, and (3) protected health information (PHI) provides double-extortion leverage even when encryption fails. Organizations that still treat ransomware as an IT availability problem rather than a patient-safety and regulatory crisis are operating on an outdated threat model.
This post breaks down the ransomware attack chain as it presents against healthcare environments in 2026, and provides the detection rules, hunt queries, and hardening steps your SOC should deploy now.
Technical Analysis
What "encryption-based cyber incident activity" means operationally
The referenced analysis tracks ransomware and data-extortion groups whose attacks culminate in mass file encryption (often paired with exfiltration for double extortion). While the specific tooling varies by group, the post-compromise attack chain in healthcare intrusions is remarkably consistent across operators. Understanding this chain is where defensive value lives — you cannot reliably detect initial access (phishing, VPN/RDP brute force, exploitation of edge appliances, third-party compromise), but you can reliably detect the behaviors that follow.
The canonical ransomware kill chain in a healthcare environment:
- Initial access — Phishing with malicious attachments/links, exposed RDP, compromised VPN credentials (frequently lacking MFA), or exploitation of internet-facing appliances. Healthcare's extended ecosystem of vendors and business associates expands this surface considerably.
- Discovery and credential theft — Enumerating domain trusts, shares, and backup infrastructure; dumping credentials from LSASS or extracting NTDS.dit.
- Lateral movement — SMB/Admin$ shares, PsExec-style service creation, RDP, and WMI/WinRM to reach clinical workstations, medical device gateways, and — critically — backup servers (Veeam, Commvault) and virtualization hosts (ESXi).
- Defense evasion — Disabling or uninstalling EDR/AV, clearing event logs, and deleting Volume Shadow Copies to destroy the fastest recovery path.
- Exfiltration (double extortion) — Staging and archiving PHI, then exfiltrating to cloud storage or actor-controlled infrastructure.
- Impact: mass encryption — Deploying the encryptor across the domain, typically via Group Policy, PsExec, or scheduled tasks; dropping ransom notes; renaming files with group-specific extensions; modifying desktop wallpaper.
Why healthcare specifically
- Flat, high-trust networks: Clinical VLANs are often poorly segmented from corporate IT. One compromised workstation can reach EHR-adjacent servers and medical device management systems.
- Legacy and unpatchable systems: Windows XP/7-era devices and embedded OSes tied to FDA-regulated medical equipment cannot be patched on normal cadences, creating persistent footholds.
- Backup targeting: Ransomware groups explicitly hunt backup consoles first. In healthcare, where downtime procedures are measured in patient risk, destroying recovery capability is the highest-leverage move an attacker can make.
- Regulatory pressure: A ransomware event involving PHI is a reportable breach under HIPAA (presumed breach unless low probability of compromise is demonstrated), adding OCR reporting, notification, and potential penalty exposure on top of operational disruption.
Exploitation status
This is not a theoretical or single-vulnerability threat. Encryption-based attacks against US healthcare are confirmed, ongoing, and conducted by the majority of active ransomware operations. There is no CVE to patch away — this is a defense-in-depth, detection, and resilience problem. The defensive posture below reflects that reality.
Detection & Response
The highest-fidelity ransomware detections target behaviors that are nearly impossible for operators to avoid: shadow copy deletion, mass file modification, ransom note creation, and backup tampering. These fire late in the kill chain but early enough to trigger isolation before domain-wide encryption completes.
Sigma Rules
---
title: Volume Shadow Copy Deletion via Command-Line Tools
id: 3f8a2b14-7c91-4e55-b6d2-9a1f0c4e5d77
status: experimental
description: Detects deletion or resizing of Volume Shadow Copies using vssadmin, wmic, or diskshadow — a hallmark pre-encryption step used by virtually all ransomware families to prevent rapid recovery.
references:
- https://attack.mitre.org/techniques/T1490/
- https://www.hipaajournal.com/ransomware-industry-targeting-us/
author: Security Arsenal
date: 2026/04/06
tags:
- attack.impact
- attack.t1490
logsource:
category: process_creation
product: windows
detection:
selection_img:
Image|endswith:
- '\vssadmin.exe'
- '\wmic.exe'
- '\diskshadow.exe'
- '\powershell.exe'
- '\pwsh.exe'
selection_cmd:
CommandLine|contains:
- 'delete shadows'
- 'shadowcopy delete'
- 'delete shadowstorage'
- 'resize shadowstorage'
- 'Win32_ShadowCopy'
condition: selection_img and selection_cmd
falsepositives:
- Backup software performing legitimate shadow copy management (rare for deletion; verify against backup windows)
- System administrators during storage troubleshooting
level: high
---
title: Mass File Renaming with Suspicious Extension (Ransom Note Pattern)
id: 91c4d7e2-5a38-4f60-a821-6b3e9d0f2c44
status: experimental
description: Detects creation of files matching common ransom note naming conventions across user-writable directories, indicating an active encryption event.
references:
- https://attack.mitre.org/techniques/T1486/
- https://www.hipaajournal.com/ransomware-industry-targeting-us/
author: Security Arsenal
date: 2026/04/06
tags:
- attack.impact
- attack.t1486
logsource:
category: file_event
product: windows
detection:
selection:
TargetFilename|contains:
- 'readme_for_decrypt'
- 'how_to_decrypt'
- 'how_to_recover'
- 'restore-my-files'
- 'decrypt_instruction'
- '!_readme_!'
- 'ransom_note'
- 'recover your files'
- 'how_to_back_files'
condition: selection
falsepositives:
- Security awareness simulations and authorized penetration tests
level: critical
---
title: Backup and Security Tool Tampering via Service Control
id: 5b2e8f31-9d47-4a1c-b3e6-0f8a2c1d9e55
status: experimental
description: Detects attempts to stop or disable backup agents, VSS-dependent services, or security tooling via sc.exe or net.exe — a standard ransomware pre-encryption step targeting recovery capability and EDR.
references:
- https://attack.mitre.org/techniques/T1562/001/
- https://attack.mitre.org/techniques/T1490/
- https://www.hipaajournal.com/ransomware-industry-targeting-us/
author: Security Arsenal
date: 2026/04/06
tags:
- attack.defense_evasion
- attack.t1562.001
- attack.impact
logsource:
category: process_creation
product: windows
detection:
selection_img:
Image|endswith:
- '\sc.exe'
- '\net.exe'
- '\net1.exe'
selection_cmd:
CommandLine|contains:
- 'stop'
- 'disable'
- 'delete'
selection_target:
CommandLine|contains:
- 'veeam'
- 'backup'
- 'vss'
- 'sophos'
- 'defender'
- 'sentinel'
- 'crowdstrike'
- 'csagent'
- 'falcon'
- 'carbonblack'
- 'cbdefense'
- 'mfevtp'
- 'mbamservice'
condition: selection_img and selection_cmd and selection_target
falsepositives:
- Legitimate software deployment and patch management tools stopping services during upgrades
level: high
KQL — Microsoft Sentinel / Defender Hunt Query
This query hunts for the convergence of pre-encryption behaviors across your endpoint estate — shadow copy deletion, backup service tampering, and ransom note artifacts — correlating them per device over a 24-hour window. A single device exhibiting two or more of these behaviors is a high-confidence active intrusion requiring immediate isolation.
// Hunt: Pre-encryption ransomware behaviors correlated per device (24h)
// Tables: DeviceProcessEvents, DeviceFileEvents (Defender) — adapt to SecurityEvent/Syslog for non-Defender ingestion
let Lookback = 24h;
let ShadowCopy = DeviceProcessEvents
| where TimeGenerated > ago(Lookback)
| where FileName in~ ("vssadmin.exe", "wmic.exe", "diskshadow.exe", "powershell.exe", "pwsh.exe")
| where ProcessCommandLine has_any ("delete shadows", "shadowcopy delete", "delete shadowstorage", "resize shadowstorage", "Win32_ShadowCopy")
| summarize ShadowCopyEvents = count(), FirstSeen = min(TimeGenerated) by DeviceName, InitiatingProcessAccountName
| extend Behavior = "ShadowCopyDeletion";
let ServiceTamper = DeviceProcessEvents
| where TimeGenerated > ago(Lookback)
| where FileName in~ ("sc.exe", "net.exe", "net1.exe")
| where ProcessCommandLine has_any ("stop", "disable", "delete")
| where ProcessCommandLine has_any ("veeam", "backup", "vss", "sophos", "defender", "sentinel", "crowdstrike", "csagent", "carbonblack", "mbamservice")
| summarize ServiceTamperEvents = count() by DeviceName, InitiatingProcessAccountName
| extend Behavior = "BackupSecurityServiceTampering";
let RansomNotes = DeviceFileEvents
| where TimeGenerated > ago(Lookback)
| where FileName has_any ("readme_for_decrypt", "how_to_decrypt", "how_to_recover", "restore-my-files", "decrypt_instruction", "ransom_note", "recover your files")
| summarize RansomNoteEvents = count(), NotePaths = make_set(FolderPath, 5) by DeviceName
| extend Behavior = "RansomNoteCreation";
ShadowCopy
| union ServiceTamper, RansomNotes
| summarize Behaviors = make_set(Behavior), TotalEvents = sum(ShadowCopyEvents) + sum(ServiceTamperEvents) + sum(RansomNoteEvents) by DeviceName
| extend BehaviorCount = array_length(Behaviors)
| where BehaviorCount >= 2
| sort by BehaviorCount desc, TotalEvents desc
For environments ingesting firewall/Syslog telemetry into CommonSecurityLog, also hunt for large outbound transfers to consumer cloud storage and unfamiliar external IPs from server VLANs during off-hours — exfiltration staging is the double-extortion tell that precedes encryption by days.
Velociraptor VQL
Use this hunt artifact during triage of a suspected ransomware precursor. It enumerates shadow copies (their absence is itself an indicator), suspicious recently-created note files, and running processes with command lines matching tampering behavior.
-- Hunt: Ransomware precursor triage — shadow copies, ransom notes, tampering processes
SELECT {
SELECT Pid, Name, CommandLine, Exe, Username
FROM pslist()
WHERE CommandLine =~ '(?i)(delete shadows|shadowcopy|shadowstorage|sc (stop|delete|config).*(veeam|backup|vss|defender|sophos|crowdstrike))'
} AS TamperingProcesses,
{
SELECT FullPath, Size, Mtime
FROM glob(globs=[
'C:/Users/*/Desktop/*readme*.txt',
'C:/Users/*/Documents/*decrypt*',
'C:/Users/*/Desktop/*recover*',
'C:/ProgramData/**/*readme*.hta'
], accessor='ntfs')
} AS PossibleRansomNotes,
{
SELECT * FROM execve(argv=['powershell', '-NoProfile', '-Command', 'Get-WmiObject Win32_ShadowCopy | Select-Object DeviceObject, InstallDate | ConvertTo-Json'])
} AS ShadowCopyInventory
FROM scope()
An empty ShadowCopyInventory on a server that previously had restore points enabled — combined with any hit in the other two sections — is sufficient justification to invoke your IR plan and isolate the host.
Remediation & Hardening Script
Run this PowerShell script (elevated) across Windows servers and clinical workstations to verify and enforce key ransomware-resilience configurations. It is verification-first: it reports state, then remediates only with the -Remediate switch.
# Security Arsenal - Ransomware Resilience Verification & Hardening
# Requires: Run as Administrator. Add -Remediate to apply fixes.
param([switch]$Remediate)
$report = @()
# 1. Verify Volume Shadow Copy service is enabled and snapshots exist
$vss = Get-Service -Name VSS -ErrorAction SilentlyContinue
$shadows = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
$report += [pscustomobject]@{
Check = 'VSS Service Status'; Status = if ($vss.Status -eq 'Running') {'OK'} else {'AT RISK'}
}
$report += [pscustomobject]@{
Check = 'Shadow Copies Present'; Status = if ($shadows) {"OK ($($shadows.Count) snapshots)"} else {'AT RISK - none found'}
}
# 2. Enable Controlled Folder Access (Defender ransomware protection) if supported
$cfa = Get-MpPreference | Select-Object -ExpandProperty EnableControlledFolderAccess -ErrorAction SilentlyContinue
$report += [pscustomobject]@{
Check = 'Controlled Folder Access'; Status = if ($cfa -eq 1) {'OK'} else {'DISABLED'}
}
if ($Remediate -and $cfa -ne 1) {
Set-MpPreference -EnableControlledFolderAccess Enabled
Write-Output '[REMEDIATED] Controlled Folder Access enabled.'
}
# 3. Block Office child process abuse (common initial-access vector)
$asrRule = 'D4F940AB-401B-4EFC-AADC-AD5F3C50688A' # Block Office apps from creating child processes
$asr = (Get-MpPreference).AttackSurfaceReductionRules_Ids
$report += [pscustomobject]@{
Check = 'ASR: Office Child Process Block'; Status = if ($asr -contains $asrRule) {'OK'} else {'NOT CONFIGURED'}
}
if ($Remediate -and $asr -notcontains $asrRule) {
Add-MpPreference -AttackSurfaceReductionRules_Ids $asrRule -AttackSurfaceReductionRules_Actions Enabled
Write-Output '[REMEDIATED] ASR Office child process rule enabled.'
}
# 4. Audit: who can delete shadow copies / stop services (verify no unexpected local admins)
$admins = Get-LocalGroupMember -Group 'Administrators' -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Name
$report += [pscustomobject]@{
Check = 'Local Administrators'; Status = ($admins -join '; ')
}
# 5. Verify SMBv1 disabled (legacy lateral-movement/enumeration vector)
$smb1 = Get-SmbServerConfiguration | Select-Object -ExpandProperty EnableSMB1Protocol
$report += [pscustomobject]@{
Check = 'SMBv1 Disabled'; Status = if (-not $smb1) {'OK'} else {'ENABLED - AT RISK'}
}
if ($Remediate -and $smb1) {
Set-SmbServerConfiguration -EnableSMB1Protocol $false -Force
Write-Output '[REMEDIATED] SMBv1 disabled.'
}
$report | Format-Table -AutoSize
Write-Output "`nReview 'AT RISK' items. Re-run with -Remediate to enforce remediations."
Remediation & Strategic Priorities
Given that 77% of ransomware groups are actively targeting healthcare, the following priorities apply immediately — ordered by impact per unit of effort:
- Protect recovery first. Move backup credentials out of the domain (separate admin tier or vault), enforce MFA on backup consoles (Veeam, Commvault, etc.), maintain at least one immutable/offline copy (WORM storage or air-gapped), and test restores quarterly — including your EHR-adjacent databases. Ransomware groups target backups first precisely because healthcare organizations' willingness to pay hinges on recovery viability.
- Deploy the detections above. Shadow copy deletion and backup service tampering are near-universal pre-encryption behaviors with low false-positive rates. Route alerts on these to a pager, not a queue.
- Enforce MFA on all remote access. VPN, RDP gateways, and third-party vendor access are the dominant initial-access vectors in healthcare intrusions. Legacy VPN concentrators without MFA are the single most common entry point we see in IR engagements.
- Segment clinical from corporate. Medical device VLANs and EHR infrastructure should not be reachable from general user workstations. Even basic segmentation dramatically limits blast radius when — not if — an endpoint is compromised.
- Harden email and disable Office macro/child-process abuse. The ASR rule in the script above blocks one of the most reliable initial-access techniques at zero licensing cost.
- Pre-stage your IR plan for a healthcare-specific scenario. Define downtime procedures, clinical communication trees, and the HIPAA breach-notification decision framework before an incident. A ransomware event with PHI exfiltration triggers OCR reporting obligations; organizations that have not rehearsed the regulatory track consistently blow the 60-day notification clock while still fighting the fire.
- Extend visibility to business associates. Your risk surface includes every vendor with PHI access or network connectivity. Review BA agreements for incident-notification SLAs and require evidence of MFA and EDR coverage.
The statistic driving this post — 77% — means ransomware defense is not a project for healthcare security programs; it is the program. The organizations that survive these events are not the ones that never get breached; they are the ones that detect the pre-encryption behaviors, isolate fast, and restore from backups the attackers could not reach.
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.