Back to Intelligence

Ransom Busters Secondary Extortion Scheme: How Ransomware Victims Are Being Re-Targeted and How to Defend

SA
Security Arsenal Team
August 19, 2026
11 min read

Organizations that have already suffered the trauma of a ransomware and data-theft incident are now being hunted a second time. According to reporting from GuidePoint Research, a threat actor operating under the name Ransom Busters is proactively emailing victim organizations with an audacious pitch: they claim to have breached the ransomware groups' own infrastructure and will delete the victim's stolen data from those servers — for a fee ranging from $20,000 to $60,000.

Let me be blunt after fifteen years of incident response work: this is a scam layered on top of a scam. There is no verified mechanism by which a third party can guarantee deletion of exfiltrated data from a criminal operation's infrastructure — and even if a copy were deleted from one server, ransomware affiliates routinely maintain redundant copies across bulletproof hosting, dead drops, and affiliate handoffs. What Ransom Busters is actually doing is exploiting two things every ransomware victim has in abundance: leaked incident details (which make the outreach seem credible) and executive desperation to make the data-theft problem disappear.

Defenders, IR retainers, and counsel need to treat this as an active secondary extortion / re-victimization campaign. If your organization — or your client — has appeared on a ransomware leak site in 2025 or 2026, assume this email is coming.

Technical Analysis

What Ransom Busters Is Doing

Based on the GuidePoint Research findings, the campaign works as follows:

  1. Target selection: The actor harvests victim identities from ransomware leak sites, public breach disclosures, and possibly direct affiliate channel access. Victims of encryption-based ransomware incidents involving data exfiltration are the specific target pool.
  2. Credible outreach: Emails are sent directly to victim organizations. The messages demonstrate knowledge of the prior incident — which is trivially obtained from public leak posts but reads as insider access to an already-shaken executive team.
  3. The offer: The sender claims to have compromised the ransomware group's servers and offers to delete the victim's stolen data in exchange for payment of $20,000–$60,000.
  4. The anomalous signal: As GuidePoint noted, "the third-party offers to help the victim recover from the ransomware attack. This immediately stands out as anomalous." Legitimate IR firms do not cold-email victims offering clandestine data deletion from criminal infrastructure.

Why This Is Almost Certainly Fraudulent

From a DFIR practitioner's standpoint, the claims fail every credibility test:

  • No verifiable proof of access. There is no forensic artifact a third party could produce that proves deletion of all copies of exfiltrated data. Criminal groups shard and replicate stolen data by design.
  • Payment-up-front extortion economics. The $20K–$60K price point is calibrated to sit below most ransom amounts and below the threshold where boards involve outside counsel — a classic social-engineering sweet spot.
  • Possible affiliate connection. A competing hypothesis is that Ransom Busters is the ransomware affiliate (or a broker with channel access), monetizing the same victim twice under a fake "rescuer" identity. This pattern has precedent in the ecosystem: fake "decryptor sellers" and "data recovery brokers" have historically been linked to the original operators.
  • No chain of custody. Even in legitimate negotiations, deletion promises from ransomware crews themselves are routinely broken — data has resurged on rival leak sites months after "confirmed deletion."

Exploitation Status

This is a confirmed active campaign — real emails are reaching real victims. It requires no vulnerability, no malware payload, and no CVE. The attack surface is the human and process layer: executive inboxes, incident fatigue, and unclear payment-decision governance. That makes it a detection problem for your email security stack and a policy problem for your IR playbook, not a patching problem.

Who Is at Risk

  • Any organization publicly listed on a ransomware leak site in the past 12–18 months
  • Organizations currently in active ransomware IR engagements (attackers time outreach while victims are most vulnerable)
  • Firms whose breach disclosure became public via regulatory filing or media coverage
  • Law firms, IR retainers, and insurers may also be impersonated or referenced to lend credibility

Detection & Response

The highest-fidelity detection opportunities are in your email security telemetry: unsolicited inbound messages referencing ransomware recovery, stolen data deletion, or cryptocurrency payment demands. Below are tuned rules designed to catch this lure without drowning your queue in noise. Pair them with an allowlist of your actual IR vendors and counsel domains before deployment.

YAML
---
title: Suspicious Ransomware Recovery or Data Deletion Solicitation Email
id: 3f8c1a94-2e7b-4d51-9a63-7c0f2e5b8d41
status: experimental
description: Detects inbound email content consistent with secondary extortion lures offering to delete stolen data or provide ransomware recovery services for a fee, as observed in the Ransom Busters campaign.
references:
  - https://thehackernews.com/2026/08/ransom-busters-claims-it-hacked.html
  - https://attack.mitre.org/techniques/T1657/
author: Security Arsenal
date: 2026/08/15
tags:
  - attack.financial_theft
  - attack.t1657
logsource:
  product: exchange
  service: message_tracking
detection:
  selection_recovery:
    MessageSubject|contains:
      - 'stolen data'
      - 'your data'
      - 'ransomware'
      - 'decrypt'
      - 'recovery'
      - 'leak site'
  selection_offer:
    MessageBody|contains:
      - 'delete your data'
      - 'delete the stolen'
      - 'hacked the server'
      - 'remove your data'
      - 'recovery service'
      - 'before it is published'
      - 'bitcoin'
      - 'BTC wallet'
      - 'USDT'
      - 'monero'
  condition: selection_recovery and selection_offer
falsepositives:
  - Legitimate communications from retained IR firms, breach counsel, or cyber insurers — allowlist known vendor domains before enabling
  - Security vendor marketing emails referencing ransomware recovery
level: high
---
title: Executable Downloaded via Email Link Masquerading as Recovery or Decryption Tool
id: 9b2e4f17-6c3a-4d82-bf51-8a1d9e3c7b02
status: experimental
description: Detects execution of files with names suggesting decryption, recovery, or data-removal tooling launched from user-writable download locations — a potential second-stage payload if a victim engages with a Ransom Busters-style lure.
references:
  - https://thehackernews.com/2026/08/ransom-busters-claims-it-hacked.html
  - https://attack.mitre.org/techniques/T1204.002/
author: Security Arsenal
date: 2026/08/15
tags:
  - attack.execution
  - attack.t1204.002
logsource:
  category: process_creation
  product: windows
detection:
  selection_path:
    Image|contains:
      - '\Downloads\'
      - '\AppData\Local\Temp\'
      - '\Desktop\'
  selection_name:
    Image|contains:
      - 'decrypt'
      - 'recovery'
      - 'restore'
      - 'dataremoval'
      - 'delete_stolen'
      - 'ransom_buster'
  condition: selection_path and selection_name
falsepositives:
  - Legitimate vendor decryption tools (e.g., from No More Ransom or AV vendors) — verify publisher signature and hash against official sources
level: medium

The first rule keys on the semantic fingerprint of the lure — the combination of incident-knowledge language plus deletion/recovery offers plus cryptocurrency terms. A single one of those strings alone is noise; the conjunction is not. The second rule covers the contingency where engagement escalates and the actor delivers a "tool" — because a criminal selling you a data-deletion service has no reason not to also sell you a loader.

KQL — Microsoft Sentinel / Defender
// Hunt for inbound emails matching Ransom Busters secondary-extortion lure patterns
// Scope: Microsoft Defender for Office 365 - last 30 days
let lookback = 30d;
let lureSubjects = dynamic(["stolen data", "ransomware", "decrypt", "recovery", "leak", "your data"]);
let lureBody = dynamic(["delete your data", "delete the stolen", "remove your data", "hacked the server", "recovery service", "before it is published", "bitcoin", "btc wallet", "usdt", "monero", "$20,000", "$60,000"]);
EmailEvents
| where Timestamp >= ago(lookback)
| where EmailDirection == "Inbound"
| where SenderFromDomain !in~ ("your-ir-firm.com", "your-counsel.com", "your-insurer.com")  // allowlist retained partners
| extend SubjectHit = Subject has_any (lureSubjects)
| where SubjectHit
| join kind=inner (
    EmailPostDeliveryEvents
    | where Timestamp >= ago(lookback)
) on NetworkMessageId
| project Timestamp, RecipientEmailAddress, SenderFromAddress, SenderFromDomain, Subject,
          ThreatTypes, DeliveryAction, AttachmentCount, UrlCount, InternetMessageId
| order by Timestamp desc;
// Correlate: any clicks on URLs in matching messages (potential escalation to payment or payload)
EmailEvents
| where Timestamp >= ago(lookback)
| where EmailDirection == "Inbound"
| where Subject has_any (lureSubjects)
| join kind=inner (UrlClickEvents | where Timestamp >= ago(lookback)) on NetworkMessageId
| project Timestamp, RecipientEmailAddress = AccountUpn, SenderFromAddress, Subject, Url, ActionType, IsClickedThrough;
VQL — Velociraptor
-- Hunt for user-launched files masquerading as ransomware recovery/decryption tools
-- Relevant where a victim may have engaged with a Ransom Busters-style lure and downloaded a 'tool'
SELECT Pid,
       Name,
       Exe,
       CommandLine,
       Username,
       CreateTime
FROM pslist()
WHERE Exe =~ '(?i)(decrypt|recover|restore|data.?removal|ransom.?buster)'
  AND Exe =~ '(?i)(Downloads|Temp|Desktop|AppData)'

-- Additionally: enumerate recently created executables in user download paths
SELECT FullPath,
       Size,
       Mtime,
       Btime
FROM glob(globs='C:/Users/*/Downloads/*.exe')
WHERE Btime > now() - 2592000
ORDER BY Btime DESC
PowerShell
# Ransom Busters lure sweep and containment — Exchange Online
# Run from an account with Security & Compliance Center eDiscovery + Search and Purge roles

Connect-IPPSSession

# 1) Search for lure-pattern emails delivered in the last 30 days
$lureQuery = @'
(subject:"stolen data" OR subject:"ransomware" OR subject:"decrypt" OR subject:"leak site")
AND (body:"delete your data" OR body:"recovery service" OR body:"bitcoin" OR body:"USDT" OR body:"before it is published")
AND received>=2026-07-15
'@

$search = New-ComplianceSearch -Name "RansomBusters-Lure-Sweep" -ExchangeLocation All -ContentMatchQuery $lureQuery
Start-ComplianceSearch -Identity $search.Name

# Wait for completion, then review hits BEFORE purging
Get-ComplianceSearch -Identity $search.Name | Format-List Status, Items, ContentMatchQuery

# 2) After analyst validation, purge confirmed lure messages (soft delete)
New-ComplianceSearchAction -SearchName $search.Name -Purge -PurgeType SoftDelete

# 3) Identify and block repeat sender domains via tenant block list
# Review senders surfaced in the search results first — do not block blindly
$senderDomains = @("example-extortion-domain.tld")  # replace with validated sender domains from sweep results
foreach ($domain in $senderDomains) {
    New-TenantAllowBlockListEntry -ListType Sender -Block -Entries $domain -NoExpiration -Notes "Ransom Busters secondary extortion lure"
}

# 4) Audit check: list any inbox rules created in the last 30 days that forward externally
# (engagement with the actor may escalate to persistence or monitoring of exec mailboxes)
Get-Mailbox -ResultSize Unlimited | ForEach-Object {
    Get-InboxRule -Mailbox $_.PrimarySmtpAddress | Where-Object {
        $_.ForwardTo -or $_.RedirectTo -or $_.ForwardAsAttachmentTo
    } | Select-Object @{n='Mailbox';e={$_.PrimarySmtpAddress}}, Name, ForwardTo, RedirectTo, ForwardAsAttachmentTo
}

Disconnect-ExchangeOnline -Confirm:$false

Remediation

There is no patch for being re-victimized — the fix is procedural, contractual, and communicative. Do the following:

1. Never pay, and brief your executives now. Any unsolicited offer to delete stolen data — whether from the original ransomware crew, a "recovery broker," or a claimed hacker-of-hackers — should be treated as extortion. Payment provides no deletion guarantee, creates sanctions exposure (OFAC advisories apply to payments to sanctioned ransomware entities regardless of the intermediary's claimed identity), and marks your organization as a repeat payer. Issue a one-page guidance memo to your C-suite and board before the email arrives, so the first time they see this lure it is in your briefing, not their inbox.

2. Route all such outreach through your IR retainer and counsel. Establish a standing rule: any post-incident contact referencing the breach, the stolen data, or payment goes to legal counsel and your IR provider untouched. Do not reply, do not click, do not negotiate. Preserve the original message with full headers as evidence — it may be relevant to the underlying criminal investigation and to your insurer.

3. Engage law enforcement and check existing reporting. If you filed with the FBI (IC3), CISA, or your sector ISAC during the original incident, report this follow-on contact to the same case. Secondary-extortion contact is an investigative lead — the sender may be linked to the original affiliate infrastructure.

4. Harden the human attack surface. Add the Ransom Busters lure pattern to your phishing simulation and security awareness program, specifically targeting executives, legal, and finance. Deploy the email detection rules above, and verify your DMARC enforcement is at p=reject so the actor cannot spoof your own IR vendors or counsel to lend the lure credibility.

5. Re-baseline your data exposure assessment. The uncomfortable truth this campaign exploits: once data is exfiltrated, no payment — to anyone — reliably un-exfiltrates it. Your exposure is what it is. Shift spend from "make it go away" schemes to the durable work: notify obligations, dark-web monitoring for your data's resale, credential/session invalidation for anything in the exfiltrated set, and litigation/notification strategy with counsel.

6. Re-validate your ransomware defenses while you're here. Victims get re-listed. Confirm EDR coverage is complete, offline/immutable backups are tested (restoration, not just backup jobs), MFA covers all remote access and email, and your IR plan has been exercised with a ransomware tabletop in the last 12 months.

Report active lures: FBI IC3 (ic3.gov), CISA (report@cisa.gov), and your cyber insurance breach coach. If you need hands-on help validating scope of the original incident or hardening against follow-on extortion, engage an IR team that has worked these campaigns before.

Related Resources

Security Arsenal Incident Response Services AlertMonitor Platform Book a SOC Assessment incident-response Intel Hub

Is your security operations ready?

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