Threat Actor Profile — THEGENTLEMEN
Aliases: The Gentlemen Club, GentlemenCaller
Operational Model: THEGENTLEMEN operate as an aggressive Ransomware-as-a-Service (RaaS) entity with a highly volatile affiliate network. They distinguish themselves through rapid recruitment of affiliates skilled in perimeter exploitation rather than just social engineering.
Ransom Demands: Demands are scalable, typically ranging from $2M USD for mid-market manufacturing firms to over $10M USD for critical energy or public sector entities. They strictly enforce a 72-hour countdown before data leakage.
Initial Access Vectors: Recent intelligence confirms a heavy reliance on exploiting edge vulnerabilities. While they retain capabilities for phishing and RDP brute-forcing, the current campaign is dominated by exploits targeting VPNs and firewall management interfaces (specifically Check Point and Cisco).
Double Extortion: Standard playbook includes exfiltration of sensitive CAD/ERP data prior to encryption. Victims refusing to pay see their data posted on their TOR site immediately.
Average Dwell Time: 3–5 days. The group leverages automated tools to move laterally quickly once perimeter access is established.
Current Campaign Analysis
Sectors Targeted: The latest postings (2026-06-15) indicate a distinct pivot toward Manufacturing (30% of recent victims) and Energy. Significant activity is also noted in Agriculture (Fecovita, Mackay Sugar) and Technology. The targeting of National Museum (DK) suggests a willingness to target public sector institutions with lower cyber maturity.
Geographic Concentration:
- Primary: United States (4 victims)
- Secondary: Germany, France, Italy (Europe)
- Tertiary: Argentina, Singapore, Australia, Denmark, Poland, Canada
Victim Profile: Targets are predominantly mid-to-large enterprises with revenue between $50M and $500M USD. These organizations typically have complex IT/OT convergeance but lack dedicated 24/7 SOC monitoring.
Posting Frequency: The group posted 15 victims in a single 24-hour period, indicating a highly automated encryption capability or a coordinated "mass exploit" event.
CVE Connection: There is a high-confidence correlation between the recent surge and the exploitation of CVE-2026-50751 (Check Point Security Gateway). Victims like Maine Oxy (Energy) and Buechel Stone (Manufacturing) rely heavily on VPNs for remote access, aligning perfectly with this initial access vector. Additionally, CVE-2024-1708 (ConnectWise ScreenConnect) is likely used for lateral movement and persistence in Tech and Business Services sectors (e.g., Times Software, Linnecken Partner).
Detection Engineering
Sigma Rules
detection:
selection_cve_2026_50751:
product: checkpoint
category: vpn
action|startswith: ike
result: 'accept'
filter:
user|re: '^(null|anonymous|-)$'
condition: selection_cve_2026_50751
level: critical
title: Potential Check Point CVE-2026-50751 Exploitation
date: 2026/06/16
references:
- https://cisa.gov/known-exploited-vulnerabilities-catalog
---
detection:
selection_screenconnect_path:
product: windows
service: screenconnect
filter:
uri|contains: '/.handler?'
condition: selection_screenconnect_path
level: high
title: ConnectWise ScreenConnect Path Traversal Exploitation Attempt
date: 2026/06/16
---
detection:
selection_vssadmin:
Product: Windows
EventID: 1
Image|endswith: '\vssadmin.exe'
CommandLine|contains: 'delete shadows'
condition: selection_vssadmin
level: critical
title: Ransomware Shadow Copy Deletion via Vssadmin
date: 2026/06/16
KQL (Microsoft Sentinel)
// Hunt for lateral movement and credential dumping indicative of THEGENTLEMEN
let TimeRange = 1h;
DeviceProcessEvents
| where Timestamp > ago(TimeRange)
| where ProcessVersionInfoCompanyName in ('Microsoft Corporation', 'Sysinternals')
or (ProcessName has "powershell.exe" and CommandLine has "EncryptedCommand")
| where InitiatingProcessFileName in ('cmd.exe', 'powershell.exe', 'winword.exe', 'excel.exe')
| project Timestamp, DeviceName, AccountName, FileName, ProcessCommandLine, InitiatingProcessFileName
| summarize count() by DeviceName, FileName
| where count_ > 5 // High frequency execution on single host
PowerShell Response Script
<#
.SYNOPSIS
Rapid Response Hardening for THEGENTLEMEN Campaign
.DESCRIPTION
Checks for recent scheduled tasks (persistence) and VSS deletion attempts.
#>
Write-Host "[+] Checking for Scheduled Tasks created in the last 7 days..."
Get-ScheduledTask | Where-Object {
$_.Date -gt (Get-Date).AddDays(-7) -and $_.Author -notmatch "Microsoft|Administrator"
} | Select-Object TaskName, Author, Date, Actions | Format-Table -AutoSize
Write-Host "[+] Checking Event Log 41 (VSS Admin Delete)..."
$Events = Get-WinEvent -FilterHashtable @{LogName='Security'; ID=4688; StartTime=(Get-Date).AddHours(-24)} -ErrorAction SilentlyContinue
if ($Events) {
$Suspicious = $Events | Where-Object { $_.Message -match "vssadmin.exe" -and $_.Message -match "delete" }
if ($Suspicious) { Write-Host "[!] CRITICAL: VSS Deletion activity detected!" -ForegroundColor Red }
else { Write-Host "[-] No VSS deletion events found." }
}
Incident Response Priorities
T-minus Detection Checklist:
- VPN Logs: Immediate review of Check Point Security Gateway logs for anomalous IKEv1 connections or successful auths without MFA prompts.
- Remote Access: Audit ConnectWise ScreenConnect logs for path traversal attempts (CVE-2024-1708).
- Process Anomalies: Hunt for
vssadmin.exe,wbadmin.exe, orbcdedit.exe executionoriginating from non-admin accounts.
Critical Assets for Exfiltration:
- Intellectual Property (CAD files, formulas).
- Employee PII/HR databases (for secondary extortion).
- Financial systems (ERP/CRM).
Containment Actions:
- Disconnect: Isolate infected subnets immediately; do not reboot hosts before memory acquisition if possible.
- Block: Block outbound traffic to known THEGENTLEMEN C2 infrastructure and Tor exit nodes at the perimeter firewall.
- Credential Reset: Force reset for all privileged accounts and any service accounts associated with VPN access.
Hardening Recommendations
Immediate (24h):
- Patch Edge Devices: Apply the hotfix for CVE-2026-50751 on all Check Point Security Gateways immediately.
- Patch Cisco FMC: Address CVE-2026-20131 on Cisco Secure Firewall Management Centers.
- Disable ScreenConnect: If not patched for CVE-2024-1708, disable the web interface immediately until patched.
Short-term (2 weeks):
- Network Segmentation: Enforce strict segmentation between OT (Operational Technology) and IT networks to prevent lateral movement from VPN entry points.
- MFA Enforcement: Implement hardware token or FIDO2 based MFA for all VPN and Remote Desktop access.
- EDR Rollout: Ensure Endpoint Detection and Response coverage is 100% on all critical servers.
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.