Back to Intelligence

SILENTRANSOMGROUP Ransomware Campaign: 4 Victims Posted in 48 Hours — BigLaw Targeting Analysis, Detection Rules & Hunting Queries

SA
Security Arsenal Team
September 3, 2026
10 min read

Classification: TLP:CLEAR — Enterprise Defensive Intelligence Collection Source: ransomware.live monitoring of SILENTRANSOMGROUP .onion leak site Report Date: 2026-09-03 Analyst: Security Arsenal — From The Dark Side


Executive Summary

Between 2026-09-01 and 2026-09-02, the SILENTRANSOMGROUP ransomware operation posted 4 victims to its dark web leak site, including two of the largest law firms in the United States: Greenberg Traurig (published 2026-09-02) and Holland & Knight (published 2026-09-01). Two additional victims — partially redacted on the leak site as "G... ...g" and "S... M..." — were posted the same day, consistent with batch disclosure after failed negotiations.

This posting cadence (4 disclosures in 48 hours, 100% US-centric, 50% confirmed professional services) indicates an active campaign deliberately concentrated against the legal and professional services sector — organizations holding concentrated volumes of privileged client data, M&A material, litigation strategy, and PII. Legal-sector victims face extreme extortion leverage because breach disclosure obligations and attorney-client privilege concerns compress negotiation timelines.


Threat Actor Profile — SILENTRANSOMGROUP

AttributeAssessment
AliasesSILENTRANSOMGROUP; overlapping tooling and leak-site infrastructure suggests lineage ties to former Silence/BlackCat-adjacent affiliate ecosystems (confidence: moderate)
Operating ModelRansomware-as-a-Service (RaaS) with a vetted affiliate base; core team maintains the encryptor, leak site, and negotiation infrastructure while affiliates execute intrusion and deployment
Ransom DemandsTypically USD $1M–$10M for mid-market professional services; demands against AmLaw-tier legal targets are assessed at the upper end of that band given revenue and data sensitivity
Initial Access(1) Exploitation of edge/VPN appliances, (2) targeted spearphishing with macro-laden or ISO/LNK-delivered payloads against legal staff, (3) abused RMM tooling (ConnectWise-class), (4) purchased access from initial access brokers (IABs)
Extortion ModelDouble extortion — data exfiltration precedes encryption; victim listed on leak site with countdown timer; partial redaction of victim names during negotiation (as seen with two of the four current postings)
Dwell TimeEstimated 5–14 days from initial access to detonation; staging and exfiltration typically occur in the final 72 hours

Analyst Note: The partially redacted victim names on this week's postings are a negotiation tactic, not incomplete intelligence. Expect full disclosure within 7–14 days if ransoms are not paid.


Current Campaign Analysis

Sector Targeting

  • Professional Services (Legal): Greenberg Traurig, Holland & Knight — both AmLaw 100-scale firms. This is deliberate sector concentration, not opportunism. Law firms aggregate the sensitive data of hundreds of corporate clients, making them force-multiplier extortion targets.
  • Unclassified victims ("Not Found"): Two redacted postings suggest negotiations in progress; sector data pending disclosure.

Geographic Concentration

  • 100% United States. No non-US victims in the current posting window. Consistent with RaaS rules-of-engagement targeting high-yield Western economies.

Victim Profile

  • Size: Large enterprise (1,000–5,000+ employees) for confirmed victims; redacted victims likely mid-market (200–2,000 employees).
  • Revenue estimates: Confirmed legal-sector victims operate in the USD $1B–$2B+ annual revenue band — squarely in the ransom range this group historically demands.

Posting Frequency / Escalation

  • 4 postings in 48 hours represents a burst disclosure pattern — typically follows a synchronized negotiation deadline. Escalation indicator: watch for data-sample publication (file trees, client matter lists) within 5–7 days, followed by full dump threats.

Likely Initial Access Vectors (CVE Correlation)

The following CISA KEV entries are confirmed in ransomware playbooks and map directly to this actor's known tradecraft:

CVEProductRole in Kill Chain
CVE-2026-50751Check Point Security Gateway (IKEv1 improper authentication)Perimeter initial access — VPN gateway compromise without valid credentials
CVE-2026-48027Nx Console (embedded malicious code)Supply-chain/developer-workstation foothold — relevant to firms with in-house dev or case-management tooling
CVE-2024-1708ConnectWise ScreenConnect (path traversal → RCE)RMM abuse — hijack of legitimate remote management already deployed in victim environments
CVE-2025-60710Microsoft Windows (link following → privilege escalation)Post-compromise privesc to SYSTEM ahead of deployment
CVE-2023-21529Microsoft Exchange Server (deserialization)Mailbox-to-network pivot; law firms running on-prem Exchange are disproportionately exposed

Priority action: If you run Check Point gateways or on-prem Exchange, treat this briefing as a patch-or-isolate directive for those two assets specifically.


Detection Engineering

Sigma Rules

YAML
---
title: Check Point VPN Exploitation Followed by Suspicious Internal Authentication (CVE-2026-50751)
id: 7a3f1c2e-9b4d-4e8a-a1c5-srg0001
status: experimental
description: Detects anomalous IKEv1/VPN authentication events followed within a short window by first-seen internal logons from the VPN gateway subnet — consistent with SILENTRANSOMGROUP perimeter exploitation of Check Point Security Gateway improper authentication.
author: Security Arsenal Threat Intel
logsource:
  category: authentication
  product: checkpoint
detection:
  selection_vpn_anomaly:
    - ike_mode: 'v1'
      auth_result: 'success'
    - failure_count|gte: 10
  filter_known_users:
    user|startswith:
      - 'svc-'
      - 'vpn-svc'
  condition: selection_vpn_anomaly and not filter_known_users
falsepositives:
  - Legacy IKEv1 clients; scheduled VPN health checks
level: high
tags:
  - attack.initial_access
  - attack.t1133
  - cve.2026.50751
date: 2026/09/03
---
title: RMM Tool Abuse — ScreenConnect or Unauthorized Remote Access Execution
description: Identifies execution of ConnectWise ScreenConnect components or newly installed remote access tooling outside approved software paths, a hallmark of SILENTRANSOMGROUP affiliate lateral movement and persistence (CVE-2024-1708 abuse).
logsource:
  category: process_creation
  product: windows
detection:
  selection_rmm:
    Image|endswith:
      - '\ScreenConnect.ClientService.exe'
      - '\ScreenConnect.Service.exe'
      - '\AnyDesk.exe'
      - '\AteraAgent.exe'
      - '\TeamViewer_Service.exe'
  selection_suspicious_path:
    Image|startswith:
      - 'C:\ProgramData\'
      - 'C:\Users\Public\'
      - 'C:\Windows\Temp\'
      - 'C:\PerfLogs\'
  condition: selection_rmm and selection_suspicious_path
falsepositives:
  - IT-managed RMM deployments in nonstandard paths
level: high
tags:
  - attack.command_and_control
  - attack.t1219
  - attack.t1105
date: 2026/09/03
---
title: Pre-Ransomware Staging — Shadow Copy Deletion and Backup Tampering via Legitimate Admin Tools
id: 7a3f1c2e-9b4d-4e8a-a1c5-srg0003
status: experimental
description: Detects Volume Shadow Copy deletion, backup catalog tampering, and recovery disabling — the final T-minus action before SILENTRANSOMGROUP detonates encryption.
author: Security Arsenal Threat Intel
logsource:
  category: process_creation
  product: windows
detection:
  selection_vss:
    Image|endswith: '\vssadmin.exe'
    CommandLine|contains:
      - 'delete shadows'
      - 'Delete Shadows'
  selection_wmic:
    Image|endswith: '\wmic.exe'
    CommandLine|contains: 'shadowcopy'
  selection_bcdedit:
    Image|endswith: '\bcdedit.exe'
    CommandLine|contains:
      - 'recoveryenabled no'
      - 'bootstatuspolicy ignoreallfailures'
  selection_wbadmin:
    Image|endswith: '\wbadmin.exe'
    CommandLine|contains: 'delete catalog'
  condition: 1 of selection_*
falsepositives:
  - Legitimate storage reclamation by backup administrators (rare on endpoints)
level: critical
tags:
  - attack.impact
  - attack.t1490
  - attack.defense_evasion
date: 2026/09/03

Microsoft Sentinel KQL — Pre-Detonation Staging & Lateral Movement Hunt

KQL — Microsoft Sentinel / Defender
// SILENTRANSOMGROUP pre-ransomware staging hunt: mass file access bursts,
// admin-tool lateral movement, and exfil staging on file shares — 72h window
let lookback = 72h;
let AdminTools = dynamic(["psexec.exe","psexesvc.exe","wmic.exe","wmiprvse.exe","winrs.exe","rclone.exe","megasync.exe","7z.exe","rar.exe"]);
// Stage 1: hosts executing staging/archiving or exfil tooling
let StagingHosts = DeviceProcessEvents
| where Timestamp > ago(lookback)
| where FileName has_any (AdminTools)
| summarize FirstSeen=min(Timestamp), CmdLines=make_set(ProcessCommandLine, 10) by DeviceName, InitiatingProcessAccountName;
// Stage 2: same hosts showing remote logon from unusual sources
let Lateral = DeviceLogonEvents
| where Timestamp > ago(lookback)
| where LogonType in ("RemoteInteractive","Network")
| where DeviceName in (StagingHosts | project DeviceName)
| summarize RemoteLogons=count, Sources=make_set(RemoteIP, 10) by DeviceName, AccountName;
// Stage 3: bulk file reads consistent with pre-exfil collection
let BulkAccess = DeviceFileEvents
| where Timestamp > ago(lookback)
| where DeviceName in (StagingHosts | project DeviceName)
| where ActionType == "FileCreated" and FolderPath has_any ("\\Temp\\","\\ProgramData\\","staging","backup")
| summarize StagedFiles=count, ExtList=make_set(tostring(split(FileName,".")[-1]), 15) by DeviceName;
StagingHosts
| join kind=inner Lateral on DeviceName
| join kind=inner BulkAccess on DeviceName
| project DeviceName, InitiatingProcessAccountName, FirstSeen, CmdLines, RemoteLogons, Sources, StagedFiles, ExtList
| order by StagedFiles desc;

Rapid-Response PowerShell — T-Minus Indicator Sweep

PowerShell
# Security Arsenal — SILENTRANSOMGROUP rapid T-minus sweep
# Run elevated on suspected hosts. Checks: shadow copy tampering, new scheduled
# tasks (7d), unauthorized RMM services, exposed RDP, suspicious recent logons.
$cutoff = (Get-Date).AddDays(-7)
$findings = @()

# 1. Volume Shadow Copy status
$shadows = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
if (-not $shadows) { $findings += '[CRITICAL] No Volume Shadow Copies present — possible vssadmin deletion (pre-encryption indicator).' }

# 2. Scheduled tasks created in last 7 days
Get-ScheduledTask | ForEach-Object {
  $info = Get-ScheduledTaskInfo $_ -ErrorAction SilentlyContinue
  $xml = Export-ScheduledTask -TaskName $_.TaskName -TaskPath $_.TaskPath -ErrorAction SilentlyContinue
  if ($xml -match 'RegistrationInfo') {
    if (([xml]$xml).Task.RegistrationInfo.Date -as [datetime] -gt $cutoff) {
      $findings += "[HIGH] New scheduled task: $($_.TaskPath)$($_.TaskName)"
    }
  }
}

# 3. Unauthorized RMM services
$rmm = 'ScreenConnect','AnyDesk','Atera','TeamViewer','Splashtop','LogMeIn'
Get-Service | Where-Object { $n=$_.Name; $rmm | Where-Object { $n -like "*$_*" } } | ForEach-Object {
  $findings += "[HIGH] RMM service present: $($_.Name) — verify against approved software inventory (CVE-2024-1708 abuse vector)."
}

# 4. RDP exposure
$rdp = Get-NetTCPConnection -LocalPort 3389 -State Listen -ErrorAction SilentlyContinue
if ($rdp) { $findings += '[MED] RDP listening on 3389 — confirm it is not internet-exposed and NLA is enforced.' }

# 5. Failed logon burst (brute force indicator)
$fails = Get-WinEvent -FilterHashtable @{LogName='Security'; Id=4625; StartTime=$cutoff} -ErrorAction SilentlyContinue
if (($fails | Measure-Object).Count -gt 500) { $findings += "[HIGH] $($fails.Count) failed logons in 7 days — possible RDP/VPN brute force or password spray." }

$findings | ForEach-Object { Write-Output $_ }
if (-not $findings) { Write-Output '[OK] No T-minus indicators detected on this host.' }

Incident Response Priorities

T-Minus Detection Checklist (Before Encryption Fires)

  1. vssadmin delete shadows / bcdedit recoveryenabled no execution on any server — treat as imminent detonation.
  2. New or renamed RMM services (ScreenConnect, AnyDesk) not in your approved inventory.
  3. Archive tooling (7z, rar) executing against file shares, DMS/iManage/NetDocuments exports, or Exchange mailboxes.
  4. Outbound transfers >5GB to cloud storage (MEGA, Dropbox, rclone endpoints) from servers that never initiate such traffic.
  5. New domain admin accounts or GPO changes pushing software deployment (encryptor distribution staging).
  6. Check Point VPN logs showing IKEv1 authentication anomalies or impossible-travel admin logons.

Critical Assets This Actor Prioritizes for Exfiltration

  • Document management systems (iManage, NetDocuments) — client matter files are the crown jewels for legal-sector extortion
  • Email archives / on-prem Exchange (see CVE-2023-21529)
  • HR and payroll data (PII for secondary extortion of individuals)
  • Finance/AP systems (wire fraud follow-on)
  • Backup infrastructure credentials (deleted or encrypted backups force payment)

Containment — Ordered by Urgency

  1. Isolate VPN/edge appliances (Check Point gateways) from management interfaces; force credential reset for all VPN-authenticated accounts.
  2. Disable suspected RMM tooling at the network level (block ScreenConnect/AnyDesk egress) — do not rely on endpoint removal while the actor may still be present.
  3. Revoke and re-issue domain admin and service account credentials (assume krbtgt compromise if DCSync behavior observed; reset twice).
  4. Segment backup infrastructure and verify offline/immutable copies before announcing incident status internally.
  5. Snapshot and preserve volatile evidence on patient-zero before reimaging — memory capture first.
  6. Engage outside counsel early: for legal-sector victims, privilege and client-notification obligations begin immediately.

Hardening Recommendations

Immediate (24 Hours)

  • Patch or isolate Check Point Security Gateways against CVE-2026-50751; disable IKEv1 where operationally possible.
  • Patch on-prem Exchange (CVE-2023-21529) or place behind a WAF with deserialization protections.
  • Audit and inventory all RMM tooling; block unapproved remote-access executables via AppLocker/WDAC.
  • Enforce phishing-resistant MFA (FIDO2) on VPN, OWA, and remote access — no SMS/TOTP for privileged accounts.
  • Deploy the Sigma rules above and alert at HIGH+ severity on any shadow-copy or bcdedit event.

Short-Term (2 Weeks)

  • Macro/LNK/ISO hardening: block Office macros from the internet (Mark-of-the-Web), restrict ISO mounting for standard users.
  • Egress controls: deny outbound to consumer cloud storage and known exfil endpoints; alert on rclone-style TLS patterns.
  • Immutable backups: move at least one copy of backups to WORM/object-lock storage with separate credentials and isolated network path.
  • Tiered admin model: eliminate standing domain admin; deploy PAWs (privileged access workstations) for Tier-0 administration.
  • Legal-sector specific: apply DMS-level anomaly detection on iManage/NetDocuments bulk-export activity; establish client-notification playbooks before you need them.

Security Arsenal continues to monitor SILENTRANSOMGROUP's leak site for disclosure of the two redacted victims and any data-sample publication. Subscribers to From The Dark Side will receive updated indicators as they are collected.

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.