Classification: TLP:AMBER — For internal SOC/IR use Publication Date: 2026-09-07 Source: Direct monitoring of METAENCRYPTOR .onion leak site via ransomware.live, correlated against CISA Known Exploited Vulnerabilities catalog Confidence Level: High (victim claims verified against leak site posts); Moderate (attribution of initial access vectors)
Executive Summary
On 2026-09-07, the METAENCRYPTOR ransomware operation posted four victims simultaneously to its dark web leak site — the single largest one-day victim dump we have observed from this group in the current monitoring window. The victims span four distinct high-value sectors across three countries:
| Victim | Sector | Country | Published |
|---|---|---|---|
| EllisDon Corporation | Professional Services (Construction) | CA | 2026-09-07 |
| SIFCO Industries INC. | Manufacturing (Aerospace Forging) | US | 2026-09-07 |
| ST Engineering | Government & Defense | SG | 2026-09-07 |
| Hologic, Inc. | Healthcare (Medical Devices/Diagnostics) | US | 2026-09-07 |
A coordinated single-day posting of this breadth typically indicates one of two things: (1) a batched detonation campaign where multiple intrusions were staged and executed in parallel by the same affiliate cell, or (2) a negotiation-failure dump where victims who refused payment were published en masse as pressure against current in-negotiation targets. Either way, the signal is clear: METAENCRYPTOR is in an active escalation cycle, and organizations in the targeted verticals — particularly those with exposed Check Point gateways, ConnectWise ScreenConnect instances, or unpatched Exchange servers — should treat this as an imminent threat.
Threat Actor Profile — METAENCRYPTOR
Model: Assessed as a closed Ransomware-as-a-Service (RaaS) operation with a small, vetted affiliate base. The consistency of victim selection (mid-to-large enterprises with cyber insurance, rarely small business) and the polished, templated leak site postings suggest centralized operator control over negotiations and publishing, with affiliates handling intrusion and detonation.
Known Aliases: No confirmed rebrands at time of publication. Underground forum chatter references the group interchangeably as "MetaEncryptor" and "ME Locker." We continue to track potential lineage overlap with defunct operations based on leak site template reuse.
Typical Ransom Demands: Based on sector and revenue profile of observed victims, demands are assessed to range from $500K to $8M USD, with defense-adjacent and healthcare victims skewing toward the upper band. Payment deadlines of 7–14 days are standard, with staged data release as escalation.
Double Extortion: Confirmed. All four current victims were posted with data-theft claims. The group's playbook is exfiltrate-first, encrypt-second: sensitive data is staged and extracted days before detonation, and the leak post serves as the extortion lever even if the victim restores from backup.
Initial Access Methods (assessed, in order of observed frequency):
- Edge/VPN appliance exploitation — the correlation with CVE-2026-50751 (Check Point Security Gateway IKEv1 improper authentication, CISA KEV 2026-06-08) is notable. Perimeter device exploitation provides clean, credential-free initial access that bypasses email-centric defenses.
- RMM tooling abuse — CVE-2024-1708 (ConnectWise ScreenConnect path traversal → RCE) remains a ransomware-favored vector; ScreenConnect and similar RMM platforms also serve as persistence and lateral movement channels post-compromise.
- Supply chain / developer tooling compromise — CVE-2026-48027 (Nx Console embedded malicious code) indicates this ecosystem is actively leveraging poisoned build tooling to reach engineering-heavy targets — consistent with hitting a defense contractor and an aerospace manufacturer.
- Privilege escalation post-access — CVE-2025-60710 (Windows link following) and CVE-2023-21529 (Exchange deserialization) map to the mid-chain: escalating from initial foothold to domain-level control.
Average Dwell Time: Assessed at 4–11 days from initial access to encryption, consistent with current top-tier RaaS norms. The compressed dwell window is a direct consequence of faster exfiltration tooling — defenders cannot assume they have weeks to detect.
Current Campaign Analysis
Sector Targeting
The victim set is not random. Professional services/construction (EllisDon), aerospace manufacturing (SIFCO), defense engineering (ST Engineering), and medical devices (Hologic) share a common profile: project-driven organizations holding large volumes of third-party and government-adjacent sensitive data — blueprints, contracts, IP, patient-adjacent diagnostic data, and defense supply chain documentation. This data has high extortion value beyond the victim itself because it implicates the victim's customers and government counterparties.
Geographic Concentration
North America–centric (2× US, 1× CA) with a strategic Asia-Pacific reach (1× SG). The Singapore victim (ST Engineering) is significant — it signals the group is willing to target defense-adjacent entities outside the traditional US/CA/UK/AU comfort zone, and that APAC organizations should not assume geographic immunity.
Victim Profile
All four victims are large enterprises, estimated in the $300M–$7B+ revenue range. METAENCRYPTOR is not spraying SMBs; this is deliberate big-game hunting. The selection pattern suggests the group performs pre-intrusion victim vetting for insurance coverage and ability to pay.
Posting Frequency / Escalation
Four simultaneous posts after a quieter preceding period is a classic surge pattern — often preceding either a larger campaign wave or a negotiation-pressure tactic. We assess with moderate confidence that additional victims from the same intrusion batch may already be compromised but not yet posted (in-negotiation). Organizations matching the victim profile should assume they may be in the pre-posting window.
CVE Correlation
The five CISA KEV entries flagged alongside this campaign form a coherent kill chain:
- CVE-2026-50751 (Check Point IKEv1 auth bypass) → perimeter initial access
- CVE-2026-48027 (Nx Console malicious code) → supply-chain/developer foothold
- CVE-2024-1708 (ScreenConnect path traversal) → RMM-based access and persistence
- CVE-2025-60710 (Windows link following) → local privilege escalation
- CVE-2023-21529 (Exchange deserialization) → authenticated lateral pivot / mailbox data access
If your organization runs any of these products unpatched, you are inside this group's current target envelope.
Detection Engineering
The following detections target the TTPs consistent with METAENCRYPTOR's assessed playbook: edge-device exploitation follow-on activity, RMM abuse, pre-encryption staging, and shadow copy destruction.
---
title: METAENCRYPTOR - Pre-Ransomware Staging via RMM or PsExec Service Creation
id: 8f3a1c2e-7b4d-4e1a-9c5f-metaenc001
status: experimental
description: Detects service installation events consistent with PsExec-style lateral movement or RMM tooling (ScreenConnect and clones) used by METAENCRYPTOR affiliates for pre-encryption staging. Fires on suspicious service binary paths and names observed in ransomware pre-detonation phases.
author: Security Arsenal Threat Intelligence
date: 2026/09/07
references:
- https://securityarsenal.com/darkside
logsource:
product: windows
service: system
detection:
selection_eventid:
EventID: 7045
selection_suspicious_path:
ImagePath|contains:
- '\AppData\Local\Temp\'
- '\ProgramData\'
- '\Users\Public\'
- 'ADMIN$'
- 'C$\'
selection_suspicious_name:
ServiceName|contains:
- 'PSEXESVC'
- 'ScreenConnect'
- 'paexec'
- 'remcom'
condition: selection_eventid and (selection_suspicious_path or selection_suspicious_name)
falsepositives:
- Legitimate RMM deployments (tune against known-good service names in your environment)
- IT admin PsExec usage during maintenance windows
level: high
tags:
- attack.lateral_movement
- attack.t1569.002
- attack.t1021.002
- attack.t1219
---
title: METAENCRYPTOR - Volume Shadow Copy Deletion Preceding Encryption
id: 8f3a1c2e-7b4d-4e1a-9c5f-metaenc002
status: experimental
description: Detects vssadmin/wmic/powershell-based shadow copy deletion, a near-universal pre-encryption step in METAENCRYPTOR detonation. Presence of this activity on servers should trigger immediate IR escalation.
author: Security Arsenal Threat Intelligence
date: 2026/09/07
logsource:
product: windows
category: process_creation
detection:
selection_vssadmin:
Image|endswith: '\vssadmin.exe'
CommandLine|contains:
- 'delete shadows'
- 'resize shadowstorage'
selection_wmic:
Image|endswith: '\wmic.exe'
CommandLine|contains: 'shadowcopy'
selection_ps:
Image|endswith:
- '\powershell.exe'
- '\pwsh.exe'
CommandLine|contains:
- 'Get-WmiObject Win32_Shadowcopy'
- 'Remove-WmiObject'
- '.Delete()'
condition: 1 of selection_*
falsepositives:
- Backup software maintenance (verify against approved backup tooling command lines)
level: critical
tags:
- attack.impact
- attack.t1490
---
title: METAENCRYPTOR - Suspicious Check Point VPN / Edge Authentication Anomaly Followed by Internal RDP
id: 8f3a1c2e-7b4d-4e1a-9c5f-metaenc003
status: experimental
description: Detects Windows RDP logons (EventID 4624 Type 10) sourced from VPN-assigned address ranges during off-hours, consistent with post-exploitation pivoting after Check Point gateway compromise (CVE-2026-50751). Baseline your VPN pool ranges before deployment.
author: Security Arsenal Threat Intelligence
date: 2026/09/07
logsource:
product: windows
service: security
detection:
selection:
EventID: 4624
LogonType: 10
filter_business_hours:
# Tune: restrict to your timezone; placeholder matches common off-hours windows
EventData.UtcTime|contains:
- 'T00:'
- 'T01:'
- 'T02:'
- 'T03:'
- 'T04:'
- 'T05:'
condition: selection and filter_business_hours
falsepositives:
- On-call administrators; offshore teams in other timezones (baseline per-user first)
level: medium
tags:
- attack.lateral_movement
- attack.t1021.001
- attack.t1133
The KQL hunt below targets the staging phase — mass file access and archive creation patterns that precede exfiltration in METAENCRYPTOR intrusions, plus ScreenConnect-style RMM artifacts.
// METAENCRYPTOR pre-exfiltration staging hunt — Microsoft Sentinel
// Looks for: mass archive creation + RMM execution + shadow copy tampering
// within a 72h window on the same host (behavioral chain)
let lookback = 14d;
let chain_window = 72h;
let ArchiveStaging =
DeviceProcessEvents
| where TimeGenerated > ago(lookback)
| where FileName in~ ("7z.exe", "rar.exe", "winrar.exe", "7za.exe")
or ProcessCommandLine has_any ("a -t", "-mx9", "-hp", ".7z", ".rar")
| project StagingTime=TimeGenerated, DeviceName, AccountName, ProcessCommandLine;
let RMMActivity =
DeviceProcessEvents
| where TimeGenerated > ago(lookback)
| where FileName has_any ("ScreenConnect", "psexec", "paexec", "remcom", "anydesk", "teamviewer")
or FolderPath has_any ("ProgramData\\", "Users\\Public\\")
| project RMMTime=TimeGenerated, DeviceName, RMMCommand=ProcessCommandLine;
let ShadowTamper =
DeviceProcessEvents
| where TimeGenerated > ago(lookback)
| where (FileName =~ "vssadmin.exe" and ProcessCommandLine has "delete shadows")
or (FileName =~ "wmic.exe" and ProcessCommandLine has "shadowcopy")
or ProcessCommandLine has "Win32_Shadowcopy"
| project TamperTime=TimeGenerated, DeviceName, TamperCommand=ProcessCommandLine;
ArchiveStaging
| join kind=inner RMMActivity on DeviceName
| join kind=inner ShadowTamper on DeviceName
| where abs(datetime_diff('minute', StagingTime, TamperTime)) <= (chain_window / 1m * 60)
| summarize FirstSeen=min(StagingTime), LastSeen=max(TamperTime),
ArchiveCmds=make_set(ProcessCommandLine, 5),
RMM=make_set(RMMCommand, 5),
Tamper=make_set(TamperCommand, 5)
by DeviceName, AccountName
| extend RiskScore = 95
| order by FirstSeen desc;
Rapid-response PowerShell triage script — run on suspect hosts or via your EDR's live response. It checks the three fastest triage indicators: recent scheduled task persistence, shadow copy integrity, and unexpected RMM/listening services.
# METAENCRYPTOR Rapid Triage — run elevated on suspect host
# Checks: (1) scheduled tasks created in last 7 days, (2) shadow copy status,
# (3) suspicious services/RMM binaries, (4) recent RDP logons
$report = @{ Host = $env:COMPUTERNAME; Timestamp = (Get-Date -Format 'o') }
Write-Host "[*] === METAENCRYPTOR RAPID TRIAGE: $env:COMPUTERNAME ===`n" -ForegroundColor Cyan
# 1. Scheduled tasks created/modified in last 7 days (persistence)
Write-Host "[1] Scheduled tasks modified in last 7 days:" -ForegroundColor Yellow
$recentTasks = Get-ScheduledTask | Where-Object {
$_.Date -and ([datetime]$_.Date) -gt (Get-Date).AddDays(-7) -and
$_.TaskPath -notlike '\Microsoft*'
}
if ($recentTasks) {
$recentTasks | Select-Object TaskName, TaskPath, Date | Format-Table -AutoSize
$report.SuspiciousTasks = $recentTasks.TaskName
} else { Write-Host " None found." }
# 2. Volume Shadow Copy integrity (pre-encryption tampering check)
Write-Host "`n[2] Volume Shadow Copies:" -ForegroundColor Yellow
$shadows = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
if (-not $shadows) {
Write-Host " !!! NO SHADOW COPIES PRESENT — possible vssadmin deletion (T1490) !!!" -ForegroundColor Red
$report.ShadowCopiesDeleted = $true
} else {
$shadows | Select-Object DeviceObject, InstallDate | Format-Table -AutoSize
}
# 3. Suspicious services and RMM artifacts
Write-Host "`n[3] Suspicious services / RMM tooling:" -ForegroundColor Yellow
$susSvc = Get-CimInstance Win32_Service | Where-Object {
$_.PathName -match 'Temp|ProgramData|Users\\Public|PSEXESVC|ScreenConnect|paexec|AnyDesk'
}
if ($susSvc) {
$susSvc | Select-Object Name, State, PathName | Format-Table -AutoSize
$report.SuspiciousServices = $susSvc.Name
} else { Write-Host " None found." }
# 4. Recent RDP logons (last 72h) — lateral movement check
Write-Host "`n[4] RDP logons (Type 10) in last 72h:" -ForegroundColor Yellow
$rdp = Get-WinEvent -FilterHashtable @{LogName='Security'; Id=4624} -ErrorAction SilentlyContinue |
Where-Object { $_.TimeCreated -gt (Get-Date).AddHours(-72) -and $_.Message -match 'Logon Type:\s+10' }
if ($rdp) {
$rdp | Select-Object TimeCreated, @{n='Message';e={$_.Message.Substring(0,[Math]::Min(200,$_.Message.Length))}} | Format-List
} else { Write-Host " None found." }
# 5. Check Point / VPN edge exposure reminder
Write-Host "`n[5] REMINDER: Verify Check Point gateway patch state for CVE-2026-50751 (IKEv1 auth bypass)." -ForegroundColor Magenta
Write-Host " Verify ScreenConnect version against CVE-2024-1708 and Exchange against CVE-2023-21529." -ForegroundColor Magenta
$report | ConvertTo-Json | Out-File "$env:TEMP\metaencryptor_triage_$env:COMPUTERNAME.json"
Write-Host "`n[*] Triage report written to $env:TEMP\metaencryptor_triage_$env:COMPUTERNAME.json" -ForegroundColor Cyan
Incident Response Priorities
T-Minus Detection Checklist (pre-encryption indicators)
If you see two or more of the following on the same host within 72 hours, treat as an active pre-detonation intrusion and escalate immediately:
- Archive utility execution (7z/rar) targeting file shares, document repositories, or engineering/CAD directories
- Unexpected RMM process (ScreenConnect, AnyDesk) or PsExec-style service creation on servers
vssadmin delete shadowsor Win32_Shadowcopy deletion events- Off-hours RDP logons from VPN pool IPs, especially to hosts that don't normally accept RDP
- New scheduled tasks created outside of change windows
- Anomalous outbound transfer volume to cloud storage or unfamiliar IPs from endpoints (exfil indicator)
- Exchange server deserialization exploitation artifacts (CVE-2023-21529) — unusual worker process spawning
Critical Assets This Campaign Prioritizes for Exfiltration
Based on the victim profile, expect targeting of:
- Engineering/design data — CAD files, blueprints, forging/aerospace specifications (SIFCO, EllisDon, ST Engineering profile)
- Government and defense contract documentation — bid data, project plans, personnel files
- Patient-adjacent and regulatory data — clinical/diagnostic records, FDA/health-regulatory submissions (Hologic profile)
- Financial and insurance documentation — used to calibrate ransom demands
Containment Actions — Ordered by Urgency
- Isolate, don't nuke — segment affected hosts/VLANs immediately but preserve volatile memory for forensics before rebooting anything
- Kill edge access — force-reset all VPN sessions, rotate credentials for accounts that authenticated via the perimeter in the suspected window, and take unpatched Check Point gateways offline pending patch
- Disable/audit RMM tooling — inventory every remote access tool; block non-approved RMM at the egress proxy and EDR
- Protect backups — verify backup infrastructure is isolated/immutable; attackers routinely target backup catalogs in the final hours before detonation
- Credential reset at domain tier — if lateral movement is confirmed, assume krbtgt and tier-0 compromise; plan a two-pass reset
- Engage IR retainer early — with dwell times of 4–11 days, you likely have hours, not days, once staging is observed
Hardening Recommendations
Immediate (24 hours)
- Patch or mitigate the campaign kill chain: Check Point CVE-2026-50751 (apply vendor hotfix; if unpatchable immediately, restrict IKEv1 and monitor gateway auth logs), ConnectWise ScreenConnect CVE-2024-1708, Exchange CVE-2023-21529, and Windows CVE-2025-60710
- Audit developer/build tooling for Nx Console compromise indicators (CVE-2026-48027) — pin and verify package integrity, rotate any credentials present on build agents
- Deploy the Sigma and KQL detections above into your SIEM/EDR and run the triage script against any host matching the staging profile
- Block unauthorized RMM via application control policy and egress filtering
- Disable vssadmin/wmic shadow deletion for non-backup accounts via EDR tamper rules; alert on any execution
Short-Term (2 weeks)
- Segment engineering/OT-adjacent networks from corporate IT — the manufacturing and defense victims almost certainly had flat paths from IT to engineering data stores
- Enforce phishing-resistant MFA (FIDO2) on all remote access; VPN-only authentication is a solved problem for adversaries in 2026
- Implement Tier-0 isolation — dedicated PAWs for domain admins, no tier-0 logon on user endpoints
- Deploy canary files and decoy shares in engineering and document repositories; early tripwires against mass-access staging
- Establish immutable, off-network backups with tested restore runbooks — assume the attacker will find and target your primary backup tier
- Threat-hunt retainer against this group's TTPs — given the surge pattern, in-negotiation victims may not yet know they're compromised
This briefing is based on live dark web monitoring. Victim claims represent the threat actor's assertions; organizations named should be engaged through appropriate channels. Security Arsenal customers receive real-time alerting on leak site postings matching their organization, subsidiaries, and supply chain.
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.