Intelligence Briefing Date: August 2, 2026
Source: Ransomware.live (Live Dark Web Telemetry)
Threat Actor Profile — GENESIS
The GENESIS group operates as a sophisticated ransomware-as-a-service (RaaS) affiliate model, though recent intelligence suggests a shift towards a tighter knit, closed-group operation to maximize operational security (OpSec). They are notorious for a "double-extortion" strategy, exfiltrating sensitive corporate data before encryption and threatening public release if ransoms are not met.
- Aliases: None confirmed (low-profile branding).
- Ransom Demands: Typically range from $500k to $5M USD, negotiated via encrypted TOX chat.
- Initial Access: Heavily reliant on external perimeter exploitation. They historically target VPN appliances and remote monitoring tools (RMM) rather than phishing.
- Dwell Time: Short. GENESIS affiliates typically move laterally and detonate payloads within 3-5 days of initial access to minimize detection.
Current Campaign Analysis
Based on data retrieved from GENESIS leak sites on 2026-08-02, the group is actively targeting the Technology and Manufacturing sectors in the US and Denmark (DK).
Victimology Breakdown:
- **** (Not Found, US)
- Boyum IT Solutions (Technology, DK) — HIGH VALUE TARGET
- C.A. Walker Construction (Manufacturing, US)
TTP & CVE Correlation: The targeting of Boyum IT Solutions (a IT service provider) suggests a potential supply-chain attack or an attempt to leverage their infrastructure for downstream access. The geographical split (US/DK) indicates a global, opportunistic scanning operation rather than region-specific geopolitical targeting.
Critically, GENESIS activity strongly correlates with the exploitation of the following CISA Known Exploited Vulnerabilities (KEVs) for initial access:
- CVE-2026-50751 (Check Point Security Gateway): The targeting of US manufacturing/construction firms often stems from compromised perimeter VPNs.
- CVE-2024-1708 (ConnectWise ScreenConnect): A vector likely used in the compromise of the Technology sector victim (Boyum IT), allowing remote code execution via the RMM tool.
- CVE-2026-20131 (Cisco Secure Firewall FMC): Indicates active probing of network edge defenses.
Detection Engineering
The following detection rules are prioritized for GENESIS's current campaign, focusing on their preferred entry points (ScreenConnect/VPN) and lateral movement techniques.
---
title: Potential ScreenConnect Authentication Bypass (CVE-2024-1708)
id: 8a5c2f1d-9e3b-4a5c-8b1a-0d2e3f4a5b6c
description: Detects suspicious child processes spawned by ConnectWise Control (ScreenConnect) client, indicative of web shell exploitation or authentication bypass.
author: Security Arsenal Research
date: 2026/08/02
references:
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog
status: experimental
logsource:
category: process_creation
product: windows
detection:
selection:
ParentImage|endswith: '\ConnectWise.Control.Client.exe'
NewProcessName|contains:
- 'powershell.exe'
- 'cmd.exe'
- 'pwsh.exe'
condition: selection
falsepositives:
- Legitimate administrative use by IT support
level: critical
---
title: Check Point VPN Malicious IKEv1 Activity Indicator
id: 7b4a1e0c-8d2a-3b4d-9c0b-1c2d3e4f5a6b
description: Detects potential post-exploitation activity associated with Check Point Security Gateway vulnerabilities. Focuses on unexpected process execution patterns often seen after VPN pivot.
author: Security Arsenal Research
date: 2026/08/02
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- 'snx.exe'
- 'tracert.exe'
ParentImage|contains: 'System'
filter_legit:
CommandLine|contains: 'disconnect'
condition: selection and not filter_legit
falsepositives:
- Standard VPN client usage
level: high
---
title: GENESIS Lateral Movement via PsExec
id: 9c6d3f2e-0e4c-5d6e-1d2c-3e4f5a6b7c8d
description: Detects the use of PsExec for lateral movement, a common tool in the GENESIS playbook for payload deployment.
author: Security Arsenal Research
date: 2026/08/02
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith: '\psexec.exe'
CommandLine|contains:
- '-accepteula'
- '\\\\'
condition: selection
falsepositives:
- System administration activities
level: critical
**KQL (Microsoft Sentinel) — Pre-Encryption Staging Hunt**
Hunt for large-scale data staging (Data Exfil) typically preceding GENESIS encryption.
kql
DeviceFileEvents
| where Timestamp > ago(3d)
| where ActionType == "FileCreated"
| where FileName in~ ("archive.zip", "backup.zip", "data.rar", "exfil.ps1")
| where FileSize > 10000000 // > 10MB
| summarize count(), arg_max(Timestamp, *) by DeviceName, InitiatingProcessAccountName
| project-reorder DeviceName, InitiatingProcessAccountName, FileName, FolderPath, Timestamp
**Rapid Response PowerShell Script**
Execute this script on critical endpoints to identify persistence mechanisms and data staging commonly used by GENESIS.
powershell
<#
Genesis ransomware emergency response script.
Checks for suspicious scheduled tasks and recent VSS shadow copy deletions.
#>
Write-Host "[+] Initiating GENESIS Emergency Check..." -ForegroundColor Cyan
# 1. Check for Scheduled Tasks created in the last 7 days (Persistence)
$suspiciousTasks = Get-ScheduledTask | Where-Object {$_.Date -gt (Get-Date).AddDays(-7)}
if ($suspiciousTasks) {
Write-Host "[!] WARNING: Suspicious Scheduled Tasks found recently:" -ForegroundColor Red
$suspiciousTasks | Select-Object TaskName, Date, Author | Format-Table
} else {
Write-Host "[-] No suspicious recent scheduled tasks found." -ForegroundColor Green
}
# 2. Check for VSSAdmin deletion attempts in Event Logs (Pre-Encryption)
$vssEvents = Get-WinEvent -LogName "Security" -FilterXPath "*[System[(EventID=4688)]] and *[EventData[Data[@Name='NewProcessName']='C:\\Windows\\System32\\vssadmin.exe']]" -ErrorAction SilentlyContinue
if ($vssEvents) {
Write-Host "[!] CRITICAL: vssadmin.exe execution detected (Shadow Copy Deletion):" -ForegroundColor Red
$vssEvents | Select-Object TimeCreated, Message | Format-List
} else {
Write-Host "[-] No vssadmin deletion attempts found in Security logs." -ForegroundColor Green
}
Write-Host "[+] Check complete. Review output." -ForegroundColor Cyan
---
Incident Response Priorities
T-Minus Detection Checklist (Pre-Encryption):
- RMM Logs: Immediate forensic review of ConnectWise ScreenConnect logs for authentication anomalies around 2026-07-30.
- VPN Traffic: Scrutinize Check Point VPN logs for successful IKEv1 handshakes from non-corporate IP ranges.
- LSASS Dumping: Hunt for
procdump.exeorrundll32.exeaccessinglsass.exe(Credential Dumping).
Critical Assets for Exfiltration: GENESIS historically prioritizes ** intellectual property (CAD files, source code)** and HR/Financial databases for leverage. Secure these backups first.
Containment Actions:
- Isolate: Disconnect the victims' VPN concentrators from the LAN immediately.
- Reset: Force-reset passwords for all service accounts exposed to the internet.
- Block: Block all inbound traffic from known TOR exit nodes and infected IPs at the perimeter firewall.
Hardening Recommendations
Immediate (24 Hours):
- Patch Critical CVEs: Apply patches for CVE-2026-50751 (Check Point) and CVE-2024-1708 (ScreenConnect) immediately. If patching is delayed, disable the vulnerable services (e.g., block IKEv1, restrict ScreenConnect to IP allow-lists).
- MFA Enforcement: Enforce phishing-resistant MFA on all VPN and RMM portals.
Short-term (2 Weeks):
- Network Segmentation: Move IT management and RMM tools to a dedicated administrative VLAN, strictly separated from user and production networks.
- EDR Coverage: Ensure 100% coverage on all server infrastructure, specifically focusing on backup servers and domain controllers.
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.