Classification: TLP:CLEAR | Publication Date: 2026-08-21 | Source: ransomware.live aggregation of IAH6477 .onion leak site | Analyst: Security Arsenal Dark Web Intelligence Desk
Executive Summary
Between 2026-08-20 and 2026-08-21, the IAH6477 ransomware operation published three new victims to its dark web leak site, all concentrated in the United States: regencycenters (Retail & E-Commerce), acima (Financial Services), and marvin (Technology). Three postings in a single day represents an escalation tempo consistent with a batch-detonation campaign — multiple intrusions executed in parallel and published simultaneously to maximize pressure and media impact.
Organizations operating Check Point Security Gateways, ConnectWise ScreenConnect instances, or unpatched Microsoft Exchange servers should treat this briefing as an immediate action item. The CVE set correlated with this campaign window maps directly to perimeter and remote-access initial access vectors.
Threat Actor Profile — IAH6477
Aliases: None confirmed. The alphanumeric designation suggests either a rebrand of a disrupted operation or a deliberate anti-attribution naming convention — a pattern increasingly common among post-2024 crews avoiding searchable brand identity.
Operating Model: Assessed as a closed or semi-closed RaaS with a small affiliate pool. Low victim volume (3 in the last 100-posting window sampled) combined with tight sector and geographic focus indicates curated affiliate activity rather than open spray-and-pray operations.
Ransom Demands: Based on the victim profile (mid-to-large US enterprises), demands are estimated in the $1M–$10M USD range, with initial demands typically landing at 3–8% of estimated annual revenue.
Initial Access Methods (assessed, mapped to correlated KEV data):
- Edge VPN exploitation — CVE-2026-50751 (Check Point Security Gateway improper authentication in IKEv1 key exchange)
- MSP/RMM tooling abuse — CVE-2024-1708 (ConnectWise ScreenConnect path traversal to RCE)
- Supply-chain/developer tooling — CVE-2026-48027 (malicious Nx Console build)
- Post-access privilege escalation — CVE-2025-60710 (Windows link following), CVE-2023-21529 (Exchange deserialization)
Extortion Model: Double extortion — data theft prior to encryption, leak-site publication as pressure mechanism. The same-day publication of all three victims suggests the group stages leaks deliberately rather than dripping them, a negotiation-failure signature.
Dwell Time: Assessed at 5–14 days from initial access to detonation, consistent with crews using legitimate RMM tooling for persistence (harder to detect, faster hands-on-keyboard movement).
Current Campaign Analysis
Sector Targeting
| Victim | Sector | Published |
|---|---|---|
| regencycenters | Retail & E-Commerce | 2026-08-20 |
| acima | Financial Services | 2026-08-20 |
| marvin | Technology | 2026-08-20 |
The sector mix — retail real estate, lease-to-own financial services, and technology — indicates opportunistic revenue-based targeting rather than vertical specialization. All three sectors share a common trait: high availability sensitivity and regulatory breach-notification exposure, both of which increase payment probability.
Geographic Concentration
100% United States (2 confirmed US, 1 unconfirmed but US-headquartered profile). This aligns with the crew's assessed preference for high-ransom-yield jurisdictions with mature cyber-insurance markets.
Victim Profile
- Size: Mid-market to enterprise (500–5,000+ employees estimated)
- Revenue range: ~$100M–$2B+ annual revenue based on sector benchmarks
- All three organizations maintain large customer PII/financial datasets — prime exfiltration targets
Escalation Pattern
Three simultaneous postings is a coordinated pressure event, not organic drip. Expect one of two follow-on behaviors within 7–10 days: (a) full data dump publication for non-payers, or (b) removal of one or two listings (indicating payment) while remaining victim data is weaponized as a warning.
CVE Correlation
The KEV-confirmed ransomware CVEs in this window form a coherent kill chain: CVE-2026-50751 (perimeter breach via Check Point) → CVE-2025-60710 (privilege escalation) → CVE-2023-21529 (Exchange exploitation for mailbox/data access) → CVE-2024-1708 (ScreenConnect persistence, especially where MSPs are in the chain). CVE-2026-48027 (malicious Nx Console) is notable given the technology-sector victim — developer workstation compromise is a plausible entry for marvin.
Detection Engineering
---
title: IAH6477 — Check Point VPN Anomalous IKEv1 Authentication Followed by Internal RDP
id: 8f2a1c4e-iah6-4770-a001-cve202650751
status: experimental
description: Detects suspected exploitation of CVE-2026-50751 (Check Point IKEv1 improper authentication) followed by inbound RDP from VPN address space — IAH6477 assessed initial access chain.
author: Security Arsenal Dark Web Intelligence Desk
date: 2026/08/21
references:
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog
logsource:
category: network_connection
product: windows
detection:
selection_rdp:
DestinationPort: 3389
Initiated: 'true'
filter_vpn_range:
SourceIp|cidr:
- '10.0.0.0/8' # tune to your VPN client pool
condition: selection_rdp and filter_vpn_range
falsepositives:
- Legitimate VPN user RDP to jump hosts
level: high
tags:
- attack.initial_access
- attack.t1133
- attack.t1021.001
---
title: IAH6477 — ScreenConnect / RMM Tool Execution Outside Approved Baseline
id: 8f2a1c4e-iah6-4770-b002-rmm-abuse
status: experimental
description: Detects execution of ConnectWise ScreenConnect or other RMM binaries from non-standard paths, a persistence and lateral movement TTP associated with CVE-2024-1708 exploitation and IAH6477-style intrusions.
author: Security Arsenal Dark Web Intelligence Desk
date: 2026/08/21
logsource:
category: process_creation
product: windows
detection:
selection_img:
Image|endswith:
- '\ScreenConnect.ClientService.exe'
- '\ScreenConnect.WindowsClient.exe'
- '\ScreenConnect.Service.exe'
filter_approved_paths:
Image|startswith:
- 'C:\Program Files\ScreenConnect'
- 'C:\Program Files (x86)\ScreenConnect'
condition: selection_img and not filter_approved_paths
falsepositives:
- MSP custom install paths (baseline before enabling)
level: high
tags:
- attack.command_and_control
- attack.t1219
- attack.t1133
---
title: IAH6477 — Pre-Encryption Staging — Shadow Copy Deletion and Mass Archive Creation
id: 8f2a1c4e-iah6-4770-c003-pre-ransom-staging
status: experimental
description: Detects Volume Shadow Copy deletion combined with mass archive utility execution — classic pre-detonation staging observed in double-extortion ransomware campaigns including IAH6477's playbook.
author: Security Arsenal Dark Web Intelligence Desk
date: 2026/08/21
logsource:
category: process_creation
product: windows
detection:
selection_vss:
Image|endswith:
- '\vssadmin.exe'
- '\wmic.exe'
- '\bcdedit.exe'
CommandLine|contains:
- 'delete shadows'
- 'shadowcopy delete'
- 'recoveryenabled no'
selection_archive:
Image|endswith:
- '\7z.exe'
- '\rar.exe'
- '\winrar.exe'
CommandLine|contains:
- ' a '
- ' -p'
timeframe: 10m
condition: selection_vss or selection_archive
falsepositives:
- Backup administrators running maintenance scripts
- Software packaging workflows
level: critical
tags:
- attack.impact
- attack.t1490
- attack.collection
- attack.t1560.001
// IAH6477 Hunt — Pre-ransomware lateral movement & staging chain
// Looks for: remote service/tool execution -> archive staging -> shadow copy tampering
// within a 4-hour window per device. Microsoft Sentinel / Defender XDR.
let Window = 4h;
let SuspiciousProcs = dynamic(["psexec.exe","wmic.exe","screenconnect.clientservice.exe","7z.exe","rar.exe","vssadmin.exe","bcdedit.exe","rclone.exe","megacmd.exe"]);
DeviceProcessEvents
| where TimeGenerated > ago(7d)
| where FileName in~ (SuspiciousProcs)
| extend TTP = case(
FileName in~ ("psexec.exe","wmic.exe"), "LateralMovement",
FileName has "screenconnect", "RMMAbuse",
FileName in~ ("7z.exe","rar.exe"), "DataStaging",
FileName in~ ("rclone.exe","megacmd.exe"), "ExfilTool",
FileName in~ ("vssadmin.exe","bcdedit.exe"), "DefenseEvasion",
"Other")
| summarize TTPs = make_set(TTP), Commands = make_set(ProcessCommandLine, 5),
FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated)
by DeviceName, AccountName, bin(TimeGenerated, Window)
| extend TTPCount = array_length(TTPs)
| where TTPCount >= 2
| extend KillChainScore = iff(set_has_element(TTPs,"DefenseEvasion") and set_has_element(TTPs,"DataStaging"), "CRITICAL — likely pre-detonation", iff(set_has_element(TTPs,"LateralMovement"), "HIGH", "MEDIUM"))
| order by KillChainScore asc, FirstSeen desc
# IAH6477 Rapid Triage — run on suspected compromised hosts or via GPO/SCCM sweep
# Checks: exposed RDP, recent scheduled tasks, shadow copy state, suspicious RMM artifacts
Write-Host
Is your security operations ready?
Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.