Back to Intelligence

DYSPHOR1A Ransomware: 3 Myanmar Victims in 72 Hours — Government, Finance & Telecom Campaign Analysis with Detection Rules

SA
Security Arsenal Team
September 7, 2026
12 min read

Classification: TLP:CLEAR | Briefing date: 2026-09-07 | Source: ransomware.live monitoring of DYSPHOR1A .onion leak site + CISA KEV correlation


Executive Summary

Between 2026-09-04 and 2026-09-06, the ransomware group tracked as DYSPHOR1A published three victim organizations to its dark web leak site on three consecutive days — all located in Myanmar (MM) and spanning Government & Defense, Financial Services, and Technology/Telecom. This is a deliberate, concentrated campaign against a single country's critical infrastructure triad, not opportunistic spray-and-pray activity.

Victims posted:

VictimSectorCountryPublished
RTAD GOV MMGovernment & DefenseMM2026-09-06
CitizensPayFinancial Services (payments)MM2026-09-05
MBT TelecomTechnology / TelecomMM2026-09-04

The victim mix — a government transport/administration body, a payments provider, and a telecommunications operator — suggests targeting of organizations whose outages create compounding national-level disruption and maximum extortion pressure.


Threat Actor Profile — DYSPHOR1A

Confidence note: DYSPHOR1A has a limited public reporting footprint. Items marked (assessed) are analyst judgments based on observed leak-site behavior and correlated KEV activity, not confirmed attribution.

  • Aliases: None confirmed at this time. No overlap established with rebranded families, though the tight operational tempo suggests an experienced crew rather than a first-time operation (assessed).
  • Operating model: Behavior is consistent with a small closed group or tightly controlled RaaS — low victim volume (3 in last 100 postings monitored), high victim value, and geographic discipline. This is the opposite of high-volume affiliates models like LockBit (assessed, medium confidence).
  • Ransom demands: Not publicly disclosed. Based on victim profile (telecom, payments, government), demands are assessed to be in the mid-six to low-seven figure USD range, typical for critical-infrastructure extortion.
  • Initial access methods (assessed):
    • Edge device / VPN exploitation — CVE-2026-50751 (Check Point Security Gateway improper authentication in IKEv1) is the strongest candidate vector; perimeter gateway compromise is the classic precursor to this victim profile.
    • RMM tooling abuse — CVE-2024-1708 (ConnectWise ScreenConnect path traversal → RCE) enables both initial access and stealthy persistence using legitimate remote management infrastructure.
    • Exchange exploitation — CVE-2023-21529 (authenticated deserialization → RCE) for organizations with on-prem Exchange.
    • Phishing cannot be ruled out but is not required to explain the current campaign.
  • Extortion model: Double extortion confirmed — victims are named on the leak site, implying data theft precedes (or accompanies) encryption. Escalation to full data publication should be expected for non-payers.
  • Dwell time: Unknown for this group specifically. Comparable edge-device-led campaigns show 7–21 days from perimeter compromise to detonation, with exfiltration typically occurring in the final 72 hours.
  • Privilege escalation tooling (assessed): CVE-2025-60710 (Windows link following / privilege escalation) is a plausible post-compromise privesc primitive once inside.

Current Campaign Analysis

Sector targeting

Government & Defense, Financial Services, and Telecom — the three most extortion-sensitive sectors in any national economy. A payments provider (CitizensPay) holds transaction PII at scale; a telecom (MBT Telecom) holds subscriber metadata and provides lateral access into customer networks; a government body (RTAD) carries political pressure value. This is pressure-engineering, not random selection.

Geographic concentration

100% of observed victims are in Myanmar (MM). Single-country concentration typically indicates either (a) exploitation of a region-specific exposure (e.g., a common ISP-managed edge stack, a regional MSP, or unpatched Check Point deployments), or (b) a deliberate thematic campaign. Organizations in adjacent Southeast Asian markets should treat this as an early-warning indicator.

Victim profile

Mid-to-large enterprises and public-sector bodies. Revenue estimates: telecom and payments victims typically in the $50M–$500M USD range; government victim sized by operational criticality rather than revenue. All three are organizations where downtime and data exposure generate immediate national attention.

Posting frequency / escalation pattern

One victim per day for three consecutive days is a burst pattern. For low-volume groups, this cadence usually means a batch of intrusions matured simultaneously (common when a single exploited vector — e.g., one VPN CVE — yields multiple concurrent footholds). Expect either a quiet period (batch exhausted) or a second wave (vector still live). The next 14 days are the tell.

CVE correlation (initial access assessment)

CVEProductRole in assessed kill chain
CVE-2026-50751Check Point Security Gateway (IKEv1 improper auth)Primary initial access candidate — perimeter gateway compromise
CVE-2024-1708ConnectWise ScreenConnect (path traversal → RCE)Initial access + legitimate-RMM persistence/lateral movement
CVE-2023-21529Microsoft Exchange (deserialization)Alternate initial access where on-prem Exchange exists
CVE-2025-60710Microsoft Windows (link following privesc)Post-compromise privilege escalation
CVE-2026-48027Nx Console (embedded malicious code)Supply-chain flavored access against developer workstations (lower confidence for this campaign)

Actionable takeaway: If you run Check Point gateways, ScreenConnect, or on-prem Exchange and have any Myanmar/SEA exposure, assume you are in the targeting envelope.


Detection Engineering

The following detections target the assessed DYSPHOR1A kill chain: edge/RMM exploitation → web shell or RMM persistence → RDP/lateral movement → staging → shadow copy destruction → encryption.

YAML
---
title: Exchange IIS Worker Process Spawning Shell - Possible Deserialization Exploitation
id: 8f3c2a10-dy51-4a01-9e01-exch202321529
status: experimental
description: Detects w3wp.exe associated with Exchange spawning command shells or scripting engines, consistent with post-exploitation of Exchange deserialization flaws such as CVE-2023-21529.
author: Security Arsenal Threat Intelligence
date: 2026/09/07
references:
  - https://www.cisa.gov/known-exploited-vulnerabilities-catalog
logsource:
  category: process_creation
  product: windows
detection:
  selection_parent:
    ParentImage|endswith: '\w3wp.exe'
    ParentCommandLine|contains: 'MSExchange'
  selection_child:
    Image|endswith:
      - '\cmd.exe'
      - '\powershell.exe'
      - '\pwsh.exe'
      - '\wscript.exe'
      - '\cscript.exe'
      - '\rundll32.exe'
      - '\mshta.exe'
  condition: selection_parent and selection_child
falsepositives:
  - Rare legitimate Exchange diagnostic tooling
level: high
tags:
  - attack.t1190
  - attack.t1059
  - cve.2023.21529
---
title: RDP Brute Force Burst Followed By Success - External Logon Storm
id: 7b1e94d2-dy51-4a02-9e02-rdpbrute
status: experimental
description: Detects a high volume of failed remote interactive logons from a single source followed by a success, indicative of RDP brute forcing or password spraying preceding ransomware staging.
author: Security Arsenal Threat Intelligence
date: 2026/09/07
logsource:
  product: windows
  service: security
detection:
  selection_fail:
    EventID: 4625
    LogonType:
      - 3
      - 10
  selection_success:
    EventID: 4624
    LogonType: 10
  condition: selection_fail | count() by IpAddress > 15
  timeframe: 5m
falsepositives:
  - Misconfigured service accounts, legacy scanners
level: medium
tags:
  - attack.t1110
  - attack.t1021.001
---
title: Pre-Ransomware Defense Evasion - Shadow Copy Deletion And Backup Tampering
id: 3c9a77f0-dy51-4a03-9e03-shadowdel
status: experimental
description: Detects Volume Shadow Copy deletion, boot configuration tampering, or backup catalog deletion - near-universal pre-encryption behavior in ransomware operations including double-extortion crews.
author: Security Arsenal Threat Intelligence
date: 2026/09/07
logsource:
  category: process_creation
  product: windows
detection:
  selection_vss:
    Image|endswith:
      - '\vssadmin.exe'
      - '\wmic.exe'
    CommandLine|contains:
      - 'delete shadows'
      - 'shadowcopy delete'
      - 'resize shadowstorage'
  selection_bcd:
    Image|endswith: '\bcdedit.exe'
    CommandLine|contains:
      - 'recoveryenabled no'
      - 'ignoreallfailures'
  selection_wbadmin:
    Image|endswith: '\wbadmin.exe'
    CommandLine|contains:
      - 'delete catalog'
      - 'delete systemstatebackup'
  condition: 1 of selection_*
falsepositives:
  - Legitimate backup maintenance windows (correlate with change tickets)
level: critical
tags:
  - attack.t1490
  - attack.t1562.001
KQL — Microsoft Sentinel / Defender
// Security Arsenal - DYSPHOR1A pre-ransomware staging hunt
// Looks for data staging, lateral movement and exfil-prep behaviors across endpoints
let Lookback = 7d;
let StagingTerms = dynamic(['vssadmin', 'delete shadows', 'shadowcopy delete', 'bcdedit', 'wbadmin', 'recoveryenabled no']);
let ExfilTools = dynamic(['7z.exe', 'rar.exe', 'winrar.exe', 'rclone.exe', 'megacmd.exe', 'filezilla.exe']);
let LateralTools = dynamic(['psexec.exe', 'paexec.exe', 'wmiexec', 'screenconnect', 'ScreenConnect.ClientService']);
let ProcEvents =
    DeviceProcessEvents
    | where Timestamp > ago(Lookback)
    | extend CmdLower = tolower(ProcessCommandLine)
    | extend IsStaging = CmdLower has_any (StagingTerms),
             IsExfilTool = tolower(FileName) in~ (ExfilTools) or CmdLower has_any (ExfilTools),
             IsLateral = tolower(FileName) has_any (LateralTools) or CmdLower has_any (LateralTools)
    | where IsStaging or IsExfilTool or IsLateral
    | project Timestamp, DeviceName, AccountName, FileName, ProcessCommandLine, IsStaging, IsExfilTool, IsLateral, InitiatingProcessFileName, InitiatingProcessCommandLine;
let ServiceInstalls =
    DeviceEvents
    | where Timestamp > ago(Lookback)
    | where ActionType == 'ServiceInstalled'
    | extend Additional = parse_json(AdditionalFields)
    | extend ServiceName = tostring(Additional.ServiceName), ServicePath = tostring(Additional.ServiceFileName)
    | where ServicePath has_any ('temp', 'appdata', 'programdata', 'users\\public') or ServiceName matches regex '^[a-zA-Z0-9]{5,8}$'
    | project Timestamp, DeviceName, ServiceName, ServicePath;
ProcEvents
| union ServiceInstalls
| summarize FirstSeen = min(Timestamp), LastSeen = max(Timestamp), EventCount = count(), Artifacts = make_set(FileName, 20) by DeviceName, AccountName
| where EventCount >= 2  // reduce single-hit noise; staging rarely happens once
| sort by EventCount desc
PowerShell
# Security Arsenal - DYSPHOR1A Rapid Triage Script
# Run elevated on suspected hosts or via your remote execution platform.
# Checks: new scheduled tasks (7d), shadow copy integrity, RDP exposure, new local admins, suspicious services.

$Report = @()
$Cutoff = (Get-Date).AddDays(-7)

Write-Host '[*] Scheduled tasks created/modified in last 7 days...' -ForegroundColor Cyan
$Tasks = Get-ScheduledTask | Where-Object { $_.Date -gt $Cutoff -or ($_.Actions | Out-String) -match 'temp|appdata|powershell.*-enc|certutil|bitsadmin' }
$Report += [pscustomobject]@{ Check='ScheduledTasks'; Result=($Tasks | Select-Object TaskName, TaskPath, Date | Out-String) }

Write-Host '[*] Volume Shadow Copies present?' -ForegroundColor Cyan
$Shadows = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
$Report += [pscustomobject]@{ Check='ShadowCopies'; Result=($(if ($Shadows) { "$($Shadows.Count) shadow copies present - oldest: $(($Shadows | Sort-Object InstallDate | Select-Object -First 1).InstallDate)" } else { 'NONE - investigate possible vssadmin deletion (T1490)' })) }

Write-Host '[*] RDP exposure check...' -ForegroundColor Cyan
$RdpEnabled = (Get-ItemProperty 'HKLM:\System\CurrentControlSet\Control\Terminal Server').fDenyTSConnections -eq 0
$RdpListening = Test-NetConnection -ComputerName localhost -Port 3389 -InformationLevel Quiet -WarningAction SilentlyContinue
$RdpFirewall = (Get-NetFirewallRule -DisplayGroup 'Remote Desktop' -ErrorAction SilentlyContinue | Where-Object Enabled -eq 'True').Count
$Report += [pscustomobject]@{ Check='RDP'; Result="Enabled=$RdpEnabled Listening=$RdpListening FirewallRulesEnabled=$RdpFirewall" }

Write-Host '[*] New local administrator accounts (7d)...' -ForegroundColor Cyan
$NewAdmins = Get-LocalGroupMember -Group 'Administrators' -ErrorAction SilentlyContinue | ForEach-Object {
    $u = Get-LocalUser -Name ($_.Name -split '\\')[-1] -ErrorAction SilentlyContinue
    if ($u -and $u.PasswordLastSet -gt $Cutoff) { $u.Name }
}
$Report += [pscustomobject]@{ Check='NewLocalAdmins'; Result=($(if ($NewAdmins) { $NewAdmins -join ', ' } else { 'None detected' })) }

Write-Host '[*] Suspicious services pointing to user-writable paths...' -ForegroundColor Cyan
$SuspServices = Get-CimInstance Win32_Service | Where-Object { $_.PathName -match 'temp|appdata|programdata|users\\public' }
$Report += [pscustomobject]@{ Check='SuspiciousServices'; Result=($(if ($SuspServices) { ($SuspServices | Select-Object Name, PathName | Out-String) } else { 'None detected' })) }

Write-Host '[*] Recent ScreenConnect / RMM artifacts...' -ForegroundColor Cyan
$Rmm = Get-ChildItem 'HKLM:\SOFTWARE','HKLM:\SOFTWARE\WOW6432Node' -ErrorAction SilentlyContinue | Where-Object { $_.PSChildName -match 'ScreenConnect|AnyDesk|TeamViewer|Splashtop|Atera|ConnectWise' }
$Report += [pscustomobject]@{ Check='RMMArtifacts'; Result=($(if ($Rmm) { ($Rmm.Name -join "`n") } else { 'None detected' })) }

$Report | Format-List
Write-Host '[+] Triage complete. Any shadow-copy absence + new admin + suspicious service combination = escalate to IR immediately.' -ForegroundColor Yellow

Incident Response Priorities (DYSPHOR1A playbook)

T-minus detection checklist — catch it before encryption fires

  1. vssadmin / bcdedit / wbadmin execution anywhere in the fleet — this is the 30-minute warning. Treat as P1.
  2. Unexpected 7z/RAR/rclone processes writing to C:\ProgramData, C:\Users\Public, or staging directories — exfil in progress.
  3. New scheduled tasks or services with random 5–8 character names, especially running as SYSTEM.
  4. ScreenConnect or other RMM clients that your IT team did not deploy — check for rogue RMM (CVE-2024-1708 follow-on).
  5. w3wp.exe spawning cmd/powershell on Exchange servers — active deserialization exploitation.
  6. Kerberoasting / AS-REP roasting spikes (Event 4768/4769 anomalies) and DCSync-style replication requests — domain dominance attempt.
  7. Check Point gateway log gaps or IKE negotiation anomalies — the perimeter device may be the intruder's home base; if gateway logs go quiet, assume compromise.

Critical assets this gang historically prioritizes for exfiltration

  • Payment/transaction databases and PII stores (CitizensPay profile: cardholder data, KYC records)
  • Subscriber data, call detail records, lawful-intercept adjacent systems (MBT Telecom profile)
  • Citizen registries, licensing/permit records, inter-ministry correspondence (RTAD profile)
  • Domain controller ntds.dit, email archives of executive leadership, and anything that maximizes regulatory/reputational pain

Containment actions — ordered by urgency

  1. Isolate, don't power off suspected hosts (preserve memory for forensics; kill network at switch/EDR level).
  2. Disable the suspected ingress path first: take the Check Point gateway / ScreenConnect instance / Exchange server offline or block at the upstream firewall. If the perimeter device is suspect, assume its logs are lying to you.
  3. Force-reset all privileged credentials — domain admins, service accounts, VPN concentrator accounts — in that order. Assume krbtgt is compromised if DCSync indicators exist (reset twice).
  4. Block exfil egress at the proxy/firewall: rclone endpoints, MEGA, unknown cloud storage, raw outbound FTP/SFTP from server VLANs.
  5. Snapshot and preserve edge-device images before patching — Check Point gateways hold the forensic story of CVE-2026-50751 exploitation.
  6. Engage incident response and legal/comms early — with a named leak-site listing, assume the data is already gone; you are now in extortion management, not just malware cleanup.

Hardening Recommendations

Immediate (next 24 hours)

  • Patch or mitigate CVE-2026-50751 on all Check Point Security Gateways — disable IKEv1 where operationally possible as an interim measure. This is the assessed primary entry vector.
  • Patch CVE-2024-1708 (ScreenConnect) and CVE-2023-21529 (Exchange) if internet-facing. If you cannot patch ScreenConnect today, take it off the internet.
  • Deploy the Sigma rules and KQL query above to your SIEM/EDR; alert on any shadow-copy deletion as critical.
  • Audit RMM inventory: enumerate every remote-access tool in the estate; block all unapproved RMM binaries via AppLocker/WDAC.
  • Disable RDP from the internet entirely (or gate behind VPN+MFA); enable account lockout and NLA.
  • Verify backups are offline/immutable and restorable — run one test restore today, not next week.

Short-term (2 weeks)

  • Decommission IKEv1 / legacy VPN configurations; migrate edge access to modern, MFA-enforced ZTNA.
  • Segment server VLANs from user VLANs with default-deny east-west rules; ransomware staging dies in flat networks.
  • Deploy LAPS and tiered admin model — no shared local admin passwords, no Domain Admin logons to workstations.
  • Egress filtering with allow-listing for server subnets; alert on any server-initiated cloud-storage connection.
  • Application control (WDAC/AppLocker) in enforce mode on servers, starting with blocking script engines from Office and archive tools outside IT paths.
  • Tabletop an extortion scenario with legal, comms, and executives — double extortion means "we restored from backup" is not the end of the incident.

Security Arsenal continues to monitor DYSPHOR1A's leak site for wave-two postings. Organizations in Myanmar and Southeast Asia — particularly government, financial, and telecom entities — should operate at elevated posture for the next 14 days.

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.