Two separate ransomware and extortion groups have claimed responsibility for attacks on Interim HealthCare, a nationwide home health care franchise provider, with data breach notifications now being issued to affected individuals, according to reporting by The HIPAA Journal. Interim HealthCare operates a large national footprint providing home health, hospice, and personal care services — meaning the data at risk is exactly what regulators and criminals care most about: protected health information (PHI), including patient names, clinical records, diagnoses, insurance details, and in many cases Social Security numbers.
When two groups claim the same victim, defenders should assume one of three scenarios: a double compromise (two affiliates accessed the environment independently), a ransomware-as-a-service affiliate purchased or resold access, or a data-theft extortion actor followed a separate encryption crew into the same environment. From a defensive standpoint, the distinction matters less than the conclusion: the environment was likely accessed multiple times, persistence was maintained long enough to stage and exfiltrate data, and detection failed at multiple points along the kill chain.
Home healthcare providers are disproportionately attractive targets. They run lean IT operations, depend on third-party electronic medical record (EMR) platforms, field-deployed devices, VPN access for distributed staff, and franchise structures that fragment security ownership. For threat actors, that combination translates to high-value data with low detection probability. If your organization operates in home health, hospice, or any franchise-based care delivery model, treat this incident as a direct threat indicator, not an abstract headline.
Technical Analysis
Who Is Affected
- Interim HealthCare franchise network and corporate systems (nationwide, US)
- Patients whose PHI was stored in affected systems — breach notifications are being issued under HIPAA obligations
- Third-party business associates connected to the affected environment
- Any healthcare organization sharing similar architecture: distributed clinical staff, VPN/RDP remote access, on-prem file shares holding PHI, franchise-owned endpoints outside central IT control
No CVE is associated with this incident in the available reporting. The attack chain in healthcare ransomware incidents of this pattern almost universally follows credential-based initial access (phished or purchased VPN/RDP credentials), followed by lateral movement, discovery, data staging, exfiltration, and only then mass encryption. The encryption event is the last thing that happens — and the first thing defenders typically detect. That ordering is the core problem this post addresses.
The Attack Chain You Should Expect
Based on the standard playbook for healthcare-targeting encryption groups in 2025–2026, expect the following observable behaviors in sequence:
- Initial access — valid account usage over VPN or exposed RDP, often with no MFA or legacy MFA bypassed via push fatigue.
- Discovery —
net group "Domain Admins" /domain,nltest,AdFind.exe, or SharpHound-style enumeration to map PHI repositories and backup infrastructure. - Lateral movement — SMB/Admin$ lateral copies, PsExec-style service creation, or RDP hops between servers.
- Staging and exfiltration — PHI archives compressed with 7-Zip/WinRAR into
C:\ProgramDataorC:\Users\Public, then pushed out via Rclone, MEGA, or FTP to attacker infrastructure. - Impact — shadow copy deletion (
vssadmin delete shadows /all /quiet,wmic shadowcopy delete), recovery inhibition viabcdedit, mass service termination (net stop) targeting backup agents and databases, then encryption.
Exploitation Status
This is a confirmed active intrusion with confirmed data theft, not a theoretical vulnerability. Breach notifications are being issued, which under HIPAA's Breach Notification Rule means the covered entity has determined unsecured PHI was impermissibly accessed or acquired. Dual group claims strongly suggest exfiltration occurred — encryption alone doesn't produce two extortion listings. Defenders at peer organizations should treat the TTPs above as actively in use against the sector right now.
Detection & Response
The detections below target the pre-encryption behaviors where you still have time to stop the damage. Every one of them is tuned against common ransomware TTPs observed in healthcare intrusions; deploy them as hunt queries first, validate against your baseline, then promote to alerting.
Sigma Rules
---
title: Shadow Copy Deletion via Vssadmin Wmic or Diskshadow
id: 3f8a1c42-7b9e-4d51-a6f2-9c1e8b4d2a07
status: experimental
description: Detects deletion of Volume Shadow Copies, a near-universal precursor to ransomware encryption. Attackers delete shadows to prevent rapid recovery of PHI file shares without paying.
references:
- https://attack.mitre.org/techniques/T1490/
- https://www.hipaajournal.com/interim-healthcare-ransomware/
author: Security Arsenal
date: 2026/01/20
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_wmic:
Image|endswith:
- '\wmic.exe'
- '\WMIC.exe'
CommandLine|contains: 'shadowcopy'
selection_diskshadow:
Image|endswith: '\diskshadow.exe'
CommandLine|contains:
- 'delete shadows'
- 'delete shadows oldest'
condition: 1 of selection_*
falsepositives:
- Storage administrators performing shadow storage maintenance (rare and schedulable)
level: high
---
title: Ransomware Recovery Inhibition via Bcdedit
id: 8b2d4e91-3c6a-4f87-b1d5-5e9a2c7f4b13
status: experimental
description: Detects bcdedit being used to disable Windows recovery options and ignore boot failures, preventing rollback after encryption of healthcare servers and workstations.
references:
- https://attack.mitre.org/techniques/T1490/
- https://www.hipaajournal.com/interim-healthcare-ransomware/
author: Security Arsenal
date: 2026/01/20
tags:
- attack.impact
- attack.t1490
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith: '\bcdedit.exe'
CommandLine|contains:
- 'recoveryenabled no'
- 'recoveryenabled no'
- 'ignoreallfailures'
falsepositives:
- Very rare; some image-deployment tooling modifies boot config but not recovery flags
level: high
---
title: Data Staging Archive Creation in Public Folders
id: c41f7a28-9d3b-4e62-a8c1-2f6b9d4e8a55
status: experimental
description: Detects compression tools creating archives in directories commonly used for ransomware staging (ProgramData, Users\Public, Temp) prior to PHI exfiltration. Healthcare intrusions frequently stage patient records with 7-Zip or WinRAR before pushing to MEGA or Rclone endpoints.
references:
- https://attack.mitre.org/techniques/T1560/001/
- https://www.hipaajournal.com/interim-healthcare-ransomware/
author: Security Arsenal
date: 2026/01/20
tags:
- attack.collection
- attack.t1560.001
logsource:
category: process_creation
product: windows
detection:
selection_tool:
Image|endswith:
- '\7z.exe'
- '\7za.exe'
- '\7zg.exe'
- '\rar.exe'
- '\winrar.exe'
selection_path:
CommandLine|contains:
- 'C:\ProgramData'
- 'C:\Users\Public'
- '\AppData\Local\Temp'
- 'C:\Windows\Temp'
condition: all of selection_*
falsepositives:
- IT staff archiving logs in temp directories (tune with a service-account exclusion after hunting)
level: medium
KQL — Microsoft Sentinel / Defender Hunt
This query hunts the full pre-encryption chain in a single pass: recovery inhibition, shadow deletion, mass service stops, and staging-tool execution — pivoted by device so an analyst can see the sequencing on a single host. Run it across the last 14 days, prioritizing servers hosting EMR databases, file shares, and backup infrastructure.
let Lookback = 14d;
DeviceProcessEvents
| where TimeGenerated >= ago(Lookback)
| where
(FileName =~ "vssadmin.exe" and ProcessCommandLine has_any ("delete shadows", "resize shadowstorage"))
or (FileName =~ "wmic.exe" and ProcessCommandLine has "shadowcopy")
or (FileName =~ "bcdedit.exe" and ProcessCommandLine has_any ("recoveryenabled", "ignoreallfailures"))
or (FileName =~ "diskshadow.exe" and ProcessCommandLine has "delete shadows")
or (FileName =~ "net.exe" and ProcessCommandLine has "stop" and ProcessCommandLine has_any ("backup", "veeam", "sql", "vss", "sophos", "defender"))
or (FileName in~ ("7z.exe", "7za.exe", "rar.exe", "rclone.exe", "megacmd.exe") and ProcessCommandLine has_any ("ProgramData", "Users\\Public", "Temp"))
| extend Behavior = case(
FileName =~ "vssadmin.exe" or FileName =~ "wmic.exe" or FileName =~ "diskshadow.exe", "ShadowCopyDeletion",
FileName =~ "bcdedit.exe", "RecoveryInhibition",
FileName =~ "net.exe", "ServiceTermination",
"DataStagingOrExfil")
| summarize Behaviors = make_set(Behavior), Commands = make_set(ProcessCommandLine, 10), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated), Account = any(InitiatingProcessAccountName) by DeviceName
| extend SeverityScore = array_length(Behaviors)
| order by SeverityScore desc, FirstSeen asc
A host matching two or more behaviors within a short window should be treated as an active pre-encryption event: isolate the device immediately via Defender for Endpoint, disable the executing account, and check backup integrity before anything else.
Velociraptor VQL
Use this artifact during scoping to enumerate hosts showing impact-phase tooling or staging/exfil utilities, then stack the results across the fleet to find the quiet middle victims — franchise endpoints and branch servers that never triggered EDR alerts.
-- Hunt for ransomware pre-impact tooling and staging utilities across endpoints
SELECT Pid, Ppid, Name, Exe, CommandLine, Username, CreateTime
FROM pslist()
WHERE CommandLine =~ '(?i)(delete shadows|shadowcopy.*delete|recoveryenabled no|ignoreallfailures)'
OR Exe =~ '(?i)(7z|7za|rar|winrar|rclone|megacmd|filezilla|adfind)\\?[a-z0-9_]*\.exe$'
OR Name =~ '(?i)(adfind|rclone|megacmd)'
ORDER BY CreateTime DESC
Remediation & Verification Script
Run this PowerShell on servers holding PHI and on backup infrastructure to (1) verify shadow copies exist and are healthy, (2) confirm recovery configuration hasn't been tampered with, and (3) audit for staging artifacts and recently executed compression/exfil tools. It is read-only — it changes nothing, so it is safe for production during triage.
# Interim HealthCare-pattern ransomware triage — read-only verification script
# Run as Administrator on file servers, EMR database hosts, and backup servers
# 1. Verify Volume Shadow Copies exist and report age
Write-Host "=== SHADOW COPIES ===" -ForegroundColor Cyan
Get-CimInstance Win32_ShadowCopy | Select-Object DeviceObject, InstallDate, VolumeName | Format-Table -AutoSize
$shadowCount = (Get-CimInstance Win32_ShadowCopy | Measure-Object).Count
if ($shadowCount -eq 0) { Write-Host "WARNING: No shadow copies present — possible T1490 tampering" -ForegroundColor Red }
# 2. Verify boot recovery configuration has not been disabled
Write-Host "=== BCD RECOVERY CONFIG ===" -ForegroundColor Cyan
$bcd = bcdedit /enum | Out-String
if ($bcd -match "recoveryenabled\s+No") { Write-Host "WARNING: Recovery is DISABLED — investigate bcdedit execution" -ForegroundColor Red }
else { Write-Host "Recovery enabled: OK" -ForegroundColor Green }
# 3. Sweep common staging locations for archives created in the last 14 days
Write-Host "=== STAGING ARTIFACTS (last 14 days) ===" -ForegroundColor Cyan
$stagingPaths = @('C:\ProgramData', 'C:\Users\Public', 'C:\Windows\Temp')
foreach ($p in $stagingPaths) {
if (Test-Path $p) {
Get-ChildItem -Path $p -Recurse -Include *.zip,*.7z,*.rar,*.tar,*.gz -ErrorAction SilentlyContinue |
Where-Object { $_.CreationTime -gt (Get-Date).AddDays(-14) -and $_.Length -gt 10MB } |
Select-Object FullName, Length, CreationTime | Format-Table -AutoSize
}
}
# 4. Check for exfil/staging tooling installed in non-standard paths
Write-Host "=== STAGING/EXFIL TOOL PRESENCE ===" -ForegroundColor Cyan
$toolNames = @('rclone.exe','megacmd.exe','7za.exe','rar.exe','adfind.exe')
foreach ($t in $toolNames) {
$hits = Get-ChildItem -Path 'C:\' -Filter $t -Recurse -ErrorAction SilentlyContinue -Depth 4 |
Where-Object { $_.FullName -notmatch 'Program Files' } | Select-Object -ExpandProperty FullName
if ($hits) { Write-Host "FOUND (non-standard path): $hits" -ForegroundColor Yellow }
}
# 5. Confirm backup agent services are running (encryption crews kill these first)
Write-Host "=== BACKUP AGENT STATUS ===" -ForegroundColor Cyan
Get-Service | Where-Object { $_.DisplayName -match 'backup|veeam|veeam|commvault|rubrik|datto' } |
Select-Object Name, DisplayName, Status | Format-Table -AutoSize
Write-Host "=== TRIAGE COMPLETE — escalate any WARNING/YELLOW output to IR immediately ===" -ForegroundColor Cyan
Remediation
If You Are a Home Health / Hospice / Franchise Healthcare Provider
- Assume credential-based access is your front door. Enforce phishing-resistant MFA (FIDO2 or number-matching at minimum) on every remote access path: VPN, RDP gateways, O365/EMR portals, and third-party remote support tools. Audit and disable any VPN account without MFA within 24 hours.
- Segment franchise and field endpoints from core PHI stores. The franchise model is the structural weakness — centrally managed segmentation (VLANs, host firewalls, identity-based policy) prevents one compromised franchise workstation from reaching shared file servers and EMR databases.
- Harden backup infrastructure as if it is the primary target — because it is. Encryption crews deliberately terminate backup agents and delete shadow copies before detonation. Move backup credentials into a separate administrative tier, enable immutable/air-gapped backups, and alert on any
net stopor service termination against backup services. - Alert on the pre-encryption chain, not the encryption. Deploy the Sigma rules and KQL above. If your only ransomware detection fires when files start getting renamed, your IR team inherits a disaster instead of an incident.
- Restrict compression and exfil tools. 7-Zip, WinRAR, and Rclone have no business on most clinical endpoints. Use AppLocker or WDAC to constrain them to approved IT service accounts, and alert on execution anywhere else.
- Baseline egress. Ransomware crews exfiltrate PHI to MEGA, Rclone remotes, and attacker VPS endpoints days before encryption. Egress filtering plus detection on large outbound transfers from servers that never normally push data outbound is one of the highest-value controls in this scenario.
If You Have Been Compromised (or Suspect It)
- Isolate, don't wipe. Pull affected hosts from the network (EDR isolation or switch port shutdown) but preserve memory and disk for forensics. With two groups claiming access, scoping must assume multiple persistence mechanisms — a hasty rebuild invites re-compromise.
- Scope for dual access. Hunt for overlapping persistence: scheduled tasks, rogue local admins, webshells on any internet-facing appliance, and unused but enabled VPN accounts. Treat every franchise location as independently in scope until proven clean.
- Engage HIPAA breach counsel early. If PHI was acquired — and dual extortion claims make that likely — the clock on the HIPAA Breach Notification Rule (45 CFR §§ 164.400–414) is running. Breaches affecting 500+ individuals require notification to HHS OCR, affected individuals, and prominent media within 60 days of discovery.
- Report to CISA and the FBI. Healthcare is critical infrastructure. CISA and FBI #StopRansomware guidance applies, and federal reporting supports both your response and sector-wide defense. Do not pay without legal counsel — OFAC exposure and the practical reality that payment doesn't delete stolen PHI both argue against it.
- Check third-party EMR and billing vendors. If your PHI lives in a business associate's environment, demand written confirmation of their security posture and whether their logs show access to your tenant data during the incident window.
Standing Guidance
Review the CISA #StopRansomware Guide (cisa.gov/stopransomware) and the HHS 405(d) Health Industry Cybersecurity Practices (HICP) publication, which maps controls specifically to healthcare organization size and threat profile. Both are free, current, and written for exactly this threat pattern.
The Interim HealthCare incident is not novel — it is the standard healthcare ransomware playbook executing against a structurally fragmented target. The defenders who fare best in this environment are the ones who detect the staging and shadow-copy tampering phase, not the encryption phase. Deploy the detections above this week.
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.