|

Onyx Ransomware Recovery and Decryption Guide

Forensic Dissection of the “FKVF” Onyx Ransomware: Analyzing the Targeted Proxmox VE Virtual Environment Attacks

Strategic Intelligence Briefing: The Proxmox Hypervisor Compromise In September 2026, global incident response telemetry identified a highly orchestrated ransomware campaign explicitly targeting Linux-based Proxmox Virtual Environments (VE). Appending the .onyx extension and dropping the README_DESTROY.txt extortion manifest, this payload operates entirely at the hypervisor level, encrypting massive QCOW2 virtual machine disk images in place. Do not confuse this threat with the legacy GlobeImposter 2.0 variant, which previously used the same extension. This modern threat utilizes a bespoke X25519 (Elliptic Curve Diffie-Hellman) cryptographic framework marked by a distinct FKVF footer. The syndicate enforces a rigid, KYC-style “Tiered” extortion model via a Tor portal, demanding between $2,000 and $60,000+ based on stolen corporate metrics. This report details its cryptographic architecture, extortion psychology, and specialized hypervisor recovery strategies.

When an enterprise’s entire virtualization cluster goes offline simultaneously, the resulting operational paralysis is catastrophic. In late August and early September 2026, administrators managing Proxmox Virtual Environment (VE) clusters began reporting sudden, total failures across their entire infrastructure. Upon investigating the underlying Linux nodes, they discovered that their critical QCOW2 disk imagesβ€”the files housing their virtual servers, databases, and applicationsβ€”had been appended with the .onyx extension. Accompanying this destruction was an aggressively worded, highly corporate ransom note titled README_DESTROY.txt.

Initially, automated identification platforms like ID-Ransomware misidentified the threat as GlobeImposter 2.0 simply because of the .onyx extension. However, stripping the extension revealed the truth: this was a completely unidentified, native Linux ELF encryptor designed specifically for hypervisor sabotage. By executing at the root Proxmox node level, the attackers bypass all internal Windows or Linux security agents installed on the guest Virtual Machines. One execution corrupts dozens of servers simultaneously.

Through deep heuristic analysis, reverse-engineering of the Tor-based Command and Control (C2) infrastructure, and direct examination of the cryptographic footers left on compromised .qcow2 files, forensic engineers at Lockbit Decryptor Lab have mapped this attack framework. Marked by the FKVF metadata footer and the deployment of X25519 public keys, this ransomware enforces a corporate “tiered” extortion protocol designed to maximize payouts. This comprehensive 2,000+ word forensic analysis provides an exhaustive breakdown of the threat’s execution chain, the mathematics of its Elliptic Curve algorithm, and the advanced data carving strategies necessary to restore corrupted Proxmox environments.

Threat Engine: Linux ELF Encryptor (FKVF Architecture)
Observed Suffix: .onyx
Targeted Systems: Proxmox VE / QCOW2 Disks
Classification: TLP:CLEAR

1. Threat Intelligence & Artifact Signature Matrix

Successfully mitigating a native hypervisor ransomware infection requires immediate detection of its specific forensic footprint within the Proxmox Linux file system. The payload establishes several recognizable system modifications designed to track victims and orchestrate cryptographic keys.

Forensic ParameterObserved Behavior / Infrastructure Profile
Appended File Extension Pattern.[Original_Filename].onyx
(e.g., vm-100-disk-0.qcow2.onyx)
Ransom Note IndexREADME_DESTROY.txt (Dropped recursively across cluster storage volumes)
Cryptographic Footprint45-byte footer begins with ASCII FKVF followed by version 01.
Key Storage Artifacts/root/WORK_SELF_PUBLIC.pem (X25519 public key) and WORK_SELF_KEY_ID.txt
Primary Communication ChannelTor Network Portal (zdfepqzxnyjlkxumqdx2brtd2emgqyx75hmh6au4mle47eqky6ykrrad.onion)
Extortion StructureTiered Pricing ($2,000 to $60,000+) based on organizational size, verified against stolen data.

Is Your Proxmox Cluster Actively Under Attack?

If your Proxmox VE nodes are displaying the .onyx extension and your VMs are inaccessible, immediate containment is critical to prevent total cluster corruption. Do not reboot the Proxmox host or attempt to migrate VMs. Doing so flushes the volatile memory required for forensic key extraction. Contact our 24/7 incident response desk for immediate hypervisor isolation protocols.

2. Initial Access Vectors: The Hypervisor Exploit

Ransomware that targets virtualization clusters requires significantly more sophisticated ingress techniques than standard phishing payloads. The attackers must gain root access to the hypervisor itself.

Proxmox Perimeter Vulnerabilities

Proxmox VE is administered via a web-based GUI typically running on port 8006, as well as standard SSH access. If administrators expose these management interfaces to the public internet without proper IP whitelisting, VPN tunneling, or Multi-Factor Authentication (MFA), the cluster becomes an immediate target for automated credential stuffing and brute-force attacks.

Furthermore, threat actors frequently exploit unpatched vulnerabilities in related cluster services (such as Corosync or Ceph storage integrations) to pivot from a single compromised node to the entire cluster. Once root access is achieved via SSH or a web shell, the attackers operate with absolute impunity over every virtual machine hosted on the hardware.

The In-Place Encryption Tactic

A critical observation from incident responders is that the .onyx payload encrypts QCOW2 and RAW disk images in place. This means the ransomware reads a block of the virtual machine disk, encrypts it, overwrites the original block, and moves on. This is highly efficient and circumvents storage capacity limits (unlike ransomware that creates a fully encrypted copy before deleting the original), making the damage immediate and devastating to the underlying virtualized filesystems (ext4, NTFS, or ZFS) operating within the guest VMs.

3. Cryptographic Architecture: The FKVF Footer and X25519

The forensic metadata provided by active incidents reveals a highly structured, modern cryptographic implementation built on Elliptic Curve cryptography.

The X25519 Key Infrastructure

Upon execution, the ransomware generates a local key pair and drops metadata directly into the /root/ directory:

  • /root/WORK_SELF_PUBLIC.pem: This contains an X25519 public key. X25519 is an elliptic curve Diffie-Hellman (ECDH) key exchange protocol, widely respected for its speed and security against timing attacks.
  • WORK_SELF_KEY_ID.txt: This file contains configuration metadata: format=work-self-key-v1, key_id=key-6048, and private_key_slot=key-6048. Notably, the private key is not present locally; it is either held exclusively in volatile memory during the encryption loop or exfiltrated to the C2 server immediately upon generation.

The 45-Byte FKVF Footer

At the end of every encrypted .qcow2.onyx file, the malware appends a highly specific 45-byte footer. The structure, as observed by forensic analysts, is as follows:

  • Magic Bytes: The footer ends with the ASCII string FKVF followed by the version identifier 01.
  • Length Value: Preceding the magic bytes is a 4-byte length indicator, often 00000020 (indicating 32 bytes).
  • Cryptographic Payload: The preceding 32 bytes contain per-file cryptographic material. Because X25519 is used for key exchange, this 32-byte block is almost certainly the file-specific ephemeral public key generated by the ransomware to derive the shared symmetric key (likely ChaCha20 or AES-GCM) used to encrypt the actual file blocks. The final 32 bytes of the block often vary per file, acting as an authentication tag to ensure file integrity.
Critical System Warning: Do Not Truncate or Modify Files Because the malware relies entirely on the FKVF footer and the embedded ephemeral public keys to derive the symmetric decryption key, running automated disk repair utilities or attempting to manually strip the .onyx extension will permanently destroy this metadata. Without the 45-byte footer, mathematical restoration is impossible, even with the master private key.

Evaluate Your Encrypted Proxmox Volumes

Before considering establishing contact with the Tor portal, submit samples of your corrupted QCOW2 headers and the /root/ key metadata to our laboratory. Our engineers specialize in analyzing X25519 implementations for PRNG seeding flaws and evaluating the feasibility of unallocated sector carving for Proxmox clusters.

4. The Extortion Dynamic: Corporate Tiering and KYC Verification

The README_DESTROY.txt note reveals a syndicate that operates with clinical, corporate efficiency. They have entirely discarded the traditional “flat fee” ransomware model in favor of dynamic, data-driven extortion.

The Tiered Pricing Model

The attackers demand that the victim self-report their organizational size during the negotiation phase, offering specific starting quotes:

  • Tier 1 (Personal/Solo): $2,000
  • Tier 2 (SOHO 1-10 staff): $5,000
  • Tier 3 (Small Business 11-50 staff): $15,000
  • Tier 4 (Mid-market 51-500 staff): $30,000
  • Tier 5 (Enterprise 500+ staff): $60,000

Data-Backed Auditing and “Know Your Victim”

The syndicate explicitly warns: “If you under-report your company size, we will verify against the stolen data (employee records, internal email domains, financial documents). Lying will void any discount we offered.”

This proves that the data exfiltration phase of the attack was successful and comprehensive. The attackers utilize the stolen data not just for public leak leverage, but to perform financial underwriting on the victim, ensuring they extract the maximum possible ransom based on the victim’s true revenue and cyber insurance coverage.

The Redundant Leak Threat

To maximize psychological pressure, the attackers outline a “redundant multi-site distribution strategy,” naming notorious dark web forums (breached.to, xss.is, darkforums.ru) where the data will be simultaneously seeded. They also threaten active harassmentβ€”contacting customers, business partners, and regulatory bodies (GDPR/SEC) directly to induce reputational collapse.

5. Verbatim Ransom Note Reference Log

To confirm that your Proxmox infrastructure has been compromised by this specific variant, verify that the README_DESTROY.txt matches the structure transcribed below:

============================================================= !!! YOUR NETWORK HAS BEEN COMPROMISED !!! =============================================================Hi there,If you are reading this, your company’s internal computer system is down. All your backups β€” digital and physical β€” that we found have been deleted. We also stole a large amount of your company data before we locked your files.Let’s talk calmly. We know we have caused serious problems for you. Here is what you need to know:Self-assess your company size (you tell us, we verify against the data we stole):Tier 1 β€” Personal (solo, single individual): starting quote: $2,000Tier 2 β€” SOHO (1-10 staff, small office / home office): starting quote: $5,000Tier 3 β€” Small business (11-50 staff): starting quote: $15,000Tier 4 β€” Mid-market (51-500 staff): starting quote: $30,000Tier 5 β€” Enterprise (500+ staff): starting quote: $60,000Reply with your tier and we will provide a final quote based on your cyber insurance coverage and the data volume we have on you.If you under-report your company size, we will verify against the stolen data (employee records, internal email domains, financial documents). Lying will void any discount we offered.If we do not hear back in 72 hours, the price increases 50%.After payment is confirmed, the recovery process is: – Decryption tool delivery: within 24-48 hours – Full system recovery: 24-72 hours depending on your infrastructure size – Data deletion proof (recorded video): within 48 hours – Security report: within 7 daysOur decryption tool works for all your files and systems. You can ask for a free test first to prove it works. If you try to recover files on your own, you might permanently lose or break some data, and we cannot help you then.After you pay, we will send you a security report. It will tell you the weak spots in your system that we used to break in. Your own security team or normal audits will never find these problems.If we cannot reach an agreement within 7 days: 1. Your entire dataset will be **simultaneously distributed across multiple dark web leak sites** and publicly auctioned: β€’ darkforums.ru β€’ breached.to β€’ xss.is β€’ leakbase.io β€’ [additional rotating sites]We use a redundant multi-site distribution strategy β€” the takedown of any single site by law enforcement will not affect the accessibility of the others. Any visitor will be able to browse, preview and download the full archive. 2. We will contact your customers directly using your compromised email database 3. Your business partners will receive a breach notification from us, not from you 4. Relevant regulators (GDPR / SEC / local authorities) will be notified under your company’s nameA final and important clarification:β€’ Engaging outside counsel or hiring a third-party incident-response firm will NOT accelerate resolution. The longer the communication chain and the wider the circle of trust, the higher the probability that your data leaks into the open. β€’ Contacting law enforcement (FBI / Interpol / local cybercrime units) will NOT cause us to lower the price or release the data. We will treat it as a refusal to negotiate, and will immediately trigger every action listed in items 1-4 above. β€’ The only controlled, quiet, and fast resolution is for you to negotiate with us directly. We have helped many organizations of similar size resolve this kind of incident with minimal fallout.We are open to negotiation. We can find a fast solution that works for both sides.β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€” NEGOTIATION ENTRY POINT (Keep Confidential β€” Do Not Share) β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”Our negotiation site .onion address:[http://zdfepqzxnyjlkxumqdx2brtd2emgqyx75hmh6au4mle47eqky6ykrrad.onion]Registration invite code is at the bottom of the text

6. Enterprise Containment Playbook for Proxmox Environments

Containing a hypervisor-level ransomware incident requires highly specific operational steps to preserve file systems and volatile artifacts:

  1. Physical Network Boundary Isolation: Do not rely on software firewalls within the Proxmox GUI, as the attackers possess root privileges. Physically disconnect the Ethernet cables or isolate the management interfaces from the switch layer. This instantly halts the malware from exfiltrating further data or laterally moving to uninfected nodes in the cluster.
  2. Preserve Volatile Memory (Do Not Reboot): It is an instinctual reaction to issue a hard reset on a compromised host. Do not do this. The ELF binary stores the active symmetric keys and X25519 private material inside the volatile system RAM. If the server is powered down, this critical cryptographic material is permanently destroyed. Trained forensic responders must execute a live memory dump of the Proxmox host kernel before the system is taken offline.
  3. Secure the Key Artifacts: Immediately navigate to /root/ via SSH (if still accessible) and securely copy the WORK_SELF_PUBLIC.pem and WORK_SELF_KEY_ID.txt files to an external, clean drive. These are critical for any future decryption efforts.

7. Institutional Laboratory Recovery Vectors

Recovering from a native hypervisor ransomware attack targeting QCOW2 and RAW disk images requires laboratory-grade data restoration methodologies:

  • Block-Level Storage Cloning: All physical drives within the Proxmox ZFS pools or LVM-thin storage arrays must be imaged sector-by-sector using hardware write-blockers before any analysis begins. All extraction and reconstruction tasks are performed on secondary laboratory images to protect the original evidence.
  • Intermittent Encryption Analysis: Forensic engineers evaluate the encrypted QCOW2 files to determine the exact block-skipping logic utilized by the ransomware. If the encryptor utilized partial encryption (encrypting only every Nth megabyte to save time), vast quantities of the underlying VM filesystem remain intact.
  • Guest VM Data Carving: If the QCOW2 headers are heavily corrupted, engineers can often bypass the hypervisor container entirely. By scanning the raw disk sectors of the host, we can identify the internal filesystems of the guest VMs (NTFS for Windows guests, EXT4 for Linux guests) and carve the original databases, documents, and logs directly from the raw physical platters.

Deploy Professional Forensic Recovery for Proxmox .onyx Incidents

Do not compromise your network’s operational continuity or risk financing anonymous syndicates. Modifying encrypted QCOW2 volumes, attempting automated filesystem repairs, or rebooting your Proxmox nodes can permanently destroy vital cryptographic metadata (the FKVF footer) and volatile memory keys. Lockbit Decryptor Lab operates a dedicated forensic facility specialized in resolving Linux hypervisor ransomware incidents, analyzing X25519 payload vulnerabilities, and executing deep-sector VM reconstruction. Contact our 24/7 technical team today for immediate triage.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *