Payload ransomware uses ChaCha20 and Curve25519 to lock Windows files


Payload ransomware is an emerging Windows-focused threat that uses ChaCha20 encryption and Curve25519 key exchange to lock victim files. Security researchers say the malware appends the .payload extension, drops a RECOVER_payload.txt ransom note, and uses anti-forensics features to make recovery harder.

The ransomware appeared in February 2026 and quickly drew attention because of its technical design. A SOC Prime analysis describes Payload as a Windows ransomware family that combines per-file Curve25519 ECDH key exchange with ChaCha20 encryption.

The threat also targets recovery options before encryption starts. It deletes shadow copies, clears Windows Event Logs, patches Event Tracing for Windows functions, and stops processes linked to databases, backup tools, and office applications.

Why Payload ransomware stands out

Many ransomware families use hybrid encryption, but Payloadโ€™s implementation gives defenders little room for easy recovery. The Windows variant generates a fresh key setup for each file, then stores recovery metadata in an encrypted footer.

RansomLookโ€™s Windows technical analysis says the malware uses optimized ChaCha20 routines, Curve25519 key exchange, IOCP-based multithreaded file processing, ETW patching, and self-deletion through NTFS alternate data streams.

The ransomware also creates a mutex named MakeAmericaGreatAgain to prevent multiple copies from running on the same host. That single-instance check helps the malware avoid conflicts while encryption runs.

Key details at a glance

ItemDetails
Threat namePayload ransomware
First observedFebruary 2026
Primary platformWindows, with separate Linux and ESXi activity reported
File extension.payload
Ransom noteRECOVER_payload.txt
EncryptionChaCha20 with Curve25519 ECDH key exchange
MutexMakeAmericaGreatAgain
Notable behaviorShadow copy deletion, ETW patching, event log clearing, and service termination

How Payload encrypts files

Payload uses a per-file encryption workflow. For each file, researchers say the malware generates new cryptographic material, derives a shared secret through Curve25519, and uses that value as the ChaCha20 key.

The SOC Prime report says the malware writes a 56-byte encrypted footer at the end of each processed file. That footer contains data needed by the operator to recover the file with the corresponding private key.

This design makes free decryption unlikely unless defenders obtain the attackersโ€™ private keys, find an implementation weakness, or recover unaffected backups. The malwareโ€™s use of Windows cryptographic functions and optimized CPU paths also helps it run quickly on modern systems.

Payload targets recovery before encryption begins

Payload does not rely only on encryption. It prepares the system first by weakening recovery and logging options. That behavior can leave incident responders with fewer artifacts after the attack.

Malpediaโ€™s Payload entry says the Windows variant deletes recovery points, stops selected services and processes, wipes or bypasses logging mechanisms, and can hide or remove its own executable while encryption continues.

The malware also targets shadow copies with vssadmin.exe. If attackers delete those snapshots successfully, organizations cannot depend on built-in Windows restore points to recover files.

Victim activity and target profile

Payload uses a double-extortion model. The operators maintain Tor-based infrastructure for data leak publication and negotiations, then pressure victims with deadlines and threatened publication.

Halcyonโ€™s threat actor profile says Payload surfaced on February 17, 2026, when a compiled Windows binary and the first leak site posting appeared within hours. The company describes Payload as a closed group with no confirmed ties to named ransomware ecosystems.

Reported targets include manufacturing, business services, healthcare, logistics, real estate, retail, and other sectors where downtime can create immediate financial pressure. Victim counts vary by tracker, so organizations should focus on the groupโ€™s active status and technical behavior rather than one static number.

Windows and ESXi activity expands the risk

Although the current technical focus is the Windows encryptor, Payload is not limited to standard Windows endpoints. Researchers have also described Linux and VMware ESXi variants, which increases the risk for virtualized environments.

Malpedia describes Payload as a cross-platform ransomware family with native Windows and Linux/ESXi binaries. It notes that the Linux/ESXi variant focuses on locating and encrypting virtual machine disk files.

This matters because ESXi hosts can contain several business-critical virtual machines on one system. A successful attack on that layer can disrupt many workloads at once.

Indicators defenders should monitor

Security teams should watch for a combination of file, process, and system-level indicators. No single indicator guarantees compromise, but several together should trigger urgent investigation.

Indicator typeIndicator
SHA-256 sample hash1CA67AF90400EE6CBBD42175293274A0F5DC05315096CB2E214E4BFE12FFB71F
File extension.payload
Ransom noteRECOVER_payload.txt
MutexMakeAmericaGreatAgain
Log file\??\C:\payload.log
Shadow copy commandvssadmin.exe delete shadows /all /quiet

Anti-forensics make response harder

Payloadโ€™s anti-forensics behavior deserves close attention. ETW patching can reduce visibility into malicious actions, while event log clearing can erase evidence that investigators need after encryption begins.

Per-File Key-Handoff Design (Source – Dark Atlas)

The RansomLook analysis also documents the Windows sampleโ€™s use of native NT APIs resolved at runtime. That approach can help malware avoid security tools that mainly monitor higher-level Windows API calls.

These techniques do not make detection impossible. They do mean defenders need layered controls, endpoint telemetry, protected logging, and backup monitoring that does not depend only on local Windows artifacts.

How organizations can reduce the risk

Organizations should prioritize backup resilience. Offline or immutable backups remain one of the strongest defenses against ransomware that deletes shadow copies and attacks backup services.

CISAโ€™s StopRansomware guidance recommends tested backups, updated systems, phishing-resistant MFA, network segmentation, and incident response planning as core ransomware defenses.

  • Maintain offline or immutable backups and test restoration regularly.
  • Restrict unnecessary use of vssadmin.exe and monitor shadow copy deletion commands.
  • Alert on RECOVER_payload.txt, .payload extensions, and the Payload mutex.
  • Monitor sudden shutdown of database, backup, and security services.
  • Protect Windows Event Logs and forward logs to a separate system.
  • Segment backup servers, hypervisors, and critical file shares.
  • Use endpoint controls that detect ETW tampering and suspicious NT API activity.

What to do if Payload is detected

If Payload activity appears in an environment, security teams should isolate affected hosts immediately. Fast containment can stop encryption from spreading to network shares or adjacent systems.

After isolation, responders should preserve volatile data, collect available logs, identify stopped services, and confirm whether backups remain clean. CISA also advises organizations to report ransomware incidents and avoid actions that destroy evidence before responders can investigate.

Teams should not assume Windows shadow copies survived. Payload specifically targets that recovery path, so restoration plans should depend on backup systems that attackers cannot easily reach from compromised endpoints.

The bigger picture

Payload shows how quickly new ransomware crews can combine proven codebases with modern anti-forensics. The groupโ€™s reported Babuk-derived roots do not make it simple or outdated.

Halcyon says the Payload group shows no confirmed ties to named ransomware ecosystems, and describes the Babuk connection as source-code derivation rather than proof of direct affiliation.

CYFIRMAโ€™s March threat report also identified Payload as ransomware of the week and noted its focus on Windows, real estate, retail, Mexico, and Egypt. Its researchers highlighted shadow copy deletion, event log clearing, monitoring bypass, and service termination before encryption.

For defenders, the message is clear. Payload should be treated as an active ransomware threat with strong encryption, fast execution, and aggressive efforts to break recovery. Detection, segmentation, and clean backups matter more than hoping for a public decryptor.

The CYFIRMA report also links the malware to common MITRE ATT&CK techniques such as command execution, native API use, service manipulation, and process injection. Those behaviors give security teams several detection opportunities before encryption finishes.

FAQ

What is Payload ransomware?

Payload is a ransomware family first observed in February 2026. It targets Windows systems, appends the .payload extension to encrypted files, and drops a ransom note named RECOVER_payload.txt.

How does Payload ransomware encrypt files?

Payload uses ChaCha20 for file encryption and Curve25519 ECDH for key exchange. Researchers say it creates per-file cryptographic material and stores recovery metadata in an encrypted footer.

Can Payload-encrypted files be recovered without paying?

Recovery depends on clean backups, available decryption keys, or a future weakness found in the malware. Public reports do not describe a simple free decryption method for files encrypted by current Payload samples.

What are the main signs of a Payload ransomware attack?

Key signs include files ending in .payload, a ransom note named RECOVER_payload.txt, a mutex named MakeAmericaGreatAgain, a log file at \??\C:\payload.log, and attempts to delete Windows shadow copies.

How can organizations defend against Payload ransomware?

Organizations should maintain offline or immutable backups, monitor shadow copy deletion, protect event logs, segment critical systems, detect service termination, and isolate affected hosts immediately if Payload activity appears.

Readers help support VPNCentral. We may get a commission if you buy through our links. Tooltip Icon

Read our disclosure page to find out how can you help VPNCentral sustain the editorial team Read more

User forum

0 messages