Back to Intelligence

THEGENTLEMEN Ransomware: Global Surge Targeting Gov, Tech & Manufacturing — Intel & Detection

SA
Security Arsenal Team
July 30, 2026
6 min read

Excerpt: THEGENTLEMEN posted 10 new victims targeting Gov, Tech, and Manufacturing. Urgent patching for Check Point and Cisco CVEs required.

Threat Actor Profile — THEGENTLEMEN

THEGENTLEMEN operates as a sophisticated RaaS (Ransomware-as-a-Service) entity, distinguished by their "corporate" branding and aggressive double-extortion tactics. The group functions on an affiliate model, leveraging skilled sub-teams for initial access while maintaining a centralized negotiation platform. Typical ransom demands range from $500,000 to $5 million, calibrated heavily against the victim's annual revenue and the sensitivity of exfiltrated data.

Their playbook favors external remote services (VPN exploitation) and unpatched perimeter appliances over phishing. Once inside, dwell time is remarkably short—often less than 72 hours from initial exploit to encryption. They are known to utilize Cobalt Strike beacons for lateral movement and custom exfiltration tools to siphon data to cloud storage prior to detonation.

Current Campaign Analysis

Sectors Targeted: This wave indicates a highly aggressive targeting of Government & Defense (Garfield County Sheriff, Malaysian Nuclear Agency) and Manufacturing (Buck Knives, Upanal CNC), with a secondary focus on Technology (Promatrix, Indus Protech).

Geographic Concentration: While the group maintains global reach, this specific campaign shows intense activity in the US, India, and Southeast Asia (Malaysia), alongside a singular UK hospitality target. This distribution suggests a distributed affiliate network or a targeted sweep against unpatched Check Point and Cisco infrastructure in these regions.

Victim Profile: The targets range from mid-market manufacturing entities ($50M-$200M revenue) to high-value critical infrastructure (Nuclear Agency). The inclusion of Buck Knives (US) and Angel Hotel (GB) alongside a nuclear agency implies a "spray and pray" exploit approach on vulnerable perimeter devices rather than highly selective, espionage-driven targeting.

Observed Posting Frequency: The group posted 10 victims within a 48-hour window (July 28-29), suggesting a bulk upload or an automated leak site integration designed to maximize pressure on multiple victims simultaneously.

CVE Correlation: The activity strongly correlates with the exploitation of CVE-2026-50751 (Check Point Security Gateway) and CVE-2026-20131 (Cisco Secure Firewall Management Center). The victims, particularly in the Government and Tech sectors, likely rely on these perimeter devices, providing THEGENTLEMEN affiliates with a direct bridge into internal networks via the very systems meant to protect them.

Detection Engineering

SIGMA Rules

YAML
---
title: Potential Check Point Gateway IKEv1 Auth Bypass (CVE-2026-50751)
id: 82c9a3b1-1f4e-4c2b-9a8e-1c3d4e5f6a7b
status: experimental
description: Detects potential exploitation of CVE-2026-50751 involving improper authentication in IKEv1 key exchange on Check Point Security Gateways.
author: Security Arsenal
date: 2026/07/30
references:
    - https://cisa.gov/known-exploited-vulnerabilities-catalog
logsource:
    product: firewall
    service: checkpoint
detection:
    selection:
        product|contains: 'VPN'
        action|contains: 'key_exchange'
        protocol|contains: 'ikev1'
        details|contains: 'aggressive_mode'
    filter:
        src_ip:
            - '10.0.0.0/8'
            - '192.168.0.0/16'
            - '172.16.0.0/12'
    condition: selection and not filter
falsepositives:
    - Legacy VPN configurations from trusted internal ranges
level: critical
tags:
    - attack.initial_access
    - cve.2026.50751
    - thegentlemen
---
title: Suspicious VSS Shadow Copy Deletion via WMI or PowerShell
id: 9d3e4f5a-6b7c-8d9e-0f1a-2b3c4d5e6f7a
status: experimental
description: Detects commands often used by THEGENTLEMEN and similar groups to delete Volume Shadow Copies to prevent system recovery.
author: Security Arsenal
date: 2026/07/30
logsource:
    product: windows
    service: process_creation
detection:
    selection_img:
        Image|endswith:
            - '\powershell.exe'
            - '\pwsh.exe'
            - '\cmd.exe'
            - '\vssadmin.exe'
            - '\wmic.exe'
    selection_cli:
        CommandLine|contains:
            - 'delete shadows'
            - 'shadowcopy delete'
            - 'shadowstorage delete'
    condition: all of selection_*
falsepositives:
    - System administration maintenance (rare)
level: high
tags:
    - attack.impact
    - thegentlemen
---
title: Cisco FMC Deserialization Anomaly (CVE-2026-20131)
id: 1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d
status: experimental
description: Detects potential exploitation of CVE-2026-20131 on Cisco Secure Firewall Management Center via suspicious deserialization patterns or malformed API requests.
author: Security Arsenal
date: 2026/07/30
references:
    - https://cisa.gov/known-exploited-vulnerabilities-catalog
logsource:
    product: firewall
    service: cisco
detection:
    selection:
        http_method|contains: 'POST'
        uri|contains: '/api/fmc_config/v1'
        response_code|contains: '500'
    timeframe: 5m
    condition: selection | count() > 3
falsepositives:
    - Misconfigured API integration scripts
level: critical
tags:
    - attack.initial_access
    - cve.2026.20131
    - thegentlemen

KQL (Microsoft Sentinel)

KQL — Microsoft Sentinel / Defender
// Hunt for lateral movement and staging activity associated with THEGENTLEMEN
// Focuses on PsExec, WMI, and high-volume file modifications common in their campaigns
DeviceProcessEvents
| where Timestamp > ago(7d)
| where InitiatingProcessFileName in ("psexec.exe", "psexec64.exe", "wmiprvse.exe") or 
   ProcessCommandLine contains "New-Item" and ProcessCommandLine contains "-ItemType Directory" // Potential staging
| where FileName !~ "explorer.exe"
| extend HostName = DeviceName
| project Timestamp, HostName, AccountName, InitiatingProcessFileName, ProcessCommandLine, FolderPath
| order by Timestamp desc

PowerShell Response Script

PowerShell
# Rapid Response: Check for VSS Shadow Copy Manipulation and Scheduled Task Persistence
# Usage: Run as Administrator on suspect endpoints
Write-Host "Checking for recent VSS Shadow Copy deletions..." -ForegroundColor Yellow
$VssEvents = Get-WinEvent -FilterHashtable @{LogName='Application'; ProviderName='VSS'; ID=12343} -MaxEvents 10 -ErrorAction SilentlyContinue
if ($VssEvents) {
    Write-Host "WARNING: VSS Shadow Copy deletion events found!" -ForegroundColor Red
    $VssEvents | Select-Object TimeCreated, Message | Format-List
} else {
    Write-Host "No VSS deletion events found." -ForegroundColor Green
}

Write-Host "`nChecking for Scheduled Tasks created in the last 7 days..." -ForegroundColor Yellow
$Date = (Get-Date).AddDays(-7)
$SuspiciousTasks = Get-ScheduledTask | Where-Object { $_.Date -gt $Date }
if ($SuspiciousTasks) {
    Write-Host "WARNING: Recently created Scheduled Tasks detected:" -ForegroundColor Red
    $SuspiciousTasks | Select-Object TaskName, Date, Author | Format-Table
} else {
    Write-Host "No recently created tasks found." -ForegroundColor Green
}

Incident Response Priorities

  • T-minus Detection Checklist:
    • Immediately review Check Point and Cisco firewall logs for spikes in IKEv1 requests or Management Center API errors (HTTP 500 status codes) between 2026-07-20 and 2026-07-30.
    • Hunt for vssadmin.exe or wmic.exe invoking shadow copy deletions on endpoints.
  • Critical Assets for Exfil:
    • User directories with PII/PHI (Law Enforcement & Hospitality sectors).
    • Intellectual property (CAD files, source code) – prioritized given the Manufacturing/Tech victims.
    • Sensitive government databases (high priority for Sheriff/Nuclear victims).
  • Containment Actions:
    • Immediate: Disconnect perimeter VPN concentrators if unpatched for CVE-2026-50751. Isolate the Cisco FMC from the internet.
    • Secondary: Disable local admin accounts and enforce MFA on all remote access protocols (RDP, SSH).

Hardening Recommendations

  • Immediate (24h):
    • Patch CVE-2026-50751 (Check Point) and CVE-2026-20131 (Cisco FMC) immediately. These are confirmed CISA KEV vulnerabilities being actively exploited for initial access.
    • Block inbound RDP (TCP 3389) and SMB (TCP 445) from the internet at the edge firewall.
  • Short-term (2 weeks):
    • Implement Zero Trust Network Access (ZTNA) to replace traditional VPN for remote administration of firewalls and critical infrastructure.
    • Conduct an external-facing asset scan to identify any other CISA KEV vulnerabilities exposed to the internet.

Related Resources

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

darkwebransomware-gangthegentlemenransomwareinitial-accesscve-2026-50751lateral-movementdouble-extortion

Is your security operations ready?

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