Classification: TLP:CLEAR | Published: 2026-08-05 | Source: ransomware.live aggregation of INCRANSOM .onion leak site
Executive Summary
Security Arsenal's dark web monitoring has identified a significant escalation in INCRANSOM leak site activity: 10 victim postings in a 5-day window (2026-08-01 through 2026-08-04) spanning seven sectors and six countries. The campaign shows no sector discipline — this is opportunistic, volume-driven extortion — but the victim list includes high-sensitivity targets: a U.S. healthcare nonprofit (Clinton Health Access Initiative), an Argentine pipeline operator (Oleoductos del Valle), and a quantum computing firm (Quantinuum). Organizations running Check Point Security Gateways, Cisco Secure FMC, ConnectWise ScreenConnect, or internet-facing Microsoft Exchange should treat this as an active-threat patch-and-hunt cycle, not a routine advisory.
Threat Actor Profile — INCRANSOM
| Attribute | Assessment |
|---|---|
| Aliases | INC Ransom, INC Ransomware |
| Model | Ransomware-as-a-Service (RaaS) with recruited affiliates; operators maintain the leak site, negotiation infrastructure, and encryptor builds while affiliates handle intrusion and deployment |
| Active Since | Mid-2023; persistent through 2026 with steady affiliate churn |
| Ransom Demands | Typically $300K–$5M USD depending on victim revenue; healthcare and critical infrastructure victims see demands at the upper bound; 48–72h initial contact windows before partial data leaks |
| Initial Access | (1) Exploitation of edge devices — VPN gateways and firewalls (consistent with the KEV correlation below); (2) spear-phishing with malicious attachments/links; (3) exposed RDP and brute-forced credentials; (4) purchase of access from initial access brokers (IABs); (5) weaponized supply-chain/developer tooling |
| Extortion Model | Double extortion — exfiltration to attacker-controlled storage (frequently via Rclone/MEGA) before encryption; leak site publication in waves with countdown timers |
| Dwell Time | Observed range 3–14 days from initial access to detonation; exfiltration typically begins 24–72h before encryption |
| Common Tooling | Cobalt Strike, PsExec, WMI/WinRM for lateral movement, Rclone for exfil, vssadmin/bcdedit for shadow copy deletion, AnyDesk/ScreenConnect for persistence |
Current Campaign Analysis
Sector Targeting
| Sector | Victims (last 10 postings) | Notable Targets |
|---|---|---|
| Technology | 2 | lantisnet.com, Quantinuum (quantum computing — high IP sensitivity) |
| Manufacturing | 2 | Geleximco (VN), Trulite Glass & Aluminum (US) |
| Professional Services | 2 | LCC Group (PH), ECFA (US) |
| Healthcare | 1 | Clinton Health Access Initiative (US) — sensitive health program data |
| Energy & Utilities | 1 | Oleoductos del Valle (AR) — pipeline operator, OT-adjacent risk |
| Education | 1 | Loyalist College (CA) |
| Other | 1 | Pushidrosal (ID) |
Geographic Concentration
- United States: 5 of 10 victims — consistent with INCRANSOM's historical preference for high-revenue, cyber-insured North American targets
- Secondary spread: CA, VN, PH, ID, AR — indicating affiliate-level opportunism rather than a directed regional campaign; Southeast Asian victims (VN, PH, ID) suggest affiliates exploiting perimeter devices in regions with slower patch cycles
Victim Profile
Targets skew toward mid-market organizations (roughly $10M–$500M revenue) — large enough to pay meaningful ransoms, small enough to lack 24/7 SOC coverage. The outliers (Quantinuum, CHAI) suggest affiliates are also pursuing data-value targets where intellectual property or donor/beneficiary data raises extortion leverage independent of company size.
Posting Cadence & Escalation
- 2026-08-01: 1 posting → 2026-08-02: 1 → 2026-08-03: 2 → 2026-08-04: 6 postings in a single day
- This burst pattern is characteristic of a coordinated detonation wave: multiple affiliates completing intrusions in parallel, or a single affiliate working through backlogged access purchased from IABs. Expect a second wave within 7–14 days.
CVE Correlation — Probable Initial Access Vectors
The following CISA KEV entries (confirmed ransomware use) map directly to INCRANSOM's known access tradecraft:
| CVE | Product | Relevance to This Campaign |
|---|---|---|
| CVE-2026-50751 | Check Point Security Gateway (improper auth in IKEv1) | Edge-VPN compromise — INCRANSOM's #1 historical access vector. Patch/mitigate immediately if IKEv1 is enabled |
| CVE-2026-20131 | Cisco Secure FMC / SCC Firewall Mgmt (deserialization) | Management-plane takeover of firewall estates; enables policy tampering and blind-spot creation pre-intrusion |
| CVE-2024-1708 | ConnectWise ScreenConnect (path traversal → RCE) | Matches INCRANSOM's documented use of RMM tooling for persistence and deployment |
| CVE-2023-21529 | Microsoft Exchange (deserialization, authenticated RCE) | Exchange remains a soft target for mid-market victims; validate patch level and hunt for webshells |
| CVE-2026-48027 | Nx Console (embedded malicious code) | Supply-chain vector — developer workstations as beachheads into technology-sector victims (note: 2 of 10 victims are tech firms) |
Assessment (moderate confidence): The Check Point and Cisco FMC vulnerabilities are the most probable entry vectors for this wave given INCRANSOM's edge-device preference. The Nx Console supply-chain CVE plausibly explains the technology-sector victims.
Detection Engineering
The following detections target INCRANSOM's documented playbook: edge-device compromise → Cobalt Strike/RMM staging → WMI/PsExec lateral movement → Rclone exfiltration → shadow copy deletion → encryption.
---
title: INCRANSOM - Volume Shadow Copy Deletion Pre-Ransomware
id: 9f2c1a4e-7b3d-4e5a-9c1f-incransom001
status: experimental
description: Detects shadow copy deletion and boot recovery tampering consistent with INCRANSOM pre-encryption staging
author: Security Arsenal Threat Intel
references:
- https://securityarsenal.com/darkside
logsource:
category: process_creation
product: windows
level: high
tags:
- attack.impact
- attack.t1490
- attack.t1562.001
- actor.incransom
fields:
- Image
- CommandLine
- ParentImage
- User
falsepositives:
- Legitimate backup maintenance (rare on servers with VSS-based backup)
detection:
selection_img:
Image|endswith:
- '\vssadmin.exe'
- '\wmic.exe'
- '\bcdedit.exe'
- '\diskshadow.exe'
- '\wbadmin.exe'
selection_vssadmin:
CommandLine|contains:
- 'delete shadows'
- 'resize shadowstorage'
selection_wmic:
CommandLine|contains: 'shadowcopy delete'
selection_bcdedit:
CommandLine|contains|all:
- 'recoveryenabled'
- 'no'
selection_bcdedit_ignore:
CommandLine|contains: 'ignoreallfailures'
selection_diskshadow:
CommandLine|contains: 'delete shadows'
selection_wbadmin:
CommandLine|contains|all:
- 'delete'
- 'catalog'
condition: selection_img and 1 of selection_*
date: 2026/08/05
---
title: INCRANSOM - Rclone or MEGA Data Exfiltration Staging
id: 3a8d5b2c-1e4f-4a6b-8d2e-incransom002
status: experimental
description: Detects execution of Rclone or MEGAcmd, tools INCRANSOM affiliates use for bulk data exfiltration prior to encryption
author: Security Arsenal Threat Intel
references:
- https://securityarsenal.com/darkside
logsource:
category: process_creation
product: windows
level: high
tags:
- attack.exfiltration
- attack.t1567.002
- attack.t1048
- actor.incransom
fields:
- Image
- CommandLine
- ParentImage
- User
- Hashes
falsepositives:
- Sanctioned cloud backup workflows using rclone (baseline and allowlist by hash/path)
detection:
selection_img:
Image|endswith:
- '\rclone.exe'
- '\MEGAcmd.exe'
- '\mega-cmd.exe'
- '\winscp.exe'
- '\filezilla.exe'
selection_cmd:
CommandLine|contains:
- 'copy'
- 'sync'
- 'move'
- '--config'
- 'mega.nz'
- ':s3'
- ':drive'
filter_approved_paths:
Image|startswith:
- 'C:\Program Files\ApprovedBackup\'
condition: selection_img and selection_cmd and not filter_approved_paths
date: 2026/08/05
---
title: INCRANSOM - Lateral Movement via PsExec or Remote Service Creation
id: 7c4e9f1a-2b5d-4c7a-9e3f-incransom003
status: experimental
description: Detects PsExec-style remote execution and suspicious service creation used by INCRANSOM affiliates for domain-wide ransomware deployment
author: Security Arsenal Threat Intel
references:
- https://securityarsenal.com/darkside
logsource:
category: process_creation
product: windows
level: high
tags:
- attack.lateral-movement
- attack.t1569.002
- attack.t1021.002
- attack.t1543.003
- actor.incransom
fields:
- Image
- CommandLine
- ParentImage
- User
- Computer
falsepositives:
- Legitimate admin tooling and software deployment (SCCM, PDQ) — allowlist known deployment accounts and source hosts
detection:
selection_psexec:
Image|endswith:
- '\psexec.exe'
- '\psexesvc.exe'
- '\paexec.exe'
- '\csexec.exe'
- '\remcom.exe'
selection_suspicious_svc:
ParentImage|endswith: '\services.exe'
CommandLine|contains:
- '\\ADMIN$\'
- '\\IPC$\'
- 'cmd.exe /c'
- 'powershell.exe -enc'
- 'powershell.exe -e '
selection_random_svc_name:
Image|re: '(?i)C:\\Windows\\[A-Za-z0-9]{8,12}\.exe'
condition: selection_psexec or selection_suspicious_svc or selection_random_svc_name
date: 2026/08/05
The following Sentinel hunt query identifies the pre-ransomware staging window: mass file access (exfil collection) followed by remote execution attempts originating from a single source host — the signature pattern of an INCRANSOM affiliate preparing to detonate.
// INCRANSOM Pre-Detonation Hunt: Exfil staging + lateral movement burst (last 7 days)
let Lookback = 7d;
let SuspiciousProcs = dynamic(["rclone.exe","psexec.exe","psexesvc.exe","wmic.exe","vssadmin.exe","bcdedit.exe","nltest.exe","net.exe","csvde.exe","anydesk.exe","screenconnect.exe"]);
let StagingHosts =
DeviceProcessEvents
| where TimeGenerated > ago(Lookback)
| where FileName in~ (SuspiciousProcs)
| summarize
ToolCount = dcount(FileName),
Tools = make_set(FileName),
FirstSeen = min(TimeGenerated),
LastSeen = max(TimeGenerated)
by DeviceName, InitiatingProcessAccountName
| where ToolCount >= 3;
let LateralBurst =
DeviceNetworkEvents
| where TimeGenerated > ago(Lookback)
| where RemotePort in (445, 135, 3389, 5985, 5986)
| where DeviceName in (StagingHosts | project DeviceName)
| summarize
UniqueTargets = dcount(RemoteIP),
TargetIPs = make_set(RemoteIP, 25),
Ports = make_set(RemotePort)
by DeviceName, InitiatingProcessFileName
| where UniqueTargets >= 5;
StagingHosts
| join kind=inner LateralBurst on DeviceName
| project
DeviceName,
InitiatingProcessAccountName,
ToolCount,
Tools,
UniqueTargets,
Ports,
FirstSeen,
LastSeen,
LateralTool = InitiatingProcessFileName
| sort by UniqueTargets desc;
The following rapid-response script audits the highest-risk indicators of INCRANSOM pre-staging on a Windows host: RDP exposure, recent scheduled tasks, shadow copy tampering, and suspicious recently-created services.
# INCRANSOM Rapid Triage Script — run on suspected staging hosts or via remote sweep
# Security Arsenal Threat Intel | 2026-08-05
$Report = @()
Write-Host "=== [1] RDP Exposure Check ===" -ForegroundColor Cyan
$RDP = Get-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -Name fDenyTSConnections -ErrorAction SilentlyContinue
$RDPEnabled = ($RDP.fDenyTSConnections -eq 0)
$Report += [PSCustomObject]@{Check='RDP Enabled'; Result=$RDPEnabled; Detail='If true and internet-exposed, disable or restrict via firewall immediately'}
$RDPLogons = Get-WinEvent -FilterHashtable @{LogName='Security'; Id=4624; LogonType=10} -MaxEvents 50 -ErrorAction SilentlyContinue |
Select-Object TimeCreated, @{n='Source';e={$_.Properties[18].Value}} | Sort-Object TimeCreated -Descending | Select-Object -First 5
if ($RDPLogons) { $RDPLogons | Format-Table -AutoSize }
Write-Host "=== [2] Scheduled Tasks Created in Last 7 Days ===" -ForegroundColor Cyan
$Cutoff = (Get-Date).AddDays(-7)
Get-ScheduledTask | Where-Object { $_.Date -gt $Cutoff -and $_.TaskPath -notlike '\Microsoft*' } |
Select-Object TaskName, TaskPath, Date, @{n='Action';e={($_.Actions | Select-Object -First 1).Execute}} | Format-Table -AutoSize
Write-Host "=== [3] Volume Shadow Copy Status ===" -ForegroundColor Cyan
$Shadows = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
if (-not $Shadows) {
$Report += [PSCustomObject]@{Check='Shadow Copies'; Result='NONE FOUND'; Detail='Possible vssadmin deletion — investigate immediately'}
} else {
$Shadows | Select-Object InstallDate, DeviceObject | Format-Table -AutoSize
}
Write-Host "=== [4] Recently Created Suspicious Services ===" -ForegroundColor Cyan
Get-CimInstance Win32_Service | Where-Object {
$_.PathName -match 'ADMIN\$|Temp|AppData|cmd.exe /c|powershell.*-[eE][nN]' -or
($_.Name -match '^[A-Za-z0-9]{8,12}$' -and $_.PathName -like 'C:\Windows\*')
} | Select-Object Name, State, StartName, PathName | Format-List
Write-Host "=== [5] Known INCRANSOM Tooling Artifacts ===" -ForegroundColor Cyan
$ToolPaths = @('C:\Windows\Temp\rclone.exe','C:\ProgramData\rclone','C:\Users\Public\rclone.exe','C:\Users\Public\psexec.exe','$env:TEMP\ScreenConnect*')
foreach ($p in $ToolPaths) { if (Test-Path $p) { Write-Warning "FOUND: $p"; $Report += [PSCustomObject]@{Check='Tool Artifact'; Result='FOUND'; Detail=$p} } }
Write-Host "=== [6] Network Connections to Exfil-Suspicious Ports ===" -ForegroundColor Cyan
Get-NetTCPConnection -State Established -ErrorAction SilentlyContinue |
Where-Object { $_.RemotePort -in @(21,22,443,4444,8443) -and $_.OwningProcess -notin @(Get-Process svchost -ErrorAction SilentlyContinue).Id } |
Select-Object LocalAddress, RemoteAddress, RemotePort, @{n='Process';e={(Get-Process -Id $_.OwningProcess -ErrorAction SilentlyContinue).ProcessName}} |
Sort-Object RemoteAddress -Unique | Format-Table -AutoSize
$Report | Format-Table -AutoSize
Write-Host "Triage complete. Escalate to IR if shadow copies are missing, unexpected services exist, or rclone/psexec artifacts are found." -ForegroundColor Yellow
Incident Response Priorities
T-Minus Detection Checklist (Before Encryption Fires)
- Edge device auth anomalies — VPN logins from unusual geographies/ASNs, especially against Check Point gateways with IKEv1 enabled (CVE-2026-50751); new local accounts created on firewall management planes (CVE-2026-20131)
- RMM tool presence — AnyDesk, ScreenConnect, or Splashtop installed outside sanctioned deployment channels
- Recon bursts —
nltest /dclist,net group "Domain Admins", BloodHound/SharpHound collection artifacts (ZIP files,*_computers.json) - Staging directories — large archives in
C:\Users\Public,C:\ProgramData, or temp folders; sudden growth in outbound transfer volume to mega.nz, S3-compatible endpoints, or unfamiliar IPs on 443 - Shadow copy manipulation — the strongest pre-detonation signal; any
vssadmin delete shadowson a server outside a backup window is a P1 event - AV/EDR tampering — service stops, driver unloads, or exclusion additions in the 24h before detonation
Assets INCRANSOM Prioritizes for Exfiltration
- Finance: payroll, banking, wire transfer records, tax filings
- Legal/HR: contracts, employee PII, SSNs, background checks (maximizes regulatory pressure)
- Sector-specific crown jewels: patient/beneficiary data (healthcare victims like CHAI), R&D and IP (technology victims like Quantinuum), SCADA-adjacent documentation and network diagrams (energy victims like Oleoductos del Valle)
- Email archives of executives — mined for negotiation leverage and follow-on BEC
Containment Actions — Ordered by Urgency
- Isolate the staging host(s) identified by the KQL query — network quarantine, do NOT power off (preserve memory for forensic acquisition)
- Disable compromised accounts — any account observed executing rclone/psexec/vssadmin, plus all Domain Admin credentials if lateral movement is confirmed (assume krbtgt compromise if DCs were touched)
- Block egress to exfil destinations — mega.nz, pastebin, unapproved S3 buckets; throttle/inspect outbound 443 at the proxy
- Kill persistence — remove rogue scheduled tasks, services, and RMM agents identified by the triage script
- Snapshot and preserve edge device configs and logs (Check Point, Cisco FMC) before remediation — they are your attribution evidence
- Engage IR retainer and counsel early — INCRANSOM's 48–72h leak countdown compresses legal/comms decision windows
Hardening Recommendations
Immediate (24 Hours)
- Patch or mitigate CVE-2026-50751 (Check Point IKEv1 auth bypass) — if patching is not possible today, disable IKEv1 on gateway interfaces; this is the highest-probability entry vector for this campaign
- Patch Cisco Secure FMC (CVE-2026-20131) and verify management interfaces are not internet-reachable
- Patch ConnectWise ScreenConnect (CVE-2024-1708) or remove the tool entirely if unused; audit for unauthorized RMM agents across the estate
- Verify Exchange cumulative updates (CVE-2023-21529) and run a webshell scan on all internet-facing Exchange servers
- Audit developer endpoints for Nx Console and remove/upgrade affected versions (CVE-2026-48027); pin dependencies and verify package integrity in CI/CD
- Deploy the Sigma rules above and run the KQL hunt across the last 14 days, not just 7 — INCRANSOM dwell time reaches two weeks
- Block outbound Rclone/MEGA at the proxy and alert on any execution of
rclone.exeestate-wide - Confirm offline/immutable backups exist and that backup infrastructure is unreachable from domain credentials
Short-Term (2 Weeks)
- Eliminate direct internet exposure of RDP and firewall management planes — place behind VPN/ZTNA with phishing-resistant MFA
- Deploy application control (WDAC/AppLocker) to block unauthorized executables in
C:\Users\Public,C:\ProgramData, and temp paths — kills both Rclone staging and dropped payloads - Segment backup infrastructure and hypervisor management onto separate credentials and networks; INCRANSOM affiliates actively target Veeam/ESXi to destroy recovery options
- Implement egress filtering with TLS inspection on server VLANs — servers should not be able to reach arbitrary cloud storage endpoints
- Enable tamper protection and attack surface reduction rules, specifically: block credential theft from LSASS, block PsExec/WMI persistence creation, and block VSS deletion by non-backup processes
- Establish leak-site monitoring for your organization and key suppliers — early leak-posting detection compresses response time even when prevention fails
Security Arsenal continues to monitor INCRANSOM's .onion infrastructure. Indicators and updated detections will be published to From The Dark Side as the campaign evolves. If your organization appears on this victim list or you detect matching TTPs, contact our incident response team immediately.
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.