Pterodo
Overview
Backdoor:Win32/Pterodo (also known as Pteranodon) is a highly customized, actively maintained espionage backdoor utilized exclusively by the Gamaredon group (Primitive Bear / ACTINIUM), a Russian state-sponsored Advanced Persistent Threat (APT) widely attributed to the FSB. It primarily targets Ukrainian military, government, and critical infrastructure entities.
Understanding Pterodo
To the victim, a Pterodo infection is completely invisible, designed for long-term cyber espionage. For threat intelligence analysts, Pterodo is a dynamic and relentless threat. The Gamaredon group is known for its high-volume, highly persistent operational tempo. Pterodo is not a single executable; it is a modular framework, often consisting of a complex chain of heavily obfuscated VBScript, PowerShell, and SFX (Self-Extracting Archive) components designed to maintain access and exfiltrate sensitive documents.
Execution and APT Espionage Tactics
Initial access is almost always achieved via highly targeted spearphishing emails containing malicious Word documents with macros or weaponized LNK files (`T1566.001`). Upon execution, Pterodo heavily relies on scripting (`T1059.005`) to evade traditional AV. It establishes persistence via the Startup folder or Scheduled Tasks (`T1053.005`). A hallmark of Pterodo is its aggressive beaconing and highly dynamic Command and Control (C2) infrastructure. It frequently updates its C2 domains via Telegram channels or fast-flux DNS (`T1568.002`). The backdoor modules are designed to enumerate the system (`T1082`), capture screenshots, log keystrokes, and systematically exfiltrate documents (`.doc`, `.xls`, `.pdf`) via HTTP POST requests (`T1041`).
Indicators of Compromise & Impact
The impact is severe, state-level data theft. EDR platforms must alert on `wscript.exe` or `powershell.exe` making outbound network connections, or the anomalous execution of `.vbs` scripts from the `%Temp%` or `%AppData%` directories. Network defenders should look for high-frequency HTTP beaconing to frequently rotating, often poorly obfuscated, dynamic DNS domains (e.g., `.ru`, `.ddns.net`).
MITRE ATT&CK Techniques
Observed techniques used by this family, mapped to the MITRE ATT&CK framework:
| Technique | Name | Tactic |
|---|---|---|
T1059.005 | Command and Scripting Interpreter: Visual Basic | Execution |
T1566.001 | Phishing: Spearphishing Attachment | Initial Access |
T1053.005 | Scheduled Task/Job: Scheduled Task | Persistence |
T1041 | Exfiltration Over C2 Channel | Exfiltration |
T1568.002 | Dynamic Resolution: Domain Generation Algorithms | Command and Control |
Tactical Mitigations
Based on the techniques used by this family, consider the following defensive strategies:
- T1059.005: Restrict execution of scripting languages such as PowerShell, VBScript, or Python to authorized administrators. Enforce Script Block Logging.
- 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_PTERODO {
meta:
description = "Detects Pterodo (backdoor)"
author = "SystemHelpdesk Boilerplate Generator"
date = "2026-07-06"
strings:
$s1 = "pterodo" ascii wide nocase
condition:
uint16(0) == 0x5a4d and any of them
}Sigma Rule
title: Suspicious Pterodo Activity
id: ca26edf251d52000441dc9d388318131
status: experimental
description: Detects generic indicators of the pterodo malware family.
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
CommandLine|contains:
- "*pterodo*"
condition: selection
level: mediumContainment & Response Steps
Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.
- Immediately isolate the infected endpoint from the network; this is a state-sponsored espionage incident, and active exfiltration is likely ongoing.
- Engage a dedicated incident response team. Assume the attacker has lateral movement capabilities and has compromised other hosts.
- Capture a full forensic memory image (RAM) to recover the de-obfuscated VBScript logic and identify the current, dynamically generated C2 domains.
- Perform a sweeping enterprise-wide hunt for the identified C2 domains and any instances of anomalous `wscript.exe` activity.
What to Avoid
Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.
- Do not simply re-image the machine without conducting a full forensic investigation; understanding the scope of the exfiltrated data is critical.
- Avoid tipping off the attackers by blocking C2 domains one by one; coordinate a simultaneous block and remediation across the entire enterprise.
References & External Analysis
- Search "pterodo" on VirusTotal (External Analysis)
Frequently Asked Questions
How do I remove the Pterodo Backdoor from Windows?
Manual removal of Pterodo 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 Pterodo a virus or a Backdoor?
Pterodo is classified as a Backdoor. Unlike traditional viruses that infect files, modern malware like Pterodo typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.
What are the main symptoms of a Pterodo infection?
Symptoms of Pterodo 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: backdoor)
Explore other malware families in the same category:
Protect Your Network Against Backdoors
Want to prevent Pterodo and similar threats from compromising your organization? Read our comprehensive defensive guide: Backdoor & RAT Protection.
Machine-readable
Get this profile as JSON: https://jordanricky1604-ship-it.github.io/malware-families-catalog/api/pterodo.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.