← Back to SOC feed Coverage →

PoisonIvy 2

yara LOW Yara-Rules
community
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Yara-Rules →
Retrieved: 2026-07-13T23:00:01Z · Confidence: medium

Hunt Hypothesis

This detection identifies adversary activity associated with the Poison Ivy ransomware family by leveraging a specific YARA signature to pinpoint known malicious artifacts within the environment. Proactively hunting for this behavior in Azure Sentinel is critical because early identification of these low-severity indicators allows the SOC team to isolate potential infection vectors before they escalate into full-scale encryption attacks.

YARA Rule

rule PoisonIvy_2
{
	meta:
		author = " Kevin Breen <kevin@techanarchy.net>"
		date = "2014/04"
		ref = "http://malwareconfig.com/stats/PoisonIvy"
		maltype = "Remote Access Trojan"
		filetype = "exe"

    strings:
    	$stub = {04 08 00 53 74 75 62 50 61 74 68 18 04}
        $string1 = "CONNECT %s:%i HTTP/1.0"
        $string2 = "ws2_32"
        $string3 = "cks=u"
        $string4 = "thj@h"
        $string5 = "advpack"
    condition:
		$stub at 0x1620 and all of ($string*) or (all of them)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 6 string patterns in its detection logic.

False Positive Guidance

Here are specific false positive scenarios for the PoisonIvy 2 detection rule in an enterprise environment, along with recommended filters or exclusions:

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/RAT_PoisonIvy.yar