Back to Intelligence

CRPXO Ransomware: Cross-Sector Surge & Firewall Exploitation — Detection Engineering Brief

SA
Security Arsenal Team
July 27, 2026
6 min read

Identity & Operations CRPXO operates as a Ransomware-as-a-Service (RaaS) entity with a high operational tempo. Unlike opportunistic phishing groups, CRPXO demonstrates a strong preference for vulnerability-driven initial access, specifically targeting edge security infrastructure and remote management tools. Their recent dump of 20 victims in a short window suggests automated pipeline capabilities for victim discovery and exploitation.

Tactics & Objectives CRPXO employs a standard double-extortion model: encrypting victim environments while threatening to release sensitive exfiltrated data. Ransom demands typically scale with victim revenue, ranging from $500k to multi-million dollar demands for mid-market technology and healthcare firms. Dwell time is estimated to be short (3–5 days) from initial breach to detonation, often leveraging valid credentials obtained via exploited vulnerabilities to bypass detection.


Current Campaign Analysis

Sector & Geographic Focus The July 27, 2026, posting batch indicates a distinct pivot towards the Healthcare and Professional Services sectors, alongside continued targeting of Technology providers. Notable victims include American Hospice & Home Health Services, Leah Walker Orthodontics, and Schorr Law. Geographic focus remains heavily concentrated in the United States, with a single outlier in Ireland (Host & Protect), suggesting either a supply chain compromise or specific regional targeting.

Attack Vector Correlation The victimology strongly correlates with the CISA KEV list associated with this group. The inclusion of IPTV Platform and RnnR Cloud suggests initial access via:

  1. CVE-2026-50751 (Check Point Security Gateway): Exploitation of IKEv1 authentication vulnerabilities to bypass VPN perimeter security.
  2. CVE-2026-20131 (Cisco Secure Firewall FMC): Deserialization flaws allowing remote code execution on management centers.
  3. CVE-2024-1708 (ConnectWise ScreenConnect): Path traversal used to gain remote code execution on IT management infrastructure, common in MSP-targeted attacks.

The high frequency of postings (15+ victims listed on a single day) implies CRPXO is utilizing automated exploit tooling to mass-deploy payloads once a foothold is established in a target network segment.


Detection Engineering

Sigma Rules

YAML
---
title: Potential Check Point VPN Gateway IKEv1 Exploitation (CVE-2026-50751)
id: a1b2c3d4-5678-90ab-cdef-1234567890ab
status: experimental
description: Detects potential exploitation attempts of CVE-2026-50751 involving unusual IKEv1 packet sizes or authentication failures on Check Point gateways.
references:
    - https://cisa.gov/known-exploited-vulnerabilities-catalog
author: Security Arsenal Research
date: 2026/07/27
tags:
    - attack.initial_access
    - cve.2026.50751
    - detection.emerging-threats
logsource:
    category: firewall
product: check_point
detection:
    selection:
        product: 'VPN'
        protocol: 'IKE'
        version: 'v1'
    condition: selection | count() > 50
falsepositives:
    - Legitimate misconfigured VPN clients
level: high
---
title: ConnectWise ScreenConnect Path Traversal Exploitation (CVE-2024-1708)
id: e5f6g7h8-9012-34cd-efab-567890abcdef
status: experimental
description: Detects web request patterns associated with CVE-2024-1708 exploitation on ConnectWise ScreenConnect servers.
references:
    - https://cisa.gov/known-exploited-vulnerabilities-catalog
author: Security Arsenal Research
date: 2026/07/27
tags:
    - attack.initial_access
    - cve.2024.1708
    - attack.web_shells
logsource:
    category: webserver
product: connectwise_screenconnect
detection:
    selection_uri:
        cs-uri-query|contains:
            - '..%2f'
            - '..\\'
    selection_ext:
        cs-uri-query|contains:
            - '.aspx'
            - '.ashx'
    condition: all of selection_*
falsepositives:
    - Scanning activity
level: critical
---
title: CRPXO Suspicious Data Staging via Rclone
definition:
    - 'Rclone is a command-line program to sync files and directories to cloud storage, often abused by ransomware actors for exfiltration.'
    - 'Detection: Process execution of rclone.exe with specific flags indicating rapid file transfer to non-standard cloud endpoints.'
status: experimental
date: 2026/07/27
author: Security Arsenal Research
logsource:
    category: process_creation
    product: windows
detection:
    selection_img:
        - Image|endswith: '\rclone.exe'
        - OriginalFileName: 'rclone.exe'
    selection_cli:
        CommandLine|contains:
            - 'copy'
            - 'sync'
            - 'mega'
            - 'pcloud'
    condition: all of selection_*
falsepositives:
    - Legitimate admin backups
level: high

KQL (Microsoft Sentinel)

KQL — Microsoft Sentinel / Defender
// Hunt for lateral movement and staging indicators associated with CRPXO
// Focus on PSExec, WMI, and abnormal mass file modifications
let Timeframe = 1d;
DeviceProcessEvents
| where Timestamp >= ago(Timeframe)
| where InitiatingProcessFileName in ("psexec.exe", "psexec64.exe", "wmic.exe", "powershell.exe")
| where ProcessCommandLine has any(@("-accepteula", "process call create", "Invoke-Expression", "DownloadString", "IEX"))
| extend HostName = DeviceName
| project Timestamp, HostName, AccountName, InitiatingProcessFileName, ProcessCommandLine, FolderPath
| join kind=inner (
    DeviceFileEvents
    | where Timestamp >= ago(Timeframe)
    | where ActionType == "FileCreated"
    | summarize count() by DeviceName, bin(Timestamp, 5m)
    | where count_ > 50 // High volume of file creation in 5 mins
    | project DeviceName, StagingTime = Timestamp
) on $left.DeviceName == $right.DeviceName
| where Timestamp between (StagingTime - 5m .. StagingTime + 5m)

PowerShell Response Script

PowerShell
<#
.SYNOPSIS
    Rapid Response Hardening Script for CRPXO Indicators
.DESCRIPTION
    Checks for recent scheduled task creation (persistence),
    abnormal VSS shadow copy deletions, and enumerates exposed RDP sessions.
#>

Write-Host "[+] Starting CRPXO Rapid Response Check..." -ForegroundColor Cyan

# 1. Check for Scheduled Tasks created in last 48 hours (Persistence)
Write-Host "[*] Checking for suspicious scheduled tasks created in last 48h..." -ForegroundColor Yellow
$DateCutoff = (Get-Date).AddDays(-2)
Get-ScheduledTask | Where-Object { $_.Date -gt $DateCutoff } | ForEach-Object {
    $Task = $_
    $Action = $Task.Actions.Execute
    $Author = $Task.Author
    Write-Host "[!] Suspicious Task Found: $($Task.TaskName) | Author: $Author | Action: $Action" -ForegroundColor Red
}

# 2. Check for VSSAdmin deletions (Pre-encryption activity)
Write-Host "[*] Checking Event Logs for VSSAdmin deletion events..." -ForegroundColor Yellow
$VSSEvents = Get-WinEvent -FilterHashtable @{LogName='Application'; ProviderName='VSS'; ID=12345} -ErrorAction SilentlyContinue
if ($VSSEvents) {
    Write-Host "[!] VSS Deletion Events Detected:" -ForegroundColor Red
    $VSSEvents | Select-Object TimeCreated, Message | Format-List
}

# 3. Enumerate RDP Sessions (Lateral Movement)
Write-Host "[*] Enumerating active RDP sessions..." -ForegroundColor Yellow
query user

Write-Host "[+] Check Complete." -ForegroundColor Cyan


---

Incident Response Priorities

T-Minus Detection Checklist

  • Perimeter Logs: Immediately query Check Point and Cisco FMC logs for spikes in IKEv1 failures or deserialization anomalies related to CVE-2026-50751 and CVE-2026-20131.
  • RMM Audit: Audit ConnectWise ScreenConnect logs for GET requests containing path traversal sequences (%2f, %5c) originating from untrusted IPs.
  • Network Traffic: Hunt for outbound connections to known cloud storage IPs (Mega, pCloud) using non-standard user-agents (rclone) during non-business hours.

Critical Assets at Risk CRPXO historically prioritizes exfiltration of:

  • PHI/PII: Patient records (Healthcare victims) and client financial data (Law/Insurance).
  • Intellectual Property: Source code and proprietary databases from Technology sector victims.
  • Credential Stores: Exported browser cookies and RDP .rdp files stored on IT management jump hosts.

Containment Actions

  1. Disconnect: Immediately disconnect management interfaces (ScreenConnect, RMM) from the internet if not fully patched; enforce VPN access only.
  2. Isolate: Segment identified victim subnets; disable inter-VLAN routing to prevent spread to the Domain Controller.
  3. Revoke: Force-reset all local administrator and service account credentials, especially those used on exposed VPN gateways.

Hardening Recommendations

Immediate (24 Hours)

  • Patch Edge Devices: Apply patches for CVE-2026-50751 (Check Point) and CVE-2026-20131 (Cisco FMC) immediately. Disable IKEv1 on VPN gateways if patching is delayed.
  • Restrict RMM: Place ConnectWise ScreenConnect behind a Zero Trust Access solution or strict allow-list firewall rules; block internet-facing access to the web interface.
  • MFA Enforcement: Ensure phishing-resistant MFA (FIDO2) is enforced on all VPN and remote management portals.

Short-Term (2 Weeks)

  • Network Segmentation: Implement a "Secure Admin Workstation" architecture; separate IT management tools from user networks.
  • EDR Coverage: Audit EDR deployment on all servers, particularly legacy systems in the Healthcare and Professional Services sectors that may be running outdated OS versions.

Related Resources

Security Arsenal Incident Response Managed SOC & MDR Services AlertMonitor Threat Detection From The Dark Side Intel Hub

darkwebransomware-gangcrpxoransomwarehealthcaretechnologycve-2026-50751initial-access

Is your security operations ready?

Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.