Poison
Overview
Backdoor:Win32/Poison (widely known as PoisonIvy) is an infamous, highly customizable Remote Access Trojan (RAT) that has been a staple of both cybercriminal and nation-state (APT) arsenals for over a decade.
Understanding PoisonIvy
To a layman, PoisonIvy is the ultimate spyware, granting a remote hacker total control over the victim's computer. For cybersecurity experts, PoisonIvy is a severe Indicator of Compromise (IoC) often linked to targeted espionage campaigns. Due to its builder interface, attackers can highly customize the payload, making each instance unique and difficult for static anti-virus engines to detect.
Execution and Evasion Strategies
PoisonIvy is typically delivered via spearphishing emails containing exploited documents (e.g., CVE-2012-0158) or weaponized executables. Upon execution, the RAT immediately injects itself into legitimate system processes (such as <code>explorer.exe or the default browser) to mask its presence from Task Manager. It establishes persistence via the ActiveX or Run registry keys. The malware encrypts its Command-and-Control (C2) traffic, often using a custom protocol over TCP port 3460 (by default, though highly configurable).
Forensic Footprint & Capabilities
Once active, PoisonIvy provides the attacker with a vast array of capabilities: interactive command shell access, file system manipulation, registry editing, audio/video capture via webcam and microphone, keylogging, and password hash theft. Incident responders must utilize memory forensics to extract the PoisonIvy configuration block from the injected process memory, which reveals the C2 IP address, the campaign ID (mutex), and the encryption password.
MITRE ATT&CK Techniques
Observed techniques used by this family, mapped to the MITRE ATT&CK framework:
Tactical Mitigations
Based on the techniques used by this family, consider the following defensive strategies:
- T1056.001: Implement Endpoint Detection and Response (EDR) to monitor for suspicious API calls related to keystroke interception. Enforce Multi-Factor Authentication (MFA) to render stolen passwords useless.
- T1059.003: Restrict execution of Windows Command Shell (cmd.exe) and block unauthorized batch scripts.
- T1125: Restrict access to local camera or microphone APIs. Utilize endpoint protection that monitors hardware access.
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_POISON {
meta:
description = "Detects Poison (rat)"
author = "SystemHelpdesk Boilerplate Generator"
date = "2026-07-06"
strings:
$s1 = "poison" ascii wide nocase
condition:
uint16(0) == 0x5a4d and any of them
}Sigma Rule
title: Suspicious Poison Activity
id: 35393c24384b8862798716628f7bc6f4
status: experimental
description: Detects generic indicators of the poison malware family.
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
CommandLine|contains:
- "*poison*"
condition: selection
level: mediumContainment & Response Steps
Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.
- Immediately sever the endpoint from the network to terminate the attacker's interactive, remote-control session.
- Capture a full RAM image of the endpoint; memory forensics is critical for extracting the PoisonIvy configuration and C2 details.
- Identify the specific C2 IP address and implement immediate blocks at the perimeter firewall and proxy servers.
- Assume total endpoint compromise; perform a clean OS rebuild and force password resets for all accounts that accessed the machine.
What to Avoid
Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.
- Do not leave the machine connected to the network during triage; the attacker has live access and will likely destroy evidence or deploy ransomware.
- Do not assume the infection is isolated; PoisonIvy is frequently used as a beachhead for lateral movement across the domain.
References & External Analysis
- Search "poison" on VirusTotal (External Analysis)
Frequently Asked Questions
How do I remove the Poison Rat from Windows?
Manual removal of Poison 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 Poison a virus or a Rat?
Poison is classified as a Rat. Unlike traditional viruses that infect files, modern malware like Poison typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.
What are the main symptoms of a Poison infection?
Symptoms of Poison 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: rat)
Explore other malware families in the same category:
Protect Your Network Against Rats
Want to prevent Poison and similar threats from compromising your organization? Read our comprehensive defensive guide: Backdoor & RAT Protection.
Machine-readable
Get this profile as JSON: https://jordan123234-malware-families-explorer.static.hf.space/api/poison.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.