Kwampirs
Overview
Backdoor:Win32/Kwampirs is a sophisticated, highly targeted remote access trojan (RAT) primarily associated with the Advanced Persistent Threat (APT) group known as **Orangeworm**. Kwampirs gained notoriety for its laser-focused, long-term espionage campaigns against the **Healthcare sector**, specifically targeting international hospital networks, medical equipment manufacturers, and providers of healthcare logistics and IT services.
Understanding Kwampirs (Targeted Espionage)
To an end-user, a Kwampirs infection is completely silent. For an incident response team, detecting Kwampirs indicates a severe, state-sponsored or highly organized corporate espionage breach. The attackers specifically aim to compromise systems that control high-value medical imaging devices (like X-Ray and MRI machines) to steal intellectual property, patient data, and maintain deep, long-term persistence within critical healthcare infrastructure.
Execution and Backdoor Mechanics
Kwampirs is often delivered via targeted spearphishing (`T1566.001`) or supply chain compromises. Upon execution, it achieves persistence by installing itself as a hidden Windows Service (`T1543.003`), aggressively attempting to blend in with legitimate system processes. Kwampirs is a modular backdoor; it opens a covert channel to its C2 server (`T1071.001`) and can receive commands to download further payloads (`T1105`). It contains a highly aggressive, built-in network propagation module that aggressively copies itself across open network shares (`T1021.002`), attempting to infect every reachable machine on the hospital network to ensure persistence even if the initial beachhead is discovered.
Indicators of Compromise & Impact
The impact is extreme: the compromise of critical healthcare systems and the theft of highly sensitive IP and PHI. Host-based IoCs include the presence of a hidden Windows service (often disguised with names mimicking legitimate medical software or system drivers), and the presence of the Kwampirs payload (often an obfuscated DLL) in the `System32` directory. Network IoCs include massive spikes in SMB (Port 445) traffic as the malware attempts aggressively to copy itself to all accessible network shares, and periodic beaconing to known Orangeworm C2 infrastructure.
MITRE ATT&CK Techniques
Observed techniques used by this family, mapped to the MITRE ATT&CK framework:
| Technique | Name | Tactic |
|---|---|---|
T1543.003 | Create or Modify System Process: Windows Service | Persistence |
T1021.002 | Remote Services: SMB/Windows Admin Shares (Aggressive lateral movement) | Lateral Movement |
T1071.001 | Application Layer Protocol: Web Protocols (C2 Beaconing) | Command and Control |
T1105 | Ingress Tool Transfer (Downloading further espionage tools) | Command and Control |
Tactical Mitigations
Based on the techniques used by this family, consider the following defensive strategies:
- T1071.001: Implement web filtering and SSL/TLS inspection to detect malicious command and control (C2) traffic hiding in HTTP/HTTPS.
- T1105: Implement network intrusion detection systems (NIDS) and host-based firewalls to block unauthorized inbound or outbound file transfers.
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_KWAMPIRS {
meta:
description = "Detects Kwampirs (trojan)"
author = "SystemHelpdesk Boilerplate Generator"
date = "2026-07-06"
strings:
$s1 = "kwampirs" ascii wide nocase
condition:
uint16(0) == 0x5a4d and any of them
}Sigma Rule
title: Suspicious Kwampirs Activity
id: 4963725c2dfea689143b09f9f754ab42
status: experimental
description: Detects generic indicators of the kwampirs malware family.
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
CommandLine|contains:
- "*kwampirs*"
condition: selection
level: mediumContainment & Response Steps
Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.
- Due to its aggressive SMB propagation, immediately isolate infected subnets to halt the worm-like lateral movement across the hospital network.
- Audit all Windows Services on suspected endpoints for anomalous entries, specifically focusing on systems controlling medical imaging hardware.
- Analyze firewall logs for beaconing activity and block all identified C2 infrastructure enterprise-wide.
- Assume a massive data breach of Intellectual Property and Patient Health Information (PHI) and engage incident response and legal counsel.
What to Avoid
Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.
- Do not attempt a simple 'whack-a-mole' remediation by deleting the malware on a single host; Kwampirs' aggressive lateral movement means it is likely on dozens of other machines.
- Avoid rebooting critical medical infrastructure without a coordinated incident response plan, as the malware may have hooked critical system processes.
References & External Analysis
- Search "kwampirs" on VirusTotal (External Analysis)
Frequently Asked Questions
How do I remove the Kwampirs Trojan from Windows?
Manual removal of Kwampirs 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 Kwampirs a virus or a Trojan?
Kwampirs is classified as a Trojan. Unlike traditional viruses that infect files, modern malware like Kwampirs typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.
What are the main symptoms of a Kwampirs infection?
Symptoms of Kwampirs 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: trojan)
Explore other malware families in the same category:
Protect Your Network Against Trojans
Want to prevent Kwampirs and similar threats from compromising your organization? Read our comprehensive defensive guide: Banking Trojan Protection.
Machine-readable
Get this profile as JSON: https://jordanricky1604-ship-it.github.io/malware-families-catalog/api/kwampirs.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.