Back to Intelligence

AUDITTEAM Ransomware: 3 New CIS-Region Victims Posted in 24 Hours — Targeting Analysis, Detection Rules & Pre-Encryption Hunt Queries

SA
Security Arsenal Team
September 9, 2026
14 min read

Classification: TLP:AMBER | Briefing Date: 2026-09-09 | Source: ransomware.live — live .onion leak site monitoring | Analyst Desk: Security Arsenal Dark Web Intelligence


Executive Summary

Security Arsenal's dark web collection pipeline has confirmed three new victim postings on AUDITTEAM's .onion leak site within a single 24-hour window (all published 2026-09-08). The victims span Russia (2x) and Ukraine (1x), with one confirmed Technology sector victim in Ukraine and two sector-undisclosed entities in Russia. The tight clustering of publication timestamps indicates either a batch-detonation campaign or a coordinated dump of previously compromised victims escalated to public extortion after failed ransom negotiations.

This burst of activity coincides with a broader trend we track across ransomware ecosystems: mass exploitation of edge security appliances — most notably CVE-2026-50751 (Check Point Security Gateway IKEv1 improper authentication) — as the dominant initial access vector in 2026 campaigns. Enterprise security teams with Check Point gateways, legacy RDP exposure, or unpatched remote access tooling (ConnectWise ScreenConnect) should treat this briefing as an immediate action item.


1. Threat Actor Profile — AUDITTEAM

AttributeAssessment
Group NameAUDITTEAM
Known AliasesNo confirmed aliases on record; name appears designed to mimic legitimate security audit firms (a social engineering pretext consistent with fake 'penetration test report' phishing lures)
Operating ModelAssessed as a closed or semi-closed RaaS — low posting volume (3 victims per last-100 crawl window) suggests a small operator set or selective affiliate model rather than high-churn open RaaS
Ransom DemandsMid-market tier: estimated low-to-mid six figures (USD, Monero/BTC) consistent with SME victimology; no public evidence of seven-figure enterprise demands
Initial AccessEdge appliance exploitation (VPN gateways), exposed RDP brute force, phishing with macro/JavaScript loaders, RMM tool abuse (ScreenConnect-class tooling), possible purchased access from IABs
Extortion ModelDouble extortion — leak site publication confirms data theft precedes/alongside encryption; victims named with partial redaction (buen, WiIT, pa***op) — a pressure tactic standard across leak-site operations
Dwell TimeEstimated 5–21 days between initial access and detonation based on comparable mid-tier groups; the synchronized 2026-09-08 posting batch suggests staged detonation rather than smash-and-grab
Victim Naming ConventionPartial masking of victim names on the leak site — consistent with active negotiation pressure (full unmasking typically follows payment refusal)

Analyst Note: The 'AUDITTEAM' branding itself is a tradecraft indicator. Groups that name themselves after legitimate security functions frequently use that cover identity in phishing pretexts ('third-party security audit findings for your organization') to drive macro execution and credential harvesting. Treat any inbound 'security audit report' attachments from unknown senders as hostile.


2. Current Campaign Analysis

Victimology (Observed 2026-09-08)

Victim (Masked)SectorCountryPublished
bu***enNot disclosedRU2026-09-08
Wi***ITTechnologyUA2026-09-08
pa***opNot disclosedRU2026-09-08

Sector Targeting

  • Technology sector confirmed (UA victim 'Wi***IT' — naming pattern suggests an IT services/MSP-adjacent firm). Technology and IT services victims are high-value pivot points: compromising one MSP-style entity yields downstream access to its client base. If your organization consumes services from Ukrainian or Russian IT providers, assume elevated third-party risk this quarter.
  • Two victims with undisclosed sectors in RU — typical of smaller regional firms (manufacturing, logistics, professional services) that lack public sector classification.

Geographic Concentration

  • 100% CIS-region concentration (RU x2, UA x1). This is notable: most major RaaS operations explicitly prohibit CIS targeting under the informal 'post-Soviet safe harbor' norm. AUDITTEAM's willingness to operate against RU/UA victims indicates either (a) a non-CIS-based crew without safe-harbor constraints, (b) an operation indifferent to regional criminal norms, or (c) opportunistic access-driven victimology (buying whatever access IABs offer).

Victim Profile

  • Based on leak-site presentation and sector mix, assessed small-to-mid-market victims (est. 50–500 employees, revenue likely $5M–$150M USD equivalent). Mid-tier groups avoid both micro-businesses (can't pay) and hardened enterprises (detection risk).

Posting Frequency / Escalation

  • 3 postings in a single day against a baseline of 3 victims across the last-100-posting observation window = a sharp activity spike. Two interpretations: (1) new campaign wave just reached the extortion phase — expect more postings in the next 7–14 days; (2) negotiation-failure batch dump. Either way, the operation is active right now.

CVE Nexus — Probable Initial Access Vectors

The following CISA KEV entries (confirmed ransomware exploitation) map directly to AUDITTEAM's assessed access tradecraft:

CVEProductRelevance to This Campaign
CVE-2026-50751Check Point Security Gateway (IKEv1 improper auth)Primary suspect. Edge gateway auth bypass = direct network foothold; added to KEV 2026-06-08, aligning with a ~90-day access-to-extortion pipeline for September postings
CVE-2024-1708ConnectWise ScreenConnect (path traversal → RCE)RMM abuse is the #1 tool for mid-tier crew persistence + lateral movement; patch status is an immediate audit item
CVE-2025-60710Microsoft Windows link following (privesc)Post-compromise privilege escalation enabler
CVE-2023-21529Exchange Server deserialization (RCE)Authenticated RCE for mailbox-dwelling data theft and internal pivoting
CVE-2026-48027Nx Console (embedded malicious code)Supply-chain vector — developer workstations in Technology sector victims; highly relevant given the confirmed UA tech victim

Assessment: The combination of edge-VPN auth bypass (Check Point), RMM exploitation (ScreenConnect), and developer-tool supply chain compromise (Nx Console) forms a coherent initial-access toolchain for exactly the victim profile observed: mid-market technology and services firms in the CIS region.


3. Detection Engineering

3.1 Sigma Rules

The following rules target the specific TTP chain associated with this campaign: edge-VPN auth anomalies, macro/script execution from phishing lures, RDP brute force, PsExec/WMI lateral movement, RMM tool staging, and pre-encryption data staging.

YAML
---
title: AUDITTEAM Campaign - Check Point VPN Anomalous IKEv1 Authentication Followed by Internal Lateral Activity
id: 9f2a1c4e-6b7d-4a01-9c3e-aud1tteam001
status: experimental
description: Detects suspicious IKEv1 authentication anomalies on Check Point gateways (CVE-2026-50751 exploitation pattern) followed by new admin session establishment. Alert when auth succeeds from non-whitelisted source geographies or atypical hours.
author: Security Arsenal Threat Intelligence
date: 2026/09/09
references:
  - https://securityarsenal.com/darkside
logsource:
  category: firewall
  product: checkpoint
detection:
  selection_auth:
    action: 'accept'
    protocol: 'IKEv1'
  filter_geo:
    src_country|contains:
      - 'RU'
      - 'UA'
      - 'NL'
      - 'DE'
  condition: selection_auth and filter_geo
falsepositives:
  - Legitimate remote workforce VPN from listed regions
level: high
tags:
  - attack.initial_access
  - attack.t1190
  - cve.2026.50751
---
title: AUDITTEAM Campaign - Phishing Macro or Script Execution from Office and Audit-Themed Lures
id: 9f2a1c4e-6b7d-4a01-9c3e-aud1tteam002
status: experimental
description: Detects Office applications spawning script interpreters or RMM installers — consistent with fake 'security audit report' phishing pretexts used by audit-branded crews. Also catches Nx Console malicious package execution on developer workstations (CVE-2026-48027).
author: Security Arsenal Threat Intelligence
date: 2026/09/09
references:
  - https://securityarsenal.com/darkside
logsource:
  category: process_creation
  product: windows
detection:
  selection_parent:
    ParentImage|endswith:
      - '\winword.exe'
      - '\excel.exe'
      - '\outlook.exe'
      - '\node.exe'
      - '\code.exe'
  selection_child:
    Image|endswith:
      - '\powershell.exe'
      - '\pwsh.exe'
      - '\wscript.exe'
      - '\cscript.exe'
      - '\mshta.exe'
      - '\rundll32.exe'
      - '\screenconnect.exe'
      - '\msiexec.exe'
  condition: selection_parent and selection_child
falsepositives:
  - Developer workflows legitimately invoking node/npm from IDE
  - IT-deployed RMM via scripted installers
level: high
tags:
  - attack.execution
  - attack.t1059
  - attack.t1204
  - attack.t1219
---
title: AUDITTEAM Campaign - Pre-Encryption Staging - Shadow Copy Deletion, Mass Compression, and PsExec/WMI Lateral Movement
id: 9f2a1c4e-6b7d-4a01-9c3e-aud1tteam003
status: experimental
description: Detects the classic pre-detonation ransomware sequence — Volume Shadow Copy deletion, mass 7z/rar compression of sensitive directories, and PsExec/WMI service creation for lateral spread. High-confidence pre-encryption tripwire.
author: Security Arsenal Threat Intelligence
date: 2026/09/09
references:
  - https://securityarsenal.com/darkside
logsource:
  category: process_creation
  product: windows
detection:
  selection_vss:
    CommandLine|contains:
      - 'vssadmin delete shadows'
      - 'vssadmin Delete Shadows'
      - 'wmic shadowcopy delete'
      - 'bcdedit /set {default} recoveryenabled no'
  selection_compress:
    Image|endswith:
      - '\7z.exe'
      - '\rar.exe'
    CommandLine|contains:
      - ' a '
      - '-mx'
  selection_lateral:
    Image|endswith:
      - '\psexec.exe'
      - '\psexesvc.exe'
      - '\wmic.exe'
    CommandLine|contains:
      - '\\'
  condition: 1 of selection_*
falsepositives:
  - Backup administrators running legitimate shadow copy maintenance
  - Software packaging teams using 7z/rar
level: critical
tags:
  - attack.impact
  - attack.t1490
  - attack.t1560
  - attack.t1021.002
  - attack.t1047

3.2 KQL — Microsoft Sentinel Hunt Query

Hunt for the pre-ransomware staging sequence: new service installation (PsExec-style lateral movement), RMM tool presence, and bulk file compression within a rolling 7-day window.

KQL — Microsoft Sentinel / Defender
// AUDITTEAM Pre-Detonation Hunt — Lateral Movement + Staging Correlation
// Looks for: suspicious service installs, RMM binaries, mass compression, shadow copy tampering
let lookback = 7d;
let SuspiciousServices =
    DeviceEvents
    | where TimeGenerated > ago(lookback)
    | where ActionType == "ServiceInstalled"
    | extend ServiceName = tostring(AdditionalFields.ServiceName)
    | where ServiceName has_any ("PSEXESVC", "ScreenConnect", "PAExec", "rclone", "AnyDesk")
    | project ServiceTime=TimeGenerated, DeviceName, ServiceName, InitiatingProcessFileName;
let ShadowCopyTamper =
    DeviceProcessEvents
    | where TimeGenerated > ago(lookback)
    | where ProcessCommandLine has_any ("vssadmin delete shadows", "shadowcopy delete", "recoveryenabled no")
    | project VssTime=TimeGenerated, DeviceName, VssCmd=ProcessCommandLine;
let MassCompression =
    DeviceProcessEvents
    | where TimeGenerated > ago(lookback)
    | where FileName in~ ("7z.exe", "rar.exe", "winrar.exe")
    | summarize CompressCount=count(), Folders=make_set(FolderPath) by DeviceName, bin(TimeGenerated, 1h)
    | where CompressCount > 10;
SuspiciousServices
| join kind=inner (ShadowCopyTamper) on DeviceName
| join kind=leftouter (MassCompression) on DeviceName
| project DeviceName, ServiceName, InitiatingProcessFileName, VssCmd, CompressCount, ServiceTime, VssTime
| order by ServiceTime desc;

Tuning guidance: The join correlation is the point — a single PSEXESVC install is noise; PsExec + shadow copy deletion + mass 7z activity on the same host inside 7 days is a ransomware countdown timer. Escalate any multi-signal hit to P1 immediately.

3.3 PowerShell — Rapid-Response Exposure & Staging Audit

Run domain-wide (or via your EDR remote shell) to check the three highest-priority exposure/staging indicators for this campaign.

PowerShell
# AUDITTEAM Rapid Triage Script — Security Arsenal IR
# Checks: (1) exposed RDP, (2) scheduled tasks created in last 7 days, (3) shadow copy integrity, (4) RMM tooling presence
# Run as Administrator. Safe/read-only.

Write-Host "=== AUDITTEAM Rapid Triage — $(Get-Date -Format 'yyyy-MM-dd HH:mm') ===" -ForegroundColor Cyan

# 1. RDP Exposure Check
$rdp = Get-ItemProperty 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -Name fDenyTSConnections -ErrorAction SilentlyContinue
$nla = Get-ItemProperty 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -Name UserAuthentication -ErrorAction SilentlyContinue
if ($rdp.fDenyTSConnections -eq 0) {
    Write-Host "[!] RDP ENABLED. NLA status: $(if($nla.UserAuthentication -eq 1){'ON (good)'}else{'OFF — CRITICAL RISK'})" -ForegroundColor Red
    Get-NetTCPConnection -LocalPort 3389 -State Listen -ErrorAction SilentlyContinue | Select-Object LocalAddress, LocalPort | Format-Table
} else { Write-Host "[+] RDP disabled." -ForegroundColor Green }

# 2. Scheduled Tasks Created in Last 7 Days (persistence check)
Write-Host "`n=== Scheduled Tasks Created in Last 7 Days ===" -ForegroundColor Cyan
Get-ScheduledTask | Where-Object { $_.Date -and ([datetime]$_.Date) -gt (Get-Date).AddDays(-7) } |
    Select-Object TaskName, TaskPath, Date, @{N='Action';E={$_.Actions.Execute}} | Format-Table -AutoSize

# 3. Volume Shadow Copy Integrity
Write-Host "`n=== Volume Shadow Copies ===" -ForegroundColor Cyan
$vss = Get-CimInstance Win32_ShadowCopy -ErrorAction SilentlyContinue
if (-not $vss) { Write-Host "[!] NO SHADOW COPIES FOUND — possible pre-encryption deletion (T1490)!" -ForegroundColor Red }
else { $vss | Select-Object DeviceObject, InstallDate, VolumeName | Format-Table }

# 4. Unauthorized RMM Tool Sweep (ScreenConnect / AnyDesk / rclone staging)
Write-Host "`n=== RMM / Exfil Tool Sweep ===" -ForegroundColor Cyan
$rmmPaths = @("$env:ProgramFiles\ScreenConnect*", "${env:ProgramFiles(x86)}\ScreenConnect*", "$env:ProgramData\AnyDesk", "$env:LOCALAPPDATA\rclone")
foreach ($p in $rmmPaths) { if (Test-Path $p) { Write-Host "[!] Found: $p — verify this is an authorized IT tool" -ForegroundColor Yellow } }
Get-Process | Where-Object { $_.Name -match 'screenconnect|anydesk|rclone|psexesvc' } | Select-Object Name, Id, Path | Format-Table

Write-Host "`n=== Triage Complete. Escalate any [!] findings to IR immediately. ===" -ForegroundColor Cyan

4. Incident Response Priorities

T-Minus Detection Checklist (Before Encryption Fires)

If you see these, you are inside the dwell window — act within hours, not days:

  1. New unauthorized admin accounts created outside change control, especially named to mimic service accounts (svc_backup, audit_svc).
  2. PsExec/PSEXESVC or WMI process/service creation on hosts that never legitimately use them (workstations, DMZ servers).
  3. vssadmin / bcdedit execution on any server — near-zero legitimate use outside backup maintenance windows.
  4. Mass 7z/rar compression of shares, HR directories, finance folders, or source code repos.
  5. RMM tooling (ScreenConnect, AnyDesk, rclone) present without an IT deployment record.
  6. Anomalous IKEv1 VPN sessions on Check Point gateways from unexpected geographies or outside business hours.
  7. Exchange IIS worker process (w3wp.exe) spawning cmd/powershell — classic post-deserialization exploitation behavior (CVE-2023-21529 pattern).

Critical Assets This Campaign Profile Prioritizes for Exfiltration

  • Finance/HR datastores — payroll, contracts, banking details (highest extortion leverage per byte).
  • Source code repositories & build pipelines — for Technology victims (and consistent with Nx Console supply-chain interest), IP theft and downstream-pivot value are the objective.
  • Client/project data of IT services firms — an MSP-style victim's client data multiplies extortion pressure across multiple downstream organizations.
  • Email archives (Exchange) — negotiation intelligence and executive correspondence.

Containment Actions — Ordered by Urgency

  1. (0–1h) Isolate the suspected staging host(s) from the network via EDR containment; do NOT power off (preserve memory for forensics).
  2. (0–1h) Force-reset credentials for all accounts observed in lateral movement telemetry; revoke VPN sessions and Check Point gateway admin sessions globally.
  3. (1–4h) Block PsExec/WMI remote execution domain-wide via AppLocker/WDAC emergency policy; disable inbound RDP at the perimeter.
  4. (1–4h) Snapshot/backup critical servers to offline storage immediately — if detonation is imminent, every clean backup hour matters.
  5. (4–24h) Hunt enterprise-wide with the KQL query above; sweep all endpoints for RMM tooling; audit scheduled tasks and new services created in the last 14 days.
  6. (24h+) Engage professional IR before any negotiation decision; check your leak-site exposure via continuous dark web monitoring.

5. Hardening Recommendations

Immediate (24 Hours)

  • Patch Check Point Security Gateway for CVE-2026-50751 now. If patching is not possible within 24h, disable IKEv1 in favor of IKEv2 and restrict VPN source geographies via ACL. This is the single highest-probability initial access vector in this campaign.
  • Audit and patch ConnectWise ScreenConnect (CVE-2024-1708) — then sweep for unauthorized RMM instances. If you don't formally deploy ScreenConnect, any instance is malicious by definition.
  • Disable Office macro execution from internet-sourced files (Mark-of-the-Web blocking) and alert on Office → script-interpreter child processes (Sigma rule 2 above).
  • Enforce NLA on RDP and move RDP behind VPN/ZTNA — never direct internet exposure.
  • Deploy the three Sigma rules from Section 3.1 to your SIEM today.

Short-Term (2 Weeks)

  • Edge architecture review: VPN concentrators and security gateways are 2026's #1 ransomware entry point. Migrate remote access to ZTNA with device-posture checks; put gateway management interfaces behind a dedicated management network with no inbound internet path.
  • Developer supply-chain controls (CVE-2026-48027 lesson): pin package versions, enforce private registry proxies with integrity verification (Sigstore/in-toto), and EDR-monitor developer workstations at the same severity tier as servers — Technology sector targeting makes dev endpoints a first-class attack surface.
  • Tiered backup architecture: immutable/offline backups with a documented restore RTO; alert on any shadow copy deletion as a critical event, not an informational one.
  • Lateral movement segmentation: block workstation-to-workstation SMB/RPC, deploy honeypot admin credentials, and constrain service account logon scopes.
  • Continuous dark web monitoring: subscribe to leak-site monitoring so your organization learns of a posting within hours — the window between 'data stolen' and 'name published on .onion' is your last chance to control the narrative and activate legal/comms before customers find out from criminals.

Analyst Bottom Line

AUDITTEAM is a low-volume but currently active double-extortion operation with a distinctive CIS-region targeting posture and a tradecraft stack built on edge-VPN exploitation, RMM abuse, and developer supply-chain compromise. The three synchronized 2026-09-08 postings strongly suggest a campaign wave in its extortion phase — meaning the access and staging for the next batch of victims likely happened weeks ago and may be sitting dormant in unpatched Check Point and ScreenConnect estates right now. Patch the edge, hunt the staging signals, and assume your name is one negotiation failure away from a leak site.


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.

AUDITTEAM Ransomware: 3 New CIS-Region Victims Posted in 24 Hours — Targeting Analysis, Detection Rules & Pre-Encryption Hunt Queries | Security Arsenal | Security Arsenal