Back to Intelligence

OROVA Ransomware Gang: Active Campaign Targeting US/HK Manufacturing & Finance — Critical CVE Alert

SA
Security Arsenal Team
August 4, 2026
6 min read

Group Overview: OROVA is a relatively new but aggressive threat actor operating with a Ransomware-as-a-Service (RaaS) model. They have quickly established a footprint targeting mid-market organizations, leveraging a double-extortion strategy involving data exfiltration prior to encryption.

Known TTPs & Behavior:

  • Initial Access: Heavily reliant on exploiting external-facing perimeter vulnerabilities. Recent intelligence confirms the active exploitation of VPN gateways (Check Point, Cisco) and remote management tools (ConnectWise ScreenConnect).
  • Ransom Demands: Demands typically range from $500,000 to $2 million USD, heavily influenced by the victim's annual revenue and the sensitivity of exfiltrated data.
  • Dwell Time: Average dwell time is approximately 3–7 days. The group moves laterally very quickly once initial access is established, often staging data for exfiltration within 48 hours.
  • OpSec: The group maintains a standard leak site on the dark web and threatens to publish stolen data if negotiations fail.

Current Campaign Analysis

Targeting Sectors: The latest data indicates a distinct pivot towards Manufacturing and Financial Services. Of the 5 recent victims:

  • Manufacturing: Global Friction Products (US), Tat Fung Textile (HK)
  • Financial Services: JK Capital Management (HK)
  • Professional Services: Integrated Site Management (US)
  • Other: Conceptual Designs (US)

Geographic Focus: A bifurcated geographic focus is observed, with heavy activity in the United States (3 victims) and Hong Kong (2 victims).

Victim Profile: The victims suggest a focus on mid-sized enterprises (estimated revenue $20M - $300M). These organizations often have sufficient data to pay ransoms but may lack the sophisticated 24/7 SOC monitoring required to detect perimeter intrusions rapidly.

Observed Patterns & CVE Correlation: The posting frequency (3 victims on 2026-08-03) suggests a "bulk" operation or a weekend encryption burst. Critically, the list of actively exploited CVEs aligns perfectly with the victim profiles:

  • CVE-2026-50751 (Check Point) & CVE-2026-20131 (Cisco FMC): Likely used for initial network perimeter breach, particularly for the US-based manufacturing victims relying on traditional VPN infrastructure.
  • CVE-2024-1708 (ConnectWise ScreenConnect): A likely vector for the Professional Services and Financial Services victims, where managed service providers (MSPs) or remote support tools are prevalent.
  • CVE-2023-21529 (Microsoft Exchange): Used for internal persistence and credential harvesting post-initial access.

Detection Engineering

SIGMA Rules

YAML
---
title: Potential Check Point Gateway Exploitation CVE-2026-50751
id: 50e2e8c4-9a12-4b2e-8c3d-1f2e3d4a5b6c
description: Detects potential exploitation of Check Point Security Gateway improper authentication vulnerability involving IKEv1 anomalies or unexpected administrative logins.
status: experimental
author: Security Arsenal Research
date: 2026/08/04
references:
  - https://www.cisa.gov/known-exploited-vulnerabilities-catalog
tags:
  - attack.initial_access
  - cve.2026.50751
  - orova
logsource:
  category: firewall
  product: checkpoint
detection:
  selection:
    service|contains: 'ike'
    action: 'accept'
  filter_legit_traffic:
    src_ip|startswith:
      - '10.'
      - '192.168.'
  condition: selection and not filter_legit_traffic
level: high
---
title: ScreenConnect Path Traversal Exploitation Attempt CVE-2024-1708
id: f1d2e3f4-a5b6-4c7d-8e9f-0a1b2c3d4e5f
description: Detects suspicious URL patterns associated with the ConnectWise ScreenConnect path traversal vulnerability.
status: experimental
author: Security Arsenal Research
date: 2026/08/04
references:
  - https://www.cisa.gov/known-exploited-vulnerabilities-catalog
tags:
  - attack.initial_access
  - cve.2024.1708
  - orova
logsource:
  category: webserver
detection:
  selection:
    cs_uri_query|contains:
      - '..%2f'
      - '..\'
    c_uri|contains:
      - '/Guest'
      - '/Setup'
  condition: selection
level: critical
---
title: Ransomware Pre-Encryption VSS Deletion
id: a1b2c3d4-e5f6-4a5b-8c6d-7e8f9a0b1c2d
description: Detects commands used to delete Volume Shadow Copies via vssadmin or wmic, a common precursor to OROVA encryption.
status: experimental
author: Security Arsenal Research
date: 2026/08/04
tags:
  - attack.impact
  - orova
logsource:
  category: process_creation
detection:
  selection_vssadmin:
    Image|endswith: '\vssadmin.exe'
    CommandLine|contains: 'delete shadows'
  selection_wmic:
    Image|endswith: '\wmic.exe'
    CommandLine|contains: 'shadowcopy delete'
  condition: 1 of selection*
level: high

KQL (Microsoft Sentinel)

KQL — Microsoft Sentinel / Defender
// Hunt for lateral movement and data staging indicative of OROVA behavior
// Focuses on SMB usage and unusual file masses
DeviceProcessEvents
| where Timestamp > ago(7d)
| where ProcessName in~ ("powershell.exe", "cmd.exe", "wmic.exe", "psexec.exe", "psexec64.exe")
| where ProcessCommandLine has any("copy", "move", "robocopy") 
   or ProcessCommandLine has "net share"
| extend FileOrShare = extract(@'(copy|move|robocopy)\s+["']?(.*?)["']?\s+', 2, ProcessCommandLine)
| where isnotempty(FileOrShare)
| summarize Count=count(), Timestamp=arg_max(Timestamp, *) by DeviceName, AccountName, ProcessCommandLine
| where Count > 5 
| project Timestamp, DeviceName, AccountName, ProcessCommandLine, Count
| order by Count desc

PowerShell Hardening Script

PowerShell
<#
.SYNOPSIS
    Rapid Response Hardening Script for OROVA Campaign
.DESCRIPTION
    Checks for exposed RDP, recent VSS modifications, and enumerates suspicious scheduled tasks.
#>

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

# 1. Check for RDP Enabled
Write-Host "\n[1] Checking RDP Status..."
$RDP = Get-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server" -Name "fDenyTSConnections"
if ($RDP.fDenyTSConnections -eq 0) {
    Write-Host "[!] WARNING: RDP is ENABLED. Consider disabling via GPO or firewall." -ForegroundColor Red
} else {
    Write-Host "[+] RDP is disabled." -ForegroundColor Green
}

# 2. Check for recently modified Volume Shadow Copies (Last 7 days)
Write-Host "\n[2] Checking for VSS modification events (ID 8229 - Deleted)..."
$VSSDeletions = Get-WinEvent -FilterHashtable @{LogName='Application'; ProviderName='VSS'; ID=8229; StartTime=(Get-Date).AddDays(-7)} -ErrorAction SilentlyContinue
if ($VSSDeletions) {
    Write-Host ("[!] CRITICAL: Found " + $VSSDeletions.Count + " VSS deletion events in the last 7 days. Potential ransomware activity.") -ForegroundColor Red
} else {
    Write-Host "[+] No VSS deletion events found." -ForegroundColor Green
}

# 3. Enumerate Scheduled Tasks created in last 7 days
Write-Host "\n[3] Checking for Scheduled Tasks created in last 7 days..."
$CutoffDate = (Get-Date).AddDays(-7)
Get-ScheduledTask | Where-Object {$_.Date -gt $CutoffDate} | ForEach-Object {
    Write-Host "[!] Suspicious Task: $($_.TaskName) (Created: $($_.Date))" -ForegroundColor Yellow
}

Write-Host "\n[+] Scan Complete. Review warnings immediately." -ForegroundColor Cyan


---

Incident Response Priorities

  1. T-Minus Detection Checklist:

    • Immediate: Check firewall and VPN logs for indicators of exploitation against CVE-2026-50751 (Check Point) and CVE-2026-20131 (Cisco).
    • High Priority: Inspect ConnectWise ScreenConnect logs for the path traversal signature associated with CVE-2024-1708.
    • Hunt: Look for vssadmin.exe or wmic.exe processes launching arguments to delete shadow copies.
  2. Critical Assets Targeted:

    • Manufacturing: Intellectual Property (CAD drawings, formulas), ERP databases, and supply chain manifests.
    • Finance: Client PII, transaction logs, and audit trails.
  3. Containment Actions (Order of Urgency):

    1. Isolate: Disconnect VPN concentrators and management interfaces (ScreenConnect) from the internet if unpatched.
    2. Segment: Isolate critical backup servers from the general network to prevent ransomware spreading to backup repositories.
    3. Reset: Force password resets for all privileged accounts that have accessed VPN or remote management tools in the last 30 days.

Hardening Recommendations

Immediate (24h):

  • Patch: Apply patches for CVE-2026-50751, CVE-2024-1708, and CVE-2026-20131 immediately. If patching is delayed, disable vulnerable services (e.g., switch off IKEv1 or terminate ScreenConnect web sessions).
  • MFA: Enforce MFA on all VPN and remote desktop access points immediately.

Short-term (2 weeks):

  • Architecture: Move remote management tools (like ScreenConnect) behind a Zero Trust Network Access (ZTNA) gateway; do not expose them directly to the internet.
  • Audit: Conduct an external penetration test focusing on VPN gateways and firewall management interfaces.

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.