A New Crypter on the Block
In the underground malware ecosystem, a new service is making waves. It’s called Cruciferra, and it’s been quietly powering attacks that spread AsyncRAT, Agent Tesla, Remcos, XWorm, ValleyRAT, and Snake Keylogger. The price tag? Between $450 and $2,000 a month, depending on the tier.
On July 20, Proofpoint published a deep dive into this crypter. First spotted for sale on the Exploit forum in autumn 2025, Cruciferra has already been linked to dozens of campaigns. The researchers found both active samples and what look like test builds, suggesting the developers are still iterating.
On dark web forums, the service bills itself as “the underground’s most lethal crypter.” The evidence suggests that’s not just marketing.
How Cruciferra Gets Past Defenses
Every observed Cruciferra attack follows the same initial pattern: DLL side-loading. Victims receive a ZIP file containing a legitimate executable paired with a malicious DLL. When the executable runs, it loads the DLL, which checks the environment before dropping the payload.
The DLL itself is a clever piece of obfuscation. It contains hundreds of decoy exported functions that point to junk code. Only one or two actually call the real routine. That makes it harder for automated analysis tools to figure out what’s happening.
Before executing the final payload, Cruciferra goes to work unhooking endpoint detection and response (EDR) tools. It patches the Import Address Table. It reads a clean copy of ntdll.dll from disk to source indirect syscalls, bypassing user-land hooks. And it disables kernel-level telemetry by loading a vulnerable signed driver — in this case, GoFlyDrv.sys — then issuing IOCTL commands to kill security processes.
This bring-your-own-vulnerable-driver (BYOVD) approach is the same technique used by the GentleKiller framework, which the Gentlemen ransomware gang distributes to its affiliates. It’s a known tactic, but it’s effective.
More Than 90 Encryption Routines — and Rarely the Same One Twice
The payloads themselves sit in the binary’s .reloc section. To unpack them, Cruciferra uses one of over 90 encryption routines. These routines are assembled from parts of established algorithms — Keccak, Threefish, Feistel variants — mixed and matched so that the cipher covering one sample almost never matches the next.
That variability makes signature-based detection nearly useless. Even if a security vendor catches one variant, the next sample might use a completely different encryption scheme.
Process Ghosting — With a Twist
The final execution step is where Cruciferra really shows its sophistication. It uses a modified form of process ghosting. The classic technique creates a temporary file marked for deletion, fills it with the payload, and uses it as the backing image for a suspended process. The result: a running process backed by a PE image that no longer exists on disk in scannable form.
But Cruciferra adds two anti-inspection layers. First, it patches ZwQueryVirtualMemory so that EDR queries against the ghosted memory return a sanitized result. Second, it neuters NtManageHotPatch, the kernel function that can validate a loaded image against its on-disk counterpart.
In plain English: even if a security tool tries to peek at the ghosted process, it gets back clean data. And the kernel can’t compare the in-memory image to the file on disk because the file is already gone.
Who’s Behind the Attacks
Proofpoint attributed multiple campaigns using Cruciferra to the Chinese-speaking group TA4922. Between late April and early June, TA4922 used tax-themed lures impersonating the Indian Income Tax Department to deliver AsyncRAT.
In separate May campaigns, the group spoofed the US Social Security Administration to drop XWorm. And in late June, they used bed-bug guest-complaint lures against hospitality organizations to deliver zgRAT.
The targeting appears opportunistic. Financial services made up 34% of observed victims, healthcare 25%, and government 10%. But Proofpoint noted that new Cruciferra-packed samples appeared on VirusTotal every few minutes on July 9. That’s a lot of volume for a service that’s only been around since autumn 2025.
What This Means for Defenders
Cruciferra is a reminder that the malware-as-a-service economy keeps innovating. For $450 a month, any criminal group can get a crypter that uses process ghosting, kernel driver abuse, and custom encryption to bypass modern defenses.
For security teams, the key takeaways are straightforward. First, DLL side-loading remains a common entry point — monitor for unusual executable/DLL pairings. Second, BYOVD attacks require kernel-level visibility; if you can block known vulnerable drivers like GoFlyDrv.sys, you raise the bar. And third, process ghosting is no longer a niche technique. It’s now available as a service.
Cruciferra may call itself the most lethal crypter on the underground. Whether or not that’s true, it’s clearly effective enough to worry about.