Back to Intelligence

KRYBIT Ransomware: 5 Victims Posted in 48 Hours — Cross-Regional Campaign Hits Healthcare & Professional Services, Detection Rules Inside

SA
Security Arsenal Team
August 13, 2026
10 min read

Classification: TLP:CLEAR | Report Date: 2026-08-14 | Source: ransomware.live dark web leak site monitoring | Confidence: Moderate (victim data confirmed via leak site; attribution of access vectors is assessed, not confirmed)


1. Threat Actor Profile — KRYBIT

KRYBIT is a low-volume ransomware operation that surfaced on leak-site monitoring infrastructure in 2026. Intelligence maturity on this group is limited — the profile below reflects confirmed leak-site behavior plus assessed characteristics typical of comparable mid-tier crews. Analysts should treat unconfirmed elements as hypotheses, not established TTPs.

AttributeAssessmentConfidence
AliasesNone confirmed; no established rebrand lineageLow
Operating modelAssumed RaaS or affiliate-driven — victim spread across 5 countries in 48 hours suggests distributed affiliates rather than a single intrusion teamModerate
Extortion modelDouble extortion (data leak site publication confirmed)High
Ransom demandsNot publicly documented; groups of this profile typically demand $150K–$1.5M scaled to victim revenueLow
Initial access (assessed)Edge device exploitation (VPN/firewall CVEs), exposed RDP, RMM tooling abuse, phishingModerate
Dwell timeUnconfirmed; comparable crews average 5–14 days from access to encryptionLow

The victim cadence — five organizations posted within a 48-hour window across four regions — is the strongest indicator of an affiliate model: a single closed team rarely sustains simultaneous intrusions in Taiwan, India, Singapore, Finland, and Argentina.


2. Current Campaign Analysis

Victimology (last 100 postings: 5 total)

VictimSectorCountryPosted
hisstw.comNot FoundTW2026-08-12
labindia.comHealthcareIN2026-08-12
lhyk.com.sgOtherSG2026-08-12
www.kilpi-koskinen.fiOtherFI2026-08-11
www.apsanet.com.arProfessional ServicesAR2026-08-11

Sector targeting: No exclusive vertical focus. Healthcare (a clinical laboratory in India) is the highest-sensitivity victim — healthcare data commands premium extortion leverage due to regulatory exposure and patient safety pressure. Professional services (Argentina) is consistent with the classic "data-rich, security-poor" mid-market profile.

Geographic concentration: Deliberately dispersed — no single-country concentration. This pattern correlates with opportunistic access-broker purchases rather than strategic targeting, and it complicates regional threat-sharing because victims rarely overlap with the same national CERT constituency.

Victim profile: Small-to-midsize organizations (assessed 50–500 employees, $5M–$100M revenue based on sector and web footprint). These are enterprises large enough to pay but unlikely to maintain 24/7 SOC coverage — the sweet spot for mid-tier ransomware crews.

Posting cadence: 3 victims on 2026-08-12, 2 on 2026-08-11. Batch-posting within 48 hours suggests either a coordinated "dump" after failed negotiations or an affiliate clearing a backlog. Watch for a follow-on wave within 7–14 days.

Initial Access Vector Assessment — CISA KEV Correlation

The following actively exploited CVEs (confirmed ransomware use per CISA KEV) represent the most probable access paths for a crew of this profile. No direct forensic link to KRYBIT is confirmed — correlation is based on tool availability, exploitation timeline, and victim geography:

  • CVE-2026-50751 — Check Point Security Gateway improper authentication (IKEv1). Edge VPN auth bypass is the single highest-probability vector for cross-regional SMB intrusion. Any org running Check Point gateways with IKEv1 enabled should assume targeting.
  • CVE-2024-1708 — ConnectWise ScreenConnect path traversal. RMM exploitation remains the workhorse for MSP-adjacent intrusions; professional services and healthcare victims frequently inherit exposure through outsourced IT.
  • CVE-2026-20131 — Cisco FMC/SCC deserialization. Firewall management plane compromise enables both access and detection evasion.
  • CVE-2023-21529 — Microsoft Exchange deserialization. Authenticated Exchange RCE; relevant where on-prem Exchange remains exposed.
  • CVE-2026-48027 — Nx Console embedded malicious code. Supply-chain vector; lower probability for this victim set but relevant for dev-heavy professional services firms.

Priority action: If you operate Check Point gateways, ScreenConnect servers, or Cisco FMC, treat patching these CVEs as a 24-hour emergency change, not a routine cycle.


3. Detection Engineering

The following detections target the TTP chain assessed for KRYBIT-profile intrusions: edge/RMM exploitation → lateral movement via PsExec/WMI → data staging → shadow copy deletion → encryption.

YAML
---
title: Suspicious RMM Tool Execution Outside Approved Path
id: 8f3a2c11-kryb-4a01-9d2e-001
status: experimental
description: Detects execution of remote access tooling (ScreenConnect, AnyDesk, etc.) from non-standard directories — consistent with RMM abuse following edge exploitation in ransomware intrusions.
author: Security Arsenal Threat Intel
date: 2026/08/14
logsource:
  category: process_creation
  product: windows
detection:
  selection_img:
    Image|endswith:
      - '\ScreenConnect.ClientService.exe'
      - '\ScreenConnect.Service.exe'
      - '\AnyDesk.exe'
      - '\AteraAgent.exe'
      - '\SplashtopStreamer.exe'
  filter_approved:
    Image|startswith:
      - 'C:\Program Files\ScreenConnect'
      - 'C:\Program Files (x86)\ScreenConnect'
      - 'C:\Program Files\AnyDesk'
  condition: selection_img and not filter_approved
fields:
  - Image
  - CommandLine
  - ParentImage
  - User
falsepositives:
  - Portable RMM tools deployed by IT from temp directories
level: high
tags:
  - attack.t1219
  - attack.t1133
---
title: PsExec-Style Remote Service Creation via ADMIN Share
id: 8f3a2c12-kryb-4b02-9d2e-002
status: experimental
description: Detects service creation events paired with ADMIN$ share writes — classic PsExec/Impacket lateral movement pattern used by ransomware affiliates prior to mass encryption.
author: Security Arsenal Threat Intel
date: 2026/08/14
logsource:
  product: windows
  service: system
detection:
  selection_event:
    EventID: 7045
  selection_suspicious:
    ServiceFileName|contains:
      - 'ADMIN$'
      - '\Temp\'
      - '\AppData\'
      - 'PSEXESVC'
      - 'paexec'
      - 'csexec'
  condition: all of selection_*
fields:
  - ServiceName
  - ServiceFileName
  - AccountName
falsepositives:
  - Legitimate software deployment via SCCM/PDQ (tune ServiceFileName allowlist)
level: high
tags:
  - attack.t1569.002
  - attack.t1021.002
---
title: Volume Shadow Copy Deletion Pre-Ransomware Staging
id: 8f3a2c13-kryb-4c03-9d2e-003
status: experimental
description: Detects vssadmin/wmic/diskshadow shadow copy deletion — near-universal pre-encryption behavior across ransomware families including KRYBIT-profile operations.
author: Security Arsenal Threat Intel
date: 2026/08/14
logsource:
  category: process_creation
  product: windows
detection:
  selection_vss:
    Image|endswith:
      - '\vssadmin.exe'
      - '\wmic.exe'
      - '\diskshadow.exe'
      - '\bcdedit.exe'
  selection_cmd:
    CommandLine|contains:
      - 'delete shadows'
      - 'shadowcopy delete'
      - 'shadowcopy where'
      - 'recoveryenabled no'
      - 'bootstatuspolicy ignoreallfailures'
  condition: all of selection_*
fields:
  - Image
  - CommandLine
  - ParentImage
  - User
falsepositives:
  - Backup maintenance scripts (rare; investigate anyway)
level: critical
tags:
  - attack.t1490
  - attack.t1059
KQL — Microsoft Sentinel / Defender
// Sentinel hunt: pre-ransomware lateral movement & staging chain
// Looks for the sequence: suspicious service install -> network share writes -> vss abuse, per host, 24h window
let Lookback = 7d;
let ServiceInstalls = SecurityEvent
| where TimeGenerated > ago(Lookback)
| where EventID == 7045
| where ServiceFileName has_any ("ADMIN$", "\\Temp\\", "\\AppData\\", "PSEXESVC", "paexec")
| project ServiceTime=TimeGenerated, Computer, Account, ServiceName, ServiceFileName;
let ShareAccess = SecurityEvent
| where TimeGenerated > ago(Lookback)
| where EventID == 5145
| where ShareName has_any ("\\ADMIN$", "\\C$")
| where not(SubjectAccount has "$")
| summarize ShareWrites=count(), DistinctTargets=dcount(IpAddress) by SubjectAccount, Computer
| where DistinctTargets > 3;
let VssAbuse = DeviceProcessEvents
| where TimeGenerated > ago(Lookback)
| where FileName in~ ("vssadmin.exe", "wmic.exe", "bcdedit.exe", "diskshadow.exe")
| where ProcessCommandLine has_any ("delete shadows", "shadowcopy", "recoveryenabled", "bootstatuspolicy")
| project VssTime=TimeGenerated, DeviceName, InitiatingProcessAccountName, ProcessCommandLine;
ServiceInstalls
| join kind=inner (VssAbuse) on $left.Computer == $right.DeviceName
| where VssTime > ServiceTime and datetime_diff("minute", VssTime, ServiceTime) < 1440
| project Computer, Account, ServiceName, ServiceFileName, ServiceTime, ProcessCommandLine, VssTime
| join kind=leftouter (ShareAccess) on $left.Computer == $right.Computer
| order by ServiceTime asc;
PowerShell
# Rapid triage: pre-ransomware indicators on a suspect host
# Run as Administrator. Checks shadow copies, recent scheduled tasks, new services, and RDP exposure.
Write-Host "=== [1] Volume Shadow Copies ===" -ForegroundColor Cyan
$shadows = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
if ($shadows) { $shadows | Select-Object DeviceObject, InstallDate | Format-Table }
else { Write-Host "WARNING: No shadow copies found — possible pre-encryption cleanup (T1490)" -ForegroundColor Red }

Write-Host "=== [2] Scheduled Tasks Created/Modified in Last 7 Days ===" -ForegroundColor Cyan
Get-ScheduledTask | ForEach-Object {
    $info = $_ | Get-ScheduledTaskInfo -ErrorAction SilentlyContinue
    [PSCustomObject]@{ TaskName=$_.TaskName; Path=$_.TaskPath; LastRun=$info.LastRunTime; State=$_.State }
} | Where-Object { $_.Path -notlike '\Microsoft*' } | Sort-Object LastRun -Descending | Format-Table

Write-Host "=== [3] Services Installed in Last 7 Days ===" -ForegroundColor Cyan
Get-WinEvent -FilterHashtable @{LogName='System'; Id=7045; StartTime=(Get-Date).AddDays(-7)} -ErrorAction SilentlyContinue |
    Select-Object TimeCreated, Message | Format-List

Write-Host "=== [4] RDP Exposure ===" -ForegroundColor Cyan
$rdp = Get-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server' -Name fDenyTSConnections
Write-Host "RDP Enabled (0=enabled): $($rdp.fDenyTSConnections)"
Get-NetTCPConnection -LocalPort 3389 -State Listen -ErrorAction SilentlyContinue | Format-Table
Get-NetFirewallRule -DisplayGroup "Remote Desktop" -ErrorAction SilentlyContinue |
    Where-Object Enabled -eq 'True' | Select-Object DisplayName, Profile, Action | Format-Table

Write-Host "=== [5] Recent 4625 Logon Failures (brute force check, last 24h) ===" -ForegroundColor Cyan
$fails = Get-WinEvent -FilterHashtable @{LogName='Security'; Id=4625; StartTime=(Get-Date).AddDays(-1)} -ErrorAction SilentlyContinue
if ($fails.Count -gt 100) { Write-Host "ALERT: $($fails.Count) failed logons in 24h — possible brute force" -ForegroundColor Red }
else { Write-Host "Failed logons (24h): $($fails.Count)" }

4. Incident Response Priorities — KRYBIT Playbook

T-Minus Detection Checklist (before encryption fires)

  1. Edge device auth anomalies — VPN logins from impossible-travel geographies or new devices within 7 days of suspected exposure (correlates with CVE-2026-50751 abuse).
  2. RMM processes spawning from %TEMP% or user profile paths — affiliate tradecraft signature.
  3. New local admin accounts or Domain Admin additions outside change windows.
  4. netstat/AD recon bursts: nltest /dclist, net group "Domain Admins" /domain, BloodHoundSharp binaries on disk.
  5. Bulk file staging: large ZIP/RAR creation in C:\ProgramData or C:\Users\Public; outbound spikes to MEGA, Rclone-configured cloud storage, or unknown VPS IPs.
  6. vssadmin/bcdedit execution anywhere in the fleet — treat as imminent detonation; isolate the host immediately.

Assets This Profile Prioritizes for Exfiltration

  • Healthcare victims: patient records, lab results, insurance/PII databases — maximum regulatory leverage.
  • Professional services: client contracts, financial records, attorney/accountant privileged files.
  • All victims: domain controller NTDS.dit, backup catalogs, and anything revealing cyber-insurance policy limits (used to calibrate ransom demands).

Containment — Ordered by Urgency

  1. Isolate, don't power off — network-quarantine affected hosts to preserve volatile evidence while severing C2.
  2. Kill edge access — force-reset all VPN/RMM credentials; disable IKEv1 on Check Point gateways until patched; pull ScreenConnect servers offline if unpatched.
  3. Disable suspect service accounts and revoke sessions/tokens (assume Golden Ticket–capable access if DC was touched).
  4. Block exfil egress — emergency deny rules for known file-sharing destinations and newly observed outbound IPs.
  5. Protect backups — take backup infrastructure off-domain, verify offline/immutable copies before any restore decision.
  6. Engage IR retainer and legal/comms early — double-extortion means the leak clock runs even after encryption is contained.

5. Hardening Recommendations

Immediate (24 hours)

  • Patch emergency-tier KEV items: CVE-2026-50751 (Check Point), CVE-2026-20131 (Cisco FMC), CVE-2024-1708 (ScreenConnect), CVE-2023-21529 (Exchange). If patching is impossible, take the service offline.
  • Disable IKEv1 on Check Point gateways if unused; enforce certificate-based auth where required.
  • Audit RMM tooling — inventory every remote access binary in the fleet; block unapproved RMM via AppLocker/WDAC using the Sigma logic above.
  • Enforce MFA on all remote access including legacy VPN concentrators; disable RDP from the internet entirely.
  • Enable tamper protection and block vssadmin/bcdedit for non-admin contexts via WDAC or endpoint policy.

Short-Term (2 weeks)

  • Segment backup infrastructure onto isolated networks with immutable/offline copies (3-2-1-1-0).
  • Deploy the Sigma and KQL detections in Section 3 into production SIEM/EDR pipelines with high-priority alerting.
  • Identity hardening: tiered admin model, gMSA for service accounts, disable NTLMv1, alert on DCSync-style replication requests from non-DC hosts.
  • Egress filtering with default-deny for uncommon cloud storage and file-sharing destinations; TLS inspection where legally permissible.
  • Tabletop a double-extortion scenario involving healthcare/PII data — decision trees for leak negotiation, regulator notification, and patient/customer comms must exist before the incident, not during it.

Assessment caveat: KRYBIT is a newly tracked, low-volume operation. Victim data is confirmed from leak-site monitoring; TTP attribution is assessed from campaign patterning and KEV correlation and will be updated as forensic reporting emerges. Security teams should weight detection coverage toward the access vectors above regardless of final attribution.

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.