Nukesped
Overview
Backdoor:Win32/Nukesped is a highly sophisticated, persistent backdoor remote access trojan (RAT) heavily attributed to the **Lazarus Group (HIDDEN COBRA)**, a North Korean state-sponsored advanced persistent threat (APT). Nukesped (and its variants) has been deployed in high-profile cyberespionage and financially motivated attacks worldwide, targeting cryptocurrency exchanges, financial institutions, the aerospace industry, and critical infrastructure.
Understanding Nukesped (Lazarus Group APT)
To an end-user, Nukesped is entirely invisible. For a security operations center (SOC), the detection of Nukesped is a critical 'Code Red' event, indicating that the network has been breached by a highly capable nation-state adversary. Nukesped is not a noisy, destructive wiper; it is designed for long-term intelligence gathering, lateral movement, and the facilitation of multi-million dollar cryptocurrency heists.
Execution, Evasion, and C2 Mechanics
Lazarus operators typically deploy Nukesped following a successful spear-phishing campaign (`T1566.001`), watering hole attack, or the exploitation of perimeter vulnerabilities (like vulnerable VPNs or unpatched web servers). The malware often utilizes advanced evasion techniques, including DLL side-loading (`T1574.002`), where a legitimate, signed executable (e.g., a known antivirus component or legitimate software updater) is hijacked to load the malicious Nukesped DLL into memory, bypassing many static and behavioral defenses. It establishes persistence via hidden scheduled tasks or modifying system services (`T1543.003`). The backdoor communicates with an elaborate, heavily obfuscated Command and Control (C2) infrastructure (`T1071.001`), allowing attackers to execute arbitrary shell commands (`T1059.003`), manipulate files, steal credentials, and pivot deeper into the network.
Indicators of Compromise & Impact
The impact is a total, state-sponsored compromise of the network, risking massive financial loss and intellectual property theft. IoCs require advanced EDR: look for DLL side-loading events involving specific known-vulnerable signed binaries, unexpected network connections originating from those hijacked binaries, and anomalous scheduled tasks executing from temporary directories.
MITRE ATT&CK Techniques
Observed techniques used by this family, mapped to the MITRE ATT&CK framework:
| Technique | Name | Tactic |
|---|---|---|
T1574.002 | Hijack Execution Flow: DLL Side-Loading (Using legitimate binaries to load the payload) | Defense Evasion |
T1059.003 | Command and Scripting Interpreter: Windows Command Shell | Execution |
T1071.001 | Application Layer Protocol: Web Protocols (C2 Communication) | Command and Control |
T1566.001 | Phishing: Spearphishing Attachment | Initial Access |
Tactical Mitigations
Based on the techniques used by this family, consider the following defensive strategies:
- T1059.003: Restrict execution of Windows Command Shell (cmd.exe) and block unauthorized batch scripts.
- T1071.001: Implement web filtering and SSL/TLS inspection to detect malicious command and control (C2) traffic hiding in HTTP/HTTPS.
- T1566.001: Scan email attachments for malicious macros, scripts, or suspicious archive files.
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_NUKESPED {
meta:
description = "Detects Nukesped (trojan)"
author = "SystemHelpdesk Boilerplate Generator"
date = "2026-07-06"
strings:
$s1 = "nukesped" ascii wide nocase
condition:
uint16(0) == 0x5a4d and any of them
}Sigma Rule
title: Suspicious Nukesped Activity
id: 25635311301c7dfacaebf0a5af83a470
status: experimental
description: Detects generic indicators of the nukesped malware family.
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
CommandLine|contains:
- "*nukesped*"
condition: selection
level: mediumContainment & Response Steps
Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.
- Do not immediately terminate the connection if possible; engage Incident Response (IR) specialists to monitor the attacker's lateral movement and identify all compromised assets before pulling the plug.
- Once IR is engaged, physically isolate the affected network segments to trap the attacker.
- Capture extensive live memory images (RAM dumps) of compromised endpoints to extract the decrypted Nukesped payload and its C2 configuration.
- Assume the entire Active Directory domain is compromised (Golden Ticket scenario); prepare for a full domain rebuild and enterprise-wide password reset.
What to Avoid
Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.
- Do NOT attempt to remediate a Nukesped infection using standard IT procedures (e.g., running AV and rebooting); APT actors will immediately notice the remediation and deploy destructive wipers or establish deeper backdoors.
- Avoid relying solely on IoCs (IPs/Hashes); Lazarus frequently rotates infrastructure. Focus on behavioral detection of DLL side-loading.
References & External Analysis
- Search "nukesped" on VirusTotal (External Analysis)
Frequently Asked Questions
How do I remove the Nukesped Trojan from Windows?
Manual removal of Nukesped 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 Nukesped a virus or a Trojan?
Nukesped is classified as a Trojan. Unlike traditional viruses that infect files, modern malware like Nukesped typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.
What are the main symptoms of a Nukesped infection?
Symptoms of Nukesped 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 Nukesped and similar threats from compromising your organization? Read our comprehensive defensive guide: Banking Trojan Protection.
Machine-readable
Get this profile as JSON: https://jordan123234-malware-families-explorer.static.hf.space/api/nukesped.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.