Ranserkd
Overview
Ransom:Win32/Ranserkd is a highly destructive ransomware variant designed to systematically encrypt all valuable data on an infected endpoint or network share, followed by an extortion demand. It utilizes strong cryptographic algorithms (typically AES combined with RSA) to ensure that recovering the locked files is mathematically impossible without paying the attackers for the unique private decryption key.
Understanding the Ranserkd Threat
To a victim, a Ranserkd infection represents a catastrophic loss of data; documents, databases, and photos become inaccessible, appended with a strange file extension, and a ransom note appears on the desktop. For an enterprise, it triggers a critical incident response involving total network isolation to prevent the ransomware from spreading to critical servers and backups.
Execution and Encryption Mechanics
Ranserkd is frequently deployed manually by attackers after they have already breached the network (e.g., via compromised RDP credentials or an Initial Access Broker) (`T1078`), or delivered via massive malspam campaigns (`T1566.001`). Upon execution, the ransomware first attempts to neutralize endpoint defenses and delete Windows Volume Shadow Copies (`vssadmin.exe delete shadows`) to prevent easy data restoration (`T1490`). It then aggressively scans all local drives and mapped network shares, rapidly encrypting files that match a hardcoded list of valuable extensions (e.g., `.docx`, `.sql`, `.pdf`) (`T1486`). Finally, it drops a ransom note (often a `.txt` or `.html` file) detailing payment instructions via cryptocurrency.
Indicators of Compromise & Impact
The impact is total data denial of service. Host-based IoCs include massive spikes in CPU and disk I/O activity caused by the rapid encryption process. EDR systems will flag the execution of `vssadmin.exe` or `bcdedit.exe` attempting to disable recovery features. Files across the system will suddenly change extensions, and the ransomware executable itself may be found running from the `%Temp%` or `%AppData%` directories.
MITRE ATT&CK Techniques
Observed techniques used by this family, mapped to the MITRE ATT&CK framework:
Generated Detections (Boilerplate)
These YARA and Sigma rules are auto-generated based on the family name and aliases. They must be heavily tuned before deployment in a production environment.
YARA Rule
rule MALWARE_WIN_RANSERKD {
meta:
description = "Detects Ranserkd (ransomware)"
author = "SystemHelpdesk Boilerplate Generator"
date = "2026-07-06"
strings:
$s1 = "ranserkd" ascii wide nocase
condition:
uint16(0) == 0x5a4d and any of them
}Sigma Rule
title: Suspicious Ranserkd Activity
id: 22660d0e564fa3659e58ec1d7b3517dc
status: experimental
description: Detects generic indicators of the ranserkd malware family.
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
CommandLine|contains:
- "*ranserkd*"
condition: selection
level: mediumContainment & Response Steps
Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.
- Immediately sever the infected endpoint from the network (physically pull the Ethernet cable or disable the switch port) to stop it from encrypting mapped network drives.
- Do NOT reboot the infected machine; capture a live memory image (RAM dump), as the encryption keys might temporarily reside in memory.
- Identify the exact Ranserkd variant and consult resources like 'No More Ransom' to see if a known decryption flaw exists before considering payment.
- Restore the encrypted systems from secure, offline backups that were isolated from the network at the time of the attack.
What to Avoid
Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.
- Do not pay the ransom immediately; paying funds criminal syndicates and there is no guarantee the provided decryptor will actually work.
- Avoid reconnecting restored machines to the network until the initial entry vector (e.g., a vulnerable VPN or weak RDP password) has been completely secured.
References & External Analysis
- Search "ranserkd" on VirusTotal (External Analysis)
Frequently Asked Questions
How do I remove the Ranserkd Ransomware from Windows?
Manual removal of Ranserkd is highly discouraged as it may leave persistence mechanisms intact. We recommend disconnecting the device from the internet and utilizing a professional incident response service or enterprise-grade EDR software to conduct a full forensic sweep.
Is Ranserkd a virus or a Ransomware?
Ranserkd is classified as a Ransomware. Unlike traditional viruses that infect files, modern malware like Ranserkd typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.
What are the main symptoms of a Ranserkd infection?
Symptoms of Ranserkd can include unexpected system slowness, unauthorized outbound network traffic to unknown IP addresses, disabled security software, and suspicious background processes running from AppData or Temp directories.
Related Families (Category: ransomware)
Explore other malware families in the same category:
Protect Your Network Against Ransomwares
Want to prevent Ranserkd and similar threats from compromising your organization? Read our comprehensive defensive guide: Ransomware Protection Guide.
Machine-readable
Get this profile as JSON: https://jordanricky1604-ship-it.github.io/malware-families-catalog/api/ranserkd.json
Ecosystem & Interactive Environments
This profile is part of the Malware Families Catalog, a public dataset of 2,899 malware families. The catalog is also published across our ecosystem: Hugging Face, Kaggle, Zenodo, Replit, StackBlitz, CodeSandbox, and CodePen.