Classification: TLP:CLEAR | Published: 2026-09-16 | Source: ransomware.live dark web leak site monitoring | Confidence: High (direct .onion observation)
Executive Summary
Security Arsenal's dark web collection infrastructure observed a significant escalation from the ransomware group THEGENTLEMEN: 15 new victim postings on 2026-09-14 alone, representing half of their last 100 posted victims. The burst spans 13 countries and at least 9 distinct sectors, including healthcare, manufacturing, energy & utilities, financial services, and agriculture — a victimology profile consistent with opportunistic, access-broker-fed operations rather than targeted intrusion campaigns.
Organizations operating VMware vCenter, Cisco Secure FMC, Check Point gateways, or ConnectWise ScreenConnect should treat this briefing as an immediate patch-and-hunt trigger. Five CVEs currently in the CISA Known Exploited Vulnerabilities catalog with confirmed ransomware use align with THEGENTLEMEN's observed access patterns.
1. Threat Actor Profile — THEGENTLEMEN
| Attribute | Assessment |
|---|---|
| Aliases | TheGentlemen, Gentlemen Ransomware, TG Locker |
| Model | Ransomware-as-a-Service (RaaS) with vetted affiliate tiers; core team controls the leak site, negotiation portal, and builder |
| Ransom demands | USD $250K–$4M observed; typically scaled to ~2–4% of estimated annual revenue; 72-hour initial timer, doubled after expiry |
| Extortion model | Classic double extortion — AES-256/RSA-2048 encryption plus staged exfiltration; data published in staged "teaser" dumps on their .onion site before full release |
| Initial access vectors | Exploitation of edge devices (VPN concentrators, firewalls, remote access tooling), purchased access from IABs, RDP brute force, and phishing with malicious attachments (OneNote/ISO container lures) |
| Average dwell time | 4–11 days from initial access to detonation; affiliate-dependent |
| Encryption behavior | Multi-threaded intermittent encryption; kills backup/database/AV services; deletes Volume Shadow Copies via vssadmin and WMI |
| Negotiation posture | Aggressive; known to contact victims' customers and partners directly when negotiations stall |
Analyst note: THEGENTLEMEN's victim cadence and sector diversity strongly suggest they lean heavily on initial access brokers and edge-device exploitation rather than bespoke phishing operations. Their affiliates appear to prioritize speed over stealth — dwell times are shorter than groups like BlackCat/ALPHV, which creates a narrow but detectable pre-ransomware window.
2. Current Campaign Analysis
2.1 Sector Targeting (Observed 2026-09-14 Posting Burst)
| Sector | Victims | Examples |
|---|---|---|
| Healthcare | 2 | MedSkin Solutions Dr. Suwelack AG (DE), Apteki Mareshki (BG) |
| Manufacturing | 2 | TMI Tecnicas Mecanicas Ilerdenses (ES), Dome Gold Mines |
| Technology | 3 | Somit (FI), Technical Asia (TH), Tentac (JP) |
| Retail & E-Commerce | 2 | Sarku Japan (US), Librería Santa Fe (AR) |
| Professional Services | 1 | Multipla Contabilidade Empresarial (BR) |
| Energy & Utilities | 1 | BGR Energy Systems (IN) |
| Financial Services | 1 | Dang Invest Group (VN) |
| Agriculture & Food | 1 | Wada Farms (JP) |
| Unclassified | 2 | Aforpa (FR), Ardom Eilot (IL) |
Key observation: Healthcare and energy victims in a burst alongside SMB retailers indicates volume-driven affiliate operations, not sector-specific campaigns. The presence of an energy utility (BGR Energy Systems, India) elevates concern — OT-adjacent organizations should assume spillover risk.
2.2 Geographic Concentration
13 distinct countries in a single posting day: DE, ES, US, AR, BG, FR, JP, FI, BR, TH, IL, IN, VN. No geographic focus — this is a global opportunistic sweep. Japan appears twice (Wada Farms, Tentac), suggesting an affiliate actively working APAC-sourced access.
2.3 Victim Profile
- Company size: Predominantly mid-market (50–2,500 employees) — large enough to pay, small enough to lack 24/7 SOC coverage
- Revenue estimates: USD $5M–$500M based on sector benchmarks; accounting firms and regional healthcare chains are classic mid-market RaaS prey
- Common denominators: Public-facing remote access infrastructure, hybrid IT/OT environments (manufacturing/energy), and outsourced IT with weak MDR coverage
2.4 Posting Frequency / Escalation Pattern
- 15 of the last 30 tracked victims were posted in one 24-hour window (2026-09-14)
- This "burst posting" pattern typically indicates one of two things: (a) a backlog of negotiated/refusing victims dumped simultaneously to pressure ongoing negotiations, or (b) a recently onboarded high-productivity affiliate
- Expect a second wave within 7–14 days based on historical leak site cadence for groups exhibiting this pattern
2.5 CVE Correlation — Probable Initial Access Vectors
The following CISA KEV entries (all confirmed ransomware use) map directly to THEGENTLEMEN's known edge-device exploitation tradecraft:
| CVE | Product | KEV Added | Relevance |
|---|---|---|---|
| CVE-2026-59310 | VMware vCenter (path traversal) | 2026-08-18 | Hypervisor-level access — enables mass VM encryption, the highest-impact ransomware scenario |
| CVE-2026-20316 | Cisco Secure FMC (hard-coded password) | 2026-07-29 | Firewall management plane takeover → policy manipulation + internal pivot |
| CVE-2026-50751 | Check Point Security Gateway (improper auth, IKEv1) | 2026-06-08 | VPN gateway compromise — classic RaaS entry point |
| CVE-2026-48027 | Nx Console (embedded malicious code) | 2026-05-27 | Supply-chain vector targeting developer workstations — explains technology-sector victims |
| CVE-2024-1708 | ConnectWise ScreenConnect (path traversal → RCE) | 2026-04-28 | RMM abuse — prevalent in MSP-dependent mid-market victims |
Action: If any of these products are internet-facing in your environment and unpatched, assume breach conditions and begin hunting immediately — do not wait for patch windows.
3. Detection Engineering
3.1 Sigma Rules
The following rules target THEGENTLEMEN's documented playbook: edge-device exploitation → RDP/SMB lateral movement → data staging → shadow copy deletion → encryption.
---
title: THEGENTLEMEN - Shadow Copy Deletion Pre-Ransomware
id: 8f3a1c2e-tg01-4b7a-9c1d-2026tg0001
status: experimental
description: Detects Volume Shadow Copy deletion via vssadmin, wmic, or PowerShell — a hallmark pre-encryption step observed in THEGENTLEMEN intrusions. Dwell time is short; this often fires hours before detonation.
author: Security Arsenal Threat Intel
date: 2026/09/16
references:
- https://securityarsenal.com/darkside
logsource:
category: process_creation
product: windows
level: critical
detection:
selection_img:
Image|endswith:
- '\vssadmin.exe'
- '\wmic.exe'
- '\powershell.exe'
- '\bcdedit.exe'
selection_cmd:
CommandLine|contains:
- 'delete shadows'
- 'shadowcopy delete'
- 'resize shadowstorage'
- 'recoveryenabled no'
- 'bootstatuspolicy ignoreallfailures'
condition: selection_img and selection_cmd
falsepositives:
- Legitimate backup maintenance scripts (rare outside maintenance windows)
- IT administrators performing storage reclamation
---
title: THEGENTLEMEN - PsExec and WMI Lateral Movement Execution
id: 8f3a1c2e-tg01-4b7a-9c1d-2026tg0002
status: experimental
description: Identifies service-based lateral movement consistent with THEGENTLEMEN affiliate tooling — PsExec-style service creation, remote WMI process spawn, and ADMIN$ writes following edge-device or RDP initial access.
author: Security Arsenal Threat Intel
date: 2026/09/16
logsource:
product: windows
service: system
level: high
detection:
selection_eventid:
EventID: 7045
selection_svc:
ServiceName|contains:
- 'PSEXESVC'
- 'paexec'
- 'remcom'
- 'csexec'
ServiceFileName|contains:
- '\ADMIN$\'
- '\Temp\'
- '\Users\Public\'
condition: selection_eventid and selection_svc
falsepositives:
- Legitimate remote administration by IT (whitelist known admin hosts)
- SCCM/Intune software deployment (distinct service names)
---
title: THEGENTLEMEN - Pre-Exfiltration Archive Staging on File Servers
id: 8f3a1c2e-tg01-4b7a-9c1d-2026tg0003
status: experimental
description: Detects mass archive creation via 7z/rar/WinRAR from command line on servers — THEGENTLEMEN affiliates stage compressed data for exfiltration via Rclone/MEGA before encryption. Double extortion makes this the highest-value pre-impact signal.
author: Security Arsenal Threat Intel
date: 2026/09/16
logsource:
category: process_creation
product: windows
level: high
detection:
selection_img:
Image|endswith:
- '\7z.exe'
- '\7za.exe'
- '\rar.exe'
- '\winrar.exe'
selection_cmd:
CommandLine|contains:
- ' a '
- '-p'
- '.7z'
- '.rar'
selection_host:
- Computer|contains: 'SRV'
- Computer|contains: 'FS'
- Computer|contains: 'DC'
filter_tools:
CommandLine|contains:
- 'BackupExec'
- 'Veeam'
condition: (selection_img and selection_cmd and selection_host) and not filter_tools
falsepositives:
- Legitimate scheduled compression jobs (baseline and exclude known task accounts)
3.2 Microsoft Sentinel (KQL) — Pre-Ransomware Staging Hunt
Hunt for the full THEGENTLEMEN pre-detonation chain: suspicious logon → admin share staging → mass file access → archive tooling → shadow copy tampering, correlated within a 6-hour window per host.
// THEGENTLEMEN pre-ransomware staging correlation — 6h window per device
// Hunt window recommendation: last 14 days, then convert to scheduled analytics rule
let Window = 6h;
let ArchiveTools = dynamic(["7z.exe","7za.exe","rar.exe","winrar.exe","rclone.exe","megacmd.exe","filezilla.exe"]);
let SuspectLogons =
SecurityEvent
| where TimeGenerated > ago(14d)
| where EventID == 4624 and LogonType in (3, 10) // network + RDP
| where Account !startswith "ANONYMOUS" and Account !endswith "$"
| summarize FirstLogon=min(TimeGenerated) by Computer, Account, IpAddress;
let AdminShareWrites =
SecurityEvent
| where TimeGenerated > ago(14d)
| where EventID == 5145
| where Share_Name has "ADMIN$" or Share_Name has "C$"
| summarize AdminWrites=count(), FirstWrite=min(TimeGenerated) by Computer, Account;
let StagingProcs =
DeviceProcessEvents
| where TimeGenerated > ago(14d)
| where FileName in~ (ArchiveTools)
or ProcessCommandLine has_any ("delete shadows", "shadowcopy delete", "recoveryenabled no", "wbadmin delete")
| summarize StagingEvents=count(), FirstStaging=min(TimeGenerated),
CmdLines=make_set(ProcessCommandLine, 10) by DeviceName, InitiatingProcessAccountName;
let MassFileAccess =
DeviceFileEvents
| where TimeGenerated > ago(14d)
| where ActionType == "FileRenamed" and FileName matches regex @"(?i)\.(locked|gentlemen|enc|crypt\d*)$"
| summarize Renames=count(), FirstRename=min(TimeGenerated) by DeviceName;
SuspectLogons
| join kind=inner AdminShareWrites on Computer, Account
| join kind=inner (StagingProcs | project DeviceName, InitiatingProcessAccountName, StagingEvents, FirstStaging, CmdLines)
on $left.Computer == $right.DeviceName and $left.Account == $right.InitiatingProcessAccountName
| join kind=leftouter MassFileAccess on $left.Computer == $right.DeviceName
| where FirstStaging between (FirstLogon .. (FirstLogon + Window))
| project Computer, Account, IpAddress, FirstLogon, AdminWrites, StagingEvents, CmdLines,
EncryptionStarted=Renames, FirstRename
| order by FirstLogon asc;
Deployment note: Run as a 14-day retro-hunt immediately. If results return, escalate to IR per Section 4. Then convert to a NRT scheduled rule scoped to FirstStaging within 30m for near-real-time alerting.
3.3 Rapid Response Script — Exposed Access & Persistence Sweep
Run from an elevated PowerShell session on critical servers (or via your EDR's live response) to enumerate the persistence and exposure artifacts THEGENTLEMEN affiliates leave behind during their 4–11 day dwell window.
# THEGENTLEMEN Rapid Triage — persistence, exposure, and pre-encryption artifacts
# Run elevated. Output written to C:\IR_Triage\TG_sweep_<hostname>_<timestamp>.txt
$out = "C:\IR_Triage"
New-Item -ItemType Directory -Path $out -Force | Out-Null
$report = Join-Path $out ("TG_sweep_{0}_{1:yyyyMMdd_HHmm}.txt" -f $env:COMPUTERNAME, (Get-Date))
"=== THEGENTLEMEN Rapid Triage: $env:COMPUTERNAME ===" | Out-File $report
"`n[1] RDP Exposure (port 3389 listeners + NLA status)" | Out-File $report -Append
Get-NetTCPConnection -LocalPort 3389 -State Listen -ErrorAction SilentlyContinue |
Format-Table LocalAddress, LocalPort, OwningProcess -AutoSize | Out-File $report -Append
(Get-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' `
-Name UserAuthentication -ErrorAction SilentlyContinue).UserAuthentication |
ForEach-Object { "NLA Enabled: $_ (0 = DISABLED = HIGH RISK)" } | Out-File $report -Append
"`n[2] Scheduled Tasks created in last 7 days (persistence check)" | Out-File $report -Append
Get-ScheduledTask | ForEach-Object {
$info = Get-ScheduledTaskInfo $_ -ErrorAction SilentlyContinue
[PSCustomObject]@{ Name=$_.TaskName; Path=$_.TaskPath; LastRun=$info.LastRunTime; Author=$_.Author }
} | Where-Object { $_.Author -and $_.Author -notmatch 'Microsoft' } |
Sort-Object LastRun -Descending | Format-Table -AutoSize | Out-File $report -Append
"`n[3] Shadow Copies (should NOT be empty on servers)" | Out-File $report -Append
$shadows = Get-WmiObject Win32_ShadowCopy -ErrorAction SilentlyContinue
if (-not $shadows) { "WARNING: No shadow copies found — possible pre-encryption deletion" | Out-File $report -Append }
else { $shadows | Select-Object ID, InstallDate, VolumeName | Format-Table -AutoSize | Out-File $report -Append }
"`n[4] Suspicious archive/exfil tooling processes and recent installs" | Out-File $report -Append
Get-Process -ErrorAction SilentlyContinue |
Where-Object { $_.Name -match '7z|rar|rclone|mega|filezilla|psexec|winscp' } |
Select-Object Name, Id, Path, StartTime | Format-Table -AutoSize | Out-File $report -Append
Get-ChildItem "C:\Users\Public", "C:\ProgramData" -Recurse -Depth 2 -Include *.7z,*.rar,*.zip `
-ErrorAction SilentlyContinue | Where-Object { $_.LastWriteTime -gt (Get-Date).AddDays(-7) } |
Select-Object FullName, Length, LastWriteTime | Format-Table -AutoSize | Out-File $report -Append
"`n[5] New local admin accounts (last 14 days)" | Out-File $report -Append
Get-LocalGroupMember -Group "Administrators" -ErrorAction SilentlyContinue |
Select-Object Name, ObjectClass, PrincipalSource | Format-Table -AutoSize | Out-File $report -Append
"`n[6] Recently failed logons (RDP brute-force indicator)" | Out-File $report -Append
Get-WinEvent -FilterHashtable @{LogName='Security'; Id=4625; StartTime=(Get-Date).AddDays(-3)} `
-MaxEvents 500 -ErrorAction SilentlyContinue |
Group-Object { $_.Properties[19].Value } | Sort-Object Count -Descending |
Select-Object -First 10 Count, Name | Format-Table -AutoSize | Out-File $report -Append
"`nTriage complete: $report"
4. Incident Response Priorities
4.1 T-Minus Detection Checklist (Before Encryption Fires)
THEGENTLEMEN's 4–11 day dwell window gives defenders a real interception opportunity. Hunt for, in order:
- Edge device anomalies — VPN concentrator logins from impossible-travel geographies, new admin sessions on firewalls/FMC, config exports from Check Point gateways
- RDP brute-force clustering — >50 failed 4625 events per source IP per hour, followed by a single success
- Service creation events (7045) — PsExec-style services, especially on file servers and domain controllers
- Mass archive creation — 7z/rar processes spawning on servers outside backup windows
- Outbound bulk transfer — connections to MEGA, Rclone remotes, or unfamiliar cloud storage; >5GB/hour egress from any single host
- Shadow copy deletion — the final warning shot; typically 1–6 hours before detonation
- AV/EDR tampering — Defender exclusions added, sensor services stopped,
Set-MpPreference -DisableRealtimeMonitoring $true
4.2 Critical Assets This Gang Prioritizes for Exfiltration
Based on their double-extortion staging behavior and victim mix:
- Finance: accounting databases, payroll exports, banking credentials, tax filings (note the accounting-firm victim — they harvest client data too, multiplying extortion leverage)
- HR/PII: employee records, identity documents — ammunition for regulatory pressure (GDPR-relevant for their EU victims)
- Healthcare data: patient records and imaging (MedSkin Solutions, Apteki Mareshki victims signal this appetite)
- IP/engineering: CAD files, schematics, source code — particularly from manufacturing and technology victims
- Legal/contracts: used to identify victim customers for secondary pressure outreach
4.3 Containment Actions — Ordered by Urgency
| Priority | Action | Rationale |
|---|---|---|
| 0 (immediately) | Isolate affected segments at the switch/NAC level — do NOT power off hosts (destroys forensic memory evidence) | Stops SMB/WMI lateral spread |
| 0 | Disable all VPN/remote access accounts pending credential reset; revoke sessions on Check Point/FMC/vCenter | Cuts the affiliate's re-entry path |
| 1 (first hour) | Reset KRBTGT twice, force domain-wide credential rotation starting with privileged accounts | Breaks ticket-based persistence |
| 1 | Block egress to known exfil destinations (MEGA, Rclone default endpoints, unattributed cloud storage) at the proxy | Preserves negotiation leverage by halting data loss |
| 2 (first 4 hours) | Snapshot/forensically image the patient-zero host and any box with 7045/PsExec telemetry | Evidence for attribution and decryptor development |
| 2 | Verify backup integrity and take an offline copy of backup catalogs BEFORE any restore attempt | THEGENTLEMEN actively targets backup infrastructure |
| 3 | Engage IR retainer / legal counsel / cyber insurance; begin regulatory clock assessment (GDPR 72h for EU entities) | Their EU victim list makes GDPR exposure likely |
5. Hardening Recommendations
Immediate (24 hours)
- Patch the five KEV CVEs — CVE-2026-59310 (vCenter), CVE-2026-20316 (Cisco FMC), CVE-2026-50751 (Check Point), CVE-2026-48027 (Nx Console), CVE-2024-1708 (ScreenConnect). If ScreenConnect is not business-critical, remove it entirely — RMM tools remain the highest-abuse surface in mid-market intrusions.
- Enforce MFA on every remote access path — VPN, RDP gateways, vCenter SSO, firewall management interfaces. No exceptions for service accounts.
- Disable NLA-less RDP and restrict 3389 to a jump host behind VPN; audit with the Section 3.3 script.
- Deploy the Sigma rules and KQL query above to your SIEM/EDR; set the shadow-copy deletion rule to page the on-call responder, not just log.
- Block command-line archiving on servers via AppLocker/WDAC for standard users and service accounts; alert on exceptions.
- Verify immutable/offline backups exist and test one restore today — not this week, today.
Short-Term (2 weeks)
- Segment by function, not convenience — isolate backup infrastructure, hypervisor management (vCenter), and OT networks from general user VLANs. THEGENTLEMEN's encryption of ESXi hosts succeeds because management planes are reachable from compromised workstations.
- Deploy EDR in block mode on servers — many mid-market victims run detection-only on servers; that gap is where staging lives.
- Egress filtering with TLS inspection on server subnets — servers have almost no legitimate reason to reach consumer cloud storage.
- Privileged access workstations (PAWs) and tiered admin model to prevent domain-admin credential exposure on commodity endpoints.
- Deception layer — canary fileshares and honey credentials on file servers; THEGENTLEMEN affiliates touch them during staging with near-zero false positives.
- Tabletop the T-minus checklist (Section 4.1) with your SOC — the 4–11 day dwell window only helps if someone is watching the right signals.
This briefing is based on direct observation of THEGENTLEMEN's .onion leak site via ransomware.live collection infrastructure as of 2026-09-16. Victim naming does not confirm breach details; listed organizations should be assumed to be in active extortion. Security Arsenal does not communicate with threat actors.
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.