CISA, the FBI, and international cybersecurity partners have published a joint advisory warning healthcare and public health (HPH) sector organizations about the Gunra ransomware-as-a-service (RaaS) operation. Gunra is an actively operating double-extortion crew: affiliates gain initial access, exfiltrate sensitive data, and then deploy the encryptor — meaning victims face both operational disruption and the threat of public leak of protected health information (PHI) on the group's data leak site. For a hospital or health system, that combination translates directly into patient-safety risk during encryption and HIPAA breach-notification exposure during exfiltration.
This advisory matters because the HPH sector is explicitly in Gunra's targeting scope, and the RaaS model means TTP quality varies by affiliate — some intrusions are sloppy and noisy, others are methodical hands-on-keyboard operations that live in the environment for days before detonation. Defenders cannot assume a single signature or IOC will catch it. Behavior-based detection on pre-encryption staging activity is where you win or lose this fight.
Technical Analysis
Who Is Affected
- Healthcare delivery organizations, hospital networks, clinics, and healthcare business associates — particularly those with exposed remote access services (RDP, VPN concentrators), unpatched internet-facing appliances, or flat internal networks.
- Both Windows endpoints/servers and virtualization infrastructure (VMware ESXi hosts) are in scope for the encryptor component. Hitting the hypervisor layer is how modern RaaS affiliates maximize blast radius in minutes.
How the Operation Works (Defender's View of the Kill Chain)
Based on the joint advisory and observed affiliate behavior, a Gunra intrusion typically follows this sequence:
- Initial access — exposed remote services, compromised credentials, or phishing. Affiliates buy access from initial access brokers, so the first observable may be an anomalous logon, not malware.
- Discovery and privilege escalation — enumeration of domain, shares, and backup infrastructure using built-in tooling (
net,nltest,adfind, BloodHound-style collection). - Defense evasion — disabling or tampering with endpoint security (attempts to stop Defender/EDR services, clearing event logs with
wevtutil). - Exfiltration — staging PHI and financial data, often to attacker-controlled cloud storage or via tools like Rclone, before encryption. This is the double-extortion leverage.
- Impact — mass deletion of Volume Shadow Copies, disabling of boot recovery options, termination of database and VM processes, then hybrid-encryption of files across endpoints, servers, and ESXi datastores, with a ransom note directing victims to a Tor negotiation portal.
Exploitation Status
This is confirmed, active, in-the-wild criminal activity — not a theoretical threat. Gunra is an operating RaaS program with named victims on its leak site, and the joint advisory was issued precisely because healthcare organizations are being hit now. No CVE is associated with this advisory; initial access is achieved through exposed services, stolen credentials, and common misconfigurations rather than a single software flaw. Defenders should treat any unusual authentication to internet-facing remote access infrastructure in the HPH sector as a potential Gunra precursor.
Why Backups Alone Won't Save You
Two reasons: first, affiliates explicitly hunt and destroy backups and shadow copies before encryption; second, even perfect restoration does nothing about exfiltrated PHI already in criminal hands. Detection before detonation is the only control that addresses both.
Detection & Response
The rules and queries below target the highest-fidelity, lowest-noise pre-encryption and impact behaviors associated with Gunra-style ransomware operations. These are tuned to catch the hands-on-keyboard phase — where you still have time to respond.
Sigma Rules
---
title: Ransomware Impact Staging - Shadow Copy Deletion and Boot Recovery Tampering
id: 3f8a2c41-7b1e-4d59-9a2c-6e1f0b8d4a71
status: experimental
description: Detects deletion of Volume Shadow Copies and disabling of Windows boot recovery, a near-universal ransomware pre-encryption behavior observed in Gunra affiliate operations.
references:
- https://attack.mitre.org/techniques/T1490/
- https://www.cisa.gov/news-events/cybersecurity-advisories
author: Security Arsenal
date: 2026/02/10
tags:
- attack.impact
- attack.t1490
logsource:
category: process_creation
product: windows
detection:
selection_vss:
Image|endswith:
- '\vssadmin.exe'
- '\wmic.exe'
- '\wbadmin.exe'
- '\diskshadow.exe'
CommandLine|contains:
- 'delete shadows'
- 'shadowcopy delete'
- 'delete catalog'
- 'delete shadows'
selection_bcd:
Image|endswith: '\bcdedit.exe'
CommandLine|contains:
- 'recoveryenabled no'
- 'bootstatuspolicy ignoreallfailures'
condition: selection_vss or selection_bcd
falsepositives:
- Backup administrators running catalog cleanup during maintenance windows
- Some backup software legitimately deletes oldest shadow copies
level: critical
---
title: Mass Encryption Behavior - Ransom Note and Encrypted File Creation Burst
id: 9c4d7e02-5a38-4f61-b83d-2e9a1c0f6b55
status: experimental
description: Detects high-volume file rename/write bursts combined with ransom note drops, consistent with Gunra encryptor execution on endpoints and file servers.
references:
- https://attack.mitre.org/techniques/T1486/
author: Security Arsenal
date: 2026/02/10
tags:
- attack.impact
- attack.t1486
logsource:
category: file_event
product: windows
detection:
selection_note:
TargetFilename|contains:
- 'README_FOR_DECRYPT'
- 'R3ADM3'
- 'HOW_TO_DECRYPT'
- 'RESTORE_FILES'
- 'DECRYPT_INSTRUCTION'
selection_ext:
TargetFilename|endswith:
- '.encrt'
- '.encrypted'
- '.locked'
condition: 1 of selection_*
falsepositives:
- Rare; legitimate software does not mass-produce decrypt instruction files
level: high
---
title: ESXi Ransomware Staging - VM Process Termination via esxcli
id: 61a8f3d9-2c47-4e08-a1b6-8d5c3e7f2094
status: experimental
description: Detects bulk termination of running virtual machines on ESXi hosts via esxcli, a standard step before hypervisor-level encryption in ransomware operations targeting virtualization infrastructure.
references:
- https://attack.mitre.org/techniques/T1486/
author: Security Arsenal
date: 2026/02/10
tags:
- attack.impact
- attack.t1486
logsource:
category: process_creation
product: linux
detection:
selection:
CommandLine|contains|all:
- 'esxcli'
- 'vm process kill'
selection_kill_type:
CommandLine|contains:
- '--type=force'
- '--type=hard'
- '-t force'
condition: selection and selection_kill_type
falsepositives:
- Scripted VM power operations during datacenter maintenance
level: critical
KQL — Microsoft Sentinel / Defender for Endpoint
// Hunt: Pre-encryption staging behaviors associated with Gunra-style ransomware affiliates
// Covers shadow copy deletion, recovery tampering, security tooling tampering, and log clearing
let stagingCmds = dynamic(["delete shadows", "shadowcopy delete", "delete catalog",
"recoveryenabled no", "bootstatuspolicy ignoreallfailures",
"wevtutil cl", "cipher /w"]);
union isfuzzy=true
(DeviceProcessEvents
| where TimeGenerated > ago(7d)
| where ProcessCommandLine has_any (stagingCmds)
| project TimeGenerated, DeviceName, AccountName, FileName, ProcessCommandLine,
InitiatingProcessFileName, InitiatingProcessAccountName, ReportId),
(SecurityEvent
| where TimeGenerated > ago(7d)
| where EventID == 4688
| where CommandLine has_any (stagingCmds)
| project TimeGenerated, Computer, Account, NewProcessName, CommandLine,
ParentProcessName)
| order by TimeGenerated desc;
// Companion hunt: anomalous outbound data volume from servers (exfiltration precursor to double extortion)
DeviceNetworkEvents
| where TimeGenerated > ago(3d)
| where DeviceType has "Server"
| where RemoteIPType == "Public"
| summarize TotalBytes = sum(BytesSent), Connections = dcount(RemoteUrl)
by DeviceName, RemoteIP, bin(TimeGenerated, 1h)
| where TotalBytes > 500000000 // >500MB/hr from a server to a single public IP
| order by TotalBytes desc;
Velociraptor VQL — Endpoint Hunt Artifact
-- Hunt for ransomware staging artifacts: suspicious process execution and shadow copy state
-- Deploy across server and critical-endpoint fleet
SELECT Pid, Name, CommandLine, Exe, Username, CreateTime
FROM pslist()
WHERE CommandLine =~ '(?i)(vssadmin.*delete|bcdedit.*recoveryenabled|wevtutil cl|cipher.*/w|esxcli.*vm process kill)'
OR Name =~ '(?i)(rclone|restic|megasync|winscp)\.exe'
-- Correlate with VSS state on the endpoint
SELECT * FROM execve(argv=['cmd', '/c', 'vssadmin list shadows'])
Hardening / Verification Script
# Gunra Ransomware Readiness Check - run on Windows servers and endpoints via GPO/SCCM/Intune
# Verifies key defensive controls are in place; outputs findings for remediation
Write-Host "=== Ransomware Readiness Assessment ===" -ForegroundColor Cyan
# 1. Verify VSS is enabled and shadow copies exist
$shadows = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
if ($shadows) { Write-Host "[OK] Shadow copies present: $($shadows.Count)" }
else { Write-Host "[FAIL] No shadow copies found - verify VSS scheduling" -ForegroundColor Red }
# 2. Verify boot recovery is NOT disabled (bcdedit tampering check)
$bcd = bcdedit /enum {default} | Out-String
if ($bcd -match 'recoveryenabled\s+No') {
Write-Host "[FAIL] Boot recovery DISABLED - possible tampering indicator" -ForegroundColor Red
} else { Write-Host "[OK] Boot recovery enabled" }
# 3. Verify Microsoft Defender tamper protection and real-time monitoring
$mp = Get-MpComputerStatus
if ($mp.RealTimeProtectionEnabled -and $mp.IsTamperProtected) {
Write-Host "[OK] Defender real-time protection + tamper protection active"
} else { Write-Host "[FAIL] Defender RTP or Tamper Protection off" -ForegroundColor Red }
# 4. Verify Controlled Folder Access (ransomware file-write blocking)
$cf = Get-MpPreference | Select-Object -ExpandProperty EnableControlledFolderAccess
if ($cf -eq 1) { Write-Host "[OK] Controlled Folder Access: Enabled" }
elseif ($cf -eq 2) { Write-Host "[WARN] Controlled Folder Access: Audit mode only" -ForegroundColor Yellow }
else { Write-Host "[FAIL] Controlled Folder Access disabled" -ForegroundColor Red }
# 5. Check for attack surface reduction (ASR) rules commonly bypassed by ransomware affiliates
$asr = (Get-MpPreference).AttackSurfaceReductionRules_Ids
if ($asr.Count -ge 5) { Write-Host "[OK] $($asr.Count) ASR rules configured" }
else { Write-Host "[WARN] Few/no ASR rules deployed - enable ransomware-relevant ASR rules" -ForegroundColor Yellow }
# 6. Verify SMBv1 disabled (legacy lateral movement path)
$smb1 = Get-WindowsOptionalFeature -Online -FeatureName SMB1Protocol -ErrorAction SilentlyContinue
if ($smb1.State -eq 'Disabled') { Write-Host "[OK] SMBv1 disabled" }
else { Write-Host "[FAIL] SMBv1 enabled - disable immediately" -ForegroundColor Red }
# 7. Audit RDP exposure
$rdp = (Get-ItemProperty 'HKLM:\System\CurrentControlSet\Control\Terminal Server').fDenyTSConnections
if ($rdp -eq 1) { Write-Host "[OK] RDP disabled" }
else { Write-Host "[WARN] RDP enabled - confirm it is NOT internet-exposed and requires MFA/VPN" -ForegroundColor Yellow }
# 8. Check for common exfiltration tooling (should not exist on clinical/business servers)
$exfilTools = @('rclone.exe','megasync.exe','restic.exe','filezilla.exe')
foreach ($t in $exfilTools) {
$found = Get-ChildItem -Path 'C:\Users','C:\ProgramData' -Filter $t -Recurse -ErrorAction SilentlyContinue -Depth 3
if ($found) { Write-Host "[ALERT] Potential exfil tool found: $($found.FullName)" -ForegroundColor Red }
}
Remediation and Mitigation
If you suspect an active Gunra intrusion, isolate affected segments immediately, preserve forensic evidence (memory and triage images before shutdown), engage your IR retainer, and report to CISA via report@cisa.gov and the FBI via IC3. HIPAA-covered entities must also evaluate breach-notification obligations — exfiltration of PHI triggers HHS/OCR reporting requirements regardless of whether you pay or restore.
For proactive hardening, prioritized by impact:
- Close the front doors. Inventory and remediate internet-exposed RDP, VPN appliances, and remote management interfaces. Enforce phishing-resistant MFA on all remote access and privileged accounts. Most RaaS affiliates walk in through remote access, not zero-days.
- Protect backups from the blast radius. Maintain immutable/offline backups (3-2-1 with at least one copy logically or physically air-gapped). Separate backup credentials from domain credentials — affiliates specifically hunt backup consoles (Veeam, Commvault) before detonation. Test restoration of clinical systems quarterly, not annually.
- Harden the hypervisor layer. Patch ESXi hosts on an accelerated cycle, enable ESXi lockdown mode, restrict management interfaces to a jump host, disable SSH when not actively needed, and enable TPM-based attestation where supported. VM encryption is how affiliates take down an entire hospital in one move.
- Deploy behavioral detections, not just signatures. Operationalize the shadow-copy deletion, bcdedit tampering, and ESXi VM-kill detections above. Alert on mass file-write bursts on file servers. Tune exfiltration monitoring on server egress.
- Enable Controlled Folder Access and ASR rules in block mode after an audit-mode pilot; these materially degrade commodity ransomware encryptors.
- Segment clinical networks. VLAN segmentation between IT, clinical/biomedical devices, and guest networks limits lateral movement. Biomedical devices often cannot run EDR — segmentation is their only real protection.
- Review the joint advisory at cisa.gov/news-events/cybersecurity-advisories and map its listed TTPs against your existing detection coverage; close the gaps within your next two sprint cycles.
The window between initial access and detonation in RaaS intrusions is often days. Organizations that detect the staging phase — shadow copy deletion, log clearing, exfil staging, backup tampering — consistently avoid the encryption event entirely. That is the fight worth staffing for.
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.