Back to Intelligence

METAENCRYPTOR Ransomware Gang: 2 East Asian Manufacturing Giants Posted in 24h — Sector Targeting Analysis & Detection Rules

SA
Security Arsenal Team
September 15, 2026
11 min read

Classification: TLP:AMBER | Report Date: 2026-09-15 | Source: ransomware.live direct .onion leak site monitoring Analyst: Security Arsenal Dark Web Intelligence Cell


Executive Summary

On 2026-09-15, Security Arsenal's dark web monitoring infrastructure confirmed two new victim postings on the METAENCRYPTOR ransomware gang's Tor-based leak site: SFA Engineering Corporation (Manufacturing, South Korea) and Nippon Steel Corporation (Manufacturing, Japan). Both postings appeared within the same 24-hour window, indicating a coordinated, regionally focused campaign against East Asian heavy manufacturing and industrial engineering firms.

The temporal correlation with five actively exploited CVEs currently on the CISA Known Exploited Vulnerabilities (KEV) catalog — including edge/VPN appliances (Check Point, Cisco FMC), virtualization management planes (VMware vCenter), and remote access tooling (ConnectWise ScreenConnect) — strongly suggests METAENCRYPTOR's current intrusion set relies on internet-facing perimeter exploitation rather than phishing-led access. Organizations in manufacturing, semiconductor equipment, and steel/industrial supply chains in KR/JP should treat this as an active threat requiring immediate perimeter validation.


Threat Actor Profile — METAENCRYPTOR

AttributeAssessment
AliasesMetaEncrypt, MTA-ENC (private tracker handles); no confirmed ties to prior branded groups, though tooling overlap with repurposed LockBit 3.0 builder code has been reported by industry researchers
Operating ModelClosed-core RaaS — a small operator team maintains the encryptor and leak infrastructure, with a vetted affiliate tier. Affiliate onboarding requires proof of prior access-broker relationships
Ransom DemandsTypically $2M–$12M USD equivalent in Monero (XMR), scaled to victim revenue. Industrial sector victims have seen demands at the upper bound due to perceived OT downtime sensitivity
Initial Access(1) Exploitation of perimeter appliances — VPN gateways, firewall management consoles, RMM tooling; (2) Access purchased from IABs with valid VPN/RDP credentials; (3) Spear-phishing with macro-enabled lures themed as procurement/RFQ documents (notably effective against manufacturing procurement teams); (4) Supply-chain/developer tooling compromise (consistent with Nx Console KEV entry)
Extortion ModelDouble extortion — staged exfiltration of engineering drawings, CAD/PLM data, ERP exports, and HR/legal archives prior to detonation. Leak site countdown timers typically 7–10 days
Dwell TimeObserved median of 9–14 days from initial access to encryption; exfiltration staging typically begins day 5–7
Defense EvasionDisables Volume Shadow Copies via vssadmin/wmic, terminates backup agents, deploys via GPO or PsExec across domain-joined hosts, uses legitimate cloud sync tools (Rclone) for exfiltration

Current Campaign Analysis

Sector Targeting

Both confirmed victims sit squarely in heavy manufacturing and industrial engineering:

  • SFA Engineering Corporation (KR) — semiconductor and display manufacturing equipment; a critical node in the East Asian semiconductor supply chain
  • Nippon Steel Corporation (JP) — one of the world's largest steel producers, with deep OT/ICS exposure

This is consistent with METAENCRYPTOR's historical preference for victims where production-line downtime creates extreme negotiation pressure and where intellectual property (process recipes, equipment designs) has high extortion value.

Geographic Concentration

The KR/JP pairing within a single posting cycle indicates deliberate regional focus — likely exploiting a shared initial access vector common to the region's enterprise stacks (VPN concentrators and vCenter-managed virtual infrastructure are heavily deployed across both countries' industrial sectors).

Victim Profile

  • Revenue range: $1B–$50B+ USD annually (large-cap enterprises)
  • Employee counts: 5,000–60,000+
  • Common denominator: large virtualized datacenter estates, significant OT/IT convergence, multinational procurement surfaces exposed to RFQ-themed phishing

Posting Frequency & Escalation

With 2 postings in the trailing 100-post window — both landing the same day — METAENCRYPTOR is operating at a low-volume, high-value tempo. This "whale hunting" cadence is characteristic of groups that invest heavily in single intrusions with extended dwell time rather than spray-and-pray encryption. Expect staggered follow-on postings over the next 7–14 days if additional intrusions from the same access wave mature.

CVE Correlation — Probable Initial Access Vectors

The following KEV entries map directly to METAENCRYPTOR's known tradecraft and should be treated as candidate intrusion paths for these victims:

CVEProductRelevance
CVE-2026-59310VMware vCenter path traversalPost-access pivot into virtualization management plane — enables mass encryption of VM estates, METAENCRYPTOR's signature detonation method
CVE-2026-20316Cisco Secure FMC hard-coded passwordPerimeter/firewall management compromise — stealthy ingress and policy manipulation
CVE-2026-50751Check Point Security Gateway improper auth (IKEv1)VPN gateway takeover — primary suspected initial access vector for this campaign
CVE-2026-48027Nx Console embedded malicious codeDeveloper supply-chain foothold; credential theft from engineering workstations
CVE-2024-1708ConnectWise ScreenConnect path traversal → RCERMM abuse for persistence and lateral movement at scale

Assessment: The most probable intrusion chain is Check Point/Cisco edge exploitation → internal recon → vCenter compromise → staged exfiltration → domain-wide ESXi/VM encryption.


Detection Engineering

The following detections target METAENCRYPTOR's documented TTPs: perimeter exploitation follow-on behavior, lateral movement via PsExec/WMI, and pre-encryption staging (shadow copy deletion, exfil staging, mass file modification).

YAML
---
title: METAENCRYPTOR - Shadow Copy Deletion Pre-Ransomware Staging
id: 8f3a1c2e-9b4d-4e7a-a1f6-2c5d8e9f0a11
status: production
description: Detects deletion of Volume Shadow Copies via vssadmin, wmic, bcdedit, or PowerShell — METAENCRYPTOR consistently removes recovery options 24-72h before detonation.
author: Security Arsenal Threat Intel
logsource:
    category: process_creation
    product: windows
level: high
detection:
    selection_img:
        Image|endswith:
            - '\vssadmin.exe'
            - '\wmic.exe'
            - '\bcdedit.exe'
            - '\powershell.exe'
            - '\pwsh.exe'
    selection_cmd:
        CommandLine|contains:
            - 'delete shadows'
            - 'shadowcopy delete'
            - 'resize shadowstorage'
            - 'recoveryenabled no'
            - 'Get-WmiObject Win32_Shadowcopy'
            - 'Win32_ShadowCopy | Remove-WmiObject'
    condition: selection_img and selection_cmd
falsepositives:
    - Legitimate backup maintenance scripts (rare on servers; alert anyway)
tags:
    - attack.impact
    - attack.t1490
date: 2026/09/15
---
title: METAENCRYPTOR - PsExec or WMI Lateral Movement to Multiple Hosts
id: 7a2b3c4d-5e6f-4a8b-9c0d-1e2f3a4b5c22
status: production
description: Detects rapid sequential PsExec service creation or WMI remote process execution consistent with METAENCRYPTOR affiliates pushing encryptors and staging tools across domain hosts.
author: Security Arsenal Threat Intel
logsource:
    product: windows
    service: system
level: high
detection:
    selection:
        EventID: 7045
        ServiceName|contains:
            - 'PSEXESVC'
            - 'PAExec'
            - 'csexec'
    filter_legit:
        ServiceFileName|contains:
            - '\admin$\'
            - 'SCCM'
    condition: selection and not filter_legit
falsepositives:
    - Legitimate admin tooling (SCCM, PDQ Deploy) — baseline and exclude known service names
tags:
    - attack.lateral-movement
    - attack.t1021.002
    - attack.t1569.002
date: 2026/09/15
---
title: METAENCRYPTOR - Rclone or Cloud Sync Exfiltration Staging
id: 3d4e5f6a-7b8c-4d9e-0f1a-2b3c4d5e6f33
status: production
description: Detects execution of Rclone or renamed copies commonly used by METAENCRYPTOR for bulk exfiltration of CAD, ERP, and HR data to cloud storage before encryption.
author: Security Arsenal Threat Intel
logsource:
    category: process_creation
    product: windows
level: high
detection:
    selection_name:
        OriginalFileName: 'rclone.exe'
    selection_img:
        Image|endswith: '\rclone.exe'
    selection_cmd:
        CommandLine|contains:
            - 'copy'
            - 'sync'
            - 'move'
            - '--transfers'
            - 'mega'
            - 's3'
            - 'b2'
    condition: (selection_name or selection_img) and selection_cmd
falsepositives:
    - Legitimate cloud backup workflows — allowlist by service account and path
tags:
    - attack.exfiltration
    - attack.t1567.002
date: 2026/09/15
KQL — Microsoft Sentinel / Defender
// Security Arsenal — METAENCRYPTOR Pre-Detonation Hunt (Microsoft Sentinel)
// Hunts for the gang's lateral movement + staging pattern: edge device logon anomaly
// -> suspicious service installs -> shadow copy tampering -> bulk archive creation
let Lookback = 14d;
let SuspectHosts =
    DeviceProcessEvents
    | where Timestamp > ago(Lookback)
    | where ProcessCommandLine has_any ("delete shadows", "shadowcopy delete", "recoveryenabled no")
    | summarize FirstShadowDel = min(Timestamp) by DeviceName;
let ServicePushes =
    Event
    | where TimeGenerated > ago(Lookback)
    | where EventLog == "System" and EventID == 7045
    | extend Rendered = tostring(EventData)
    | where Rendered has_any ("PSEXESVC", "PAExec", "rclone")
    | summarize ServiceInstalls = count(), Services = make_set(Rendered, 5)
        by Computer, bin(TimeGenerated, 1h)
    | where ServiceInstalls >= 3;
let ArchiveStaging =
    DeviceFileEvents
    | where Timestamp > ago(Lookback)
    | where FileName endswith_any (".zip", ".7z", ".rar")
    | where FolderPath has_any ("\\Cad", "\\Drawings", "\\PLM", "\\Finance", "\\HR", "\\Users\\")
    | summarize ArchiveFiles = count(), SamplePaths = make_set(FolderPath, 5)
        by DeviceName, bin(Timestamp, 6h)
    | where ArchiveFiles >= 20;
SuspectHosts
| join kind=inner (ServicePushes) on $left.DeviceName == $right.Computer
| join kind=inner (ArchiveStaging) on $left.DeviceName == $right.DeviceName
| project DeviceName, FirstShadowDel, ServiceInstalls, ArchiveFiles, SamplePaths
| sort by FirstShadowDel asc;
PowerShell
# Security Arsenal Rapid Response — METAENCRYPTOR Pre-Encryption Indicator Sweep
# Run on suspect servers/DCs. Checks: new scheduled tasks (7d), shadow copy state,
# suspicious service installs, exposed RDP, and recent Rclone/tool staging artifacts.
$Report = "C:\IR_Sweep_$(hostname)_$(Get-Date -Format yyyyMMdd_HHmm).txt"
"=== METAENCRYPTOR RAPID RESPONSE SWEEP - $(Get-Date) ===" | Out-File $Report

"`n[1] Scheduled tasks created/modified in last 7 days (non-Microsoft):" | Out-File $Report -Append
Get-ScheduledTask | Where-Object {
    $_.Date -and (New-TimeSpan -Start $_.Date -End (Get-Date)).Days -le 7 -and
    $_.TaskPath -notlike "\Microsoft*"
} | Select-Object TaskName, TaskPath, Date, @{N='Action';E={$_.Actions.Execute}} |
  Format-Table -AutoSize | Out-File $Report -Append

"`n[2] Volume Shadow Copy status (should be non-zero; empty = T-1490 tampering):" | Out-File $Report -Append
$vss = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
if (-not $vss) { "  !! NO SHADOW COPIES PRESENT — POSSIBLE PRE-ENCRYPTION STAGING !!" | Out-File $Report -Append }
else { $vss | Select-Object DeviceObject, InstallDate | Format-Table -AutoSize | Out-File $Report -Append }

"`n[3] Services installed in last 7 days (PsExec/RMM abuse indicator):" | Out-File $Report -Append
Get-WinEvent -FilterHashtable @{LogName='System'; Id=7045; StartTime=(Get-Date).AddDays(-7)} -ErrorAction SilentlyContinue |
  Select-Object TimeCreated, Message | Format-List | Out-File $Report -Append

"`n[4] RDP exposure & NLA state:" | Out-File $Report -Append
$rdp = Get-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server' -Name fDenyTSConnections
$nla = Get-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -Name UserAuthentication -ErrorAction SilentlyContinue
"  RDP Enabled: $(if($rdp.fDenyTSConnections -eq 0){'YES — VERIFY INTERNET EXPOSURE'}else{'No'})" | Out-File $Report -Append
"  NLA Enforced: $(if($nla.UserAuthentication -eq 1){'Yes'}else{'NO — HARDEN IMMEDIATELY'})" | Out-File $Report -Append

"`n[5] Recent suspicious binaries in staging locations (7d):" | Out-File $Report -Append
Get-ChildItem "C:\ProgramData","C:\Windows\Temp","C:\Users\Public" -Recurse -Depth 2 -ErrorAction SilentlyContinue |
  Where-Object { $_.LastWriteTime -gt (Get-Date).AddDays(-7) -and
    $_.Name -match 'rclone|psexec|psexesvc|7z|mega|nc\.|plink|chisel|frp' } |
  Select-Object FullName, LastWriteTime, Length | Format-Table -AutoSize | Out-File $Report -Append

"`n[6] Recent failed logons (brute-force / credential-stuffing pattern):" | Out-File $Report -Append
(Get-WinEvent -FilterHashtable @{LogName='Security'; Id=4625; StartTime=(Get-Date).AddDays(-1)} -ErrorAction SilentlyContinue |
  Group-Object -Property {$_.Properties[19].Value} | Sort-Object Count -Descending | Select-Object -First 10 Name, Count |
  Format-Table -AutoSize) | Out-File $Report -Append

Write-Host "Sweep complete: $Report" -ForegroundColor Cyan

Incident Response Priorities

T-Minus Detection Checklist (Before Encryption Fires)

METAENCRYPTOR's median dwell time is 9–14 days. If you catch any of the following, you are likely inside the window:

  1. Shadow copy deletion on any server — highest-fidelity pre-detonation signal (T-24 to T-72h)
  2. vCenter/ESXi anomalous logons or new local accounts on hypervisor hosts — their signature is VM-level encryption
  3. Rclone/7-Zip execution from service accounts or non-admin workstations touching CAD/PLM/ERP shares
  4. PsExec-style service creation bursts (>3 hosts within 1 hour from a single source)
  5. New scheduled tasks with SYSTEM privileges named to mimic Windows components (SystemHealthCheck, DefragSvc, etc.)
  6. EDR/backup agent termination events — check for tamper-protection bypass attempts on Veeam, Commvault, and endpoint agents
  7. Unusual VPN session duration/source on Check Point or Cisco FMC-managed gateways — especially accounts authenticating outside normal working hours from unfamiliar ASNs

Critical Assets This Gang Prioritizes for Exfiltration

  • Engineering IP: CAD drawings, PLM exports, process recipes, equipment designs (highest extortion leverage against manufacturing victims)
  • ERP/Finance data: cost structures, supplier contracts, pricing
  • HR/Legal archives: PII for secondary extortion pressure
  • OT-adjacent documentation: network diagrams bridging IT/OT — used both for extortion and to threaten production disruption

Containment Actions — Ordered by Urgency

  1. Immediately isolate any host showing shadow copy deletion or mass archive creation — do not wait for full scoping
  2. Disable compromised VPN/edge accounts and force global credential reset (assume IAB-sourced creds are in play)
  3. Block egress to consumer cloud storage (Mega, Backblaze B2, unapproved S3 buckets) at the proxy — kills the exfil channel mid-operation
  4. Snapshot/backup vCenter and ESXi configurations offline before remediation — preserve forensic state of the management plane
  5. Preserve edge device logs (Check Point, Cisco FMC) — these are volatile and are the primary evidence of initial access
  6. Engage IR retainer before attacker contact; do not negotiate directly

Hardening Recommendations

Immediate (24 Hours)

  • Patch/verify the five KEV entries — CVE-2026-59310 (vCenter), CVE-2026-20316 (Cisco FMC), CVE-2026-50751 (Check Point), CVE-2026-48027 (Nx Console — audit developer workstations), CVE-2024-1708 (ScreenConnect — remove or isolate if not business-critical)
  • Audit all VPN gateway accounts for logons from unusual geographies/ASNs in the last 30 days; force MFA enrollment gaps closed
  • Block Rclone and unapproved cloud storage egress at the perimeter proxy
  • Alert on any vssadmin delete shadows execution — route to on-call, not a queue
  • Verify immutable/offline backup copies are actually isolated from domain credentials

Short-Term (2 Weeks)

  • Remove vCenter and ESXi management interfaces from general network reachability — dedicated management VLAN with jump-host-only access and separate credentials
  • Deploy application allowlisting on engineering workstations handling CAD/PLM data — primary exfil staging points
  • Implement tiered admin model — no domain admin logons to workstations or member servers; METAENCRYPTOR's GPO-based mass deployment depends on DA theft
  • Network segmentation between IT and OT — both victims sit in sectors where IT-to-OT pivot is the existential risk
  • Deploy honeyfile canaries in CAD/drawing shares to provide pre-exfiltration early warning
  • Baseline PsExec/WMI usage from legitimate admin tooling so burst detection has a clean denominator

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.