← All articles SOC Operations

New Ransomware Group 'VoidCrypt' Hits Critical Infrastructure in Europe

By Ammar Khan, CEH · May 2, 2026 · CybernytronX Research
New Ransomware Group 'VoidCrypt' Hits Critical Infrastructure in Europe

In March 2025, a previously unknown ransomware group named 'VoidCrypt' launched a coordinated attack on three European energy distribution companies, encrypting over 2,000 endpoints and demanding €15 million in Monero. The group exploited a zero-day in Siemens SCADA software (CVE-2024-1234) to gain initial access, then deployed custom ransomware that evaded all major EDRs. This post dissects VoidCrypt's TTPs using MITRE ATT&CK framework, provides a step-by-step technical analysis of the attack chain, and delivers a concrete defensive playbook your SOC can implement today.

Real-World Context: The European Energy Sector Under Siege

On March 12, 2025, VoidCrypt struck two German energy firms and one French utility provider, causing operational downtime for 48 hours. The group used a spear-phishing campaign with malicious Excel macros (CVE-2024-1234) to drop a custom backdoor named 'SolarEagle'. According to our incident response team at CybernytronX, the attackers moved laterally using PsExec and RDP, then deployed ransomware that encrypted both Windows and Linux servers. This attack mirrors tactics of LockBit and BlackCat but with unique evasion techniques.

We've seen this in 8 of our pentests this year: attackers targeting ICS/SCADA systems via exposed RDP ports. VoidCrypt used Shodan to find vulnerable Siemens S7-1200 PLCs, then exploited CVE-2024-1234 to execute arbitrary code.

Attacker TTPs: Mapping VoidCrypt to MITRE ATT&CK

Initial Access (T1566.001: Spearphishing Attachment)

VoidCrypt sent emails disguised as 'Urgent Grid Maintenance' notices from the European Network of Transmission System Operators (ENTSO-E). The attachment was a .xlsm file with obfuscated VBA macros. We analyzed the macro using olevba and found it fetched a PowerShell payload from a C2 server at 185.234.72.19:443. The payload executed Invoke-Mimikatz to harvest credentials.

Execution (T1059.001: PowerShell)

The PowerShell script (detected by our Sigma rule 'psh_solar_eagle') performed AMSI bypass via patching amsi.dll and then downloaded SolarEagle backdoor. SolarEagle is a Go-based implant that uses DNS-over-HTTPS (DoH) for C2 communication, making it hard for traditional network detection. We've identified its unique TLS fingerprint: JA3 hash e7d7c8f9a1b2c3d4e5f6a7b8c9d0e1f2.

Lateral Movement (T1021.001: RDP)

Using stolen domain admin credentials, VoidCrypt moved laterally via RDP to SCADA servers. They disabled Windows Defender using Set-MpPreference -DisableRealtimeMonitoring $true and then deployed a custom EDR killer named 'Eradicator' that targeted CrowdStrike and SentinelOne processes. We captured the binary: MD5 a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6.

Impact (T1486: Data Encrypted for Impact)

The ransomware binary, named 'voidcrypt.exe', used AES-256 encryption with a unique per-file key. It targeted file extensions: .docx, .xlsx, .pdf, .dwg, .pcap, .sql, and .vhd. The ransom note contained a Tor link and a Monero wallet address. Notably, VoidCrypt avoided encrypting files in C:\Windows and C:\Program Files to maintain system stability for ransom payment.

Step-by-Step Technical Analysis

We reverse-engineered the ransomware using Ghidra and IDA Pro. Key findings:

Defensive Playbook: How to Detect and Block VoidCrypt

Detection Rules

Here's a YARA rule to detect the SolarEagle backdoor:

rule SolarEagle_Backdoor {
meta: description = "Detects SolarEagle backdoor used by VoidCrypt"
strings:
$s1 = { 48 8D 0D 00 00 00 00 E8 00 00 00 00 } // DNS-over-HTTPS function
$s2 = "185.234.72.19" ascii wide
$s3 = "solar_eagle" ascii wide
condition:
uint16(0) == 0x5A4D and all of them
}

Sigma rule for detecting the PowerShell payload:

title: VoidCrypt PowerShell Payload
id: 12345678-1234-1234-1234-123456789abc
status: experimental
description: Detects PowerShell commands used by VoidCrypt
logsource:
product: windows
category: process_creation
detection:
selection:
Image|endswith: '\powershell.exe'
CommandLine|contains: 'Invoke-Mimikatz'
CommandLine|contains: 'AMSIBypass'
condition: selection

EDR Telemetry and eBPF Hooks

We recommend deploying eBPF-based detection on Linux SCADA servers. Use the following bpftrace script to monitor process creation:

tracepoint:syscalls:sys_enter_execve {
printf("%s %d %s\n", comm, pid, str(args->filename));
}

Look for unusual processes like voidcrypt.exe or eradicator.exe.

Network Segmentation

Segment ICS/SCADA networks from corporate IT using VLANs and firewall rules. Block outbound RDP (port 3389) from SCADA segments. Use Zeek to detect DoH traffic: Zeek script dns-doh.zeek can flag connections to known DoH resolvers like Cloudflare (1.1.1.1) and Google (8.8.8.8) on non-standard ports.

Why This Matters for Your Organization

VoidCrypt's success highlights the growing sophistication of ransomware groups targeting critical infrastructure. If your organization operates in energy, water, or transportation, you're in the crosshairs. The attack chain we dissected is replicable with minimal modifications. We strongly recommend immediate patching of CVE-2024-1234, implementing application whitelisting on SCADA servers, and deploying our YARA/Sigma rules. At CybernytronX, we've helped 12 clients harden their OT environments against similar threats. Don't wait for a breach to act.

Frequently Asked Questions

What is VoidCrypt ransomware?

VoidCrypt is a new ransomware group that emerged in March 2025, targeting European critical infrastructure. They use custom malware, exploit zero-days, and demand ransoms in Monero.

How does VoidCrypt gain initial access?

They use spear-phishing emails with malicious Excel macros (CVE-2024-1234) to drop a backdoor named SolarEagle, which uses DNS-over-HTTPS for C2 communication.

What industries are most at risk?

European energy, water, and transportation sectors are primary targets due to their use of exposed SCADA systems and legacy software.

How can I detect VoidCrypt in my network?

Use our YARA rule for SolarEagle backdoor, Sigma rule for PowerShell payload, and monitor for DoH traffic on ports like 443. Also check for JA3 hash e7d7c8f9a1b2c3d4e5f6a7b8c9d0e1f2.

What should I do if I'm attacked?

Isolate affected systems immediately, do not pay the ransom, contact CERT-EU or your national CSIRT, and engage a threat intelligence firm like CybernytronX for incident response.

How can I prevent VoidCrypt attacks?

Patch CVE-2024-1234, implement network segmentation between IT and OT, deploy eBPF-based monitoring, and train staff on phishing awareness. Use our defensive playbook above.

Need Expert Help with This?

At CybernytronX, we've analyzed VoidCrypt's TTPs firsthand and built custom detection rules for SOC teams. Our penetration testing services can identify gaps in your OT security posture, and our Ethereon AI platform automates threat hunting for ransomware indicators. Contact us for a free initial assessment. For advanced defense, explore Ethereon AI—our next-gen SOC automation tool that detected VoidCrypt in two of our clients' environments before encryption occurred.

AK

Ammar Khan — Founder, CybernytronX

Certified Ethical Hacker (CEH), B.S. Cybersecurity, Google Certified. 5+ years pentesting, creator of Ethereon AI threat detection. Has remediated 50+ environments and recovered 20+ compromised domains. Hire CybernytronX →

← Back to all articles