← Back to SOC feed Coverage →

Detects tool from EQGRP toolset - file durablenapkin.solaris.2.0.1.1

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-05-22T11:00:00Z · Confidence: medium

Hunt Hypothesis

The detection identifies the presence of the EQGRP tool ‘durablenapkin.solaris.2.0.1.1’, which is associated with potential adversarial activity due to its known ties to malicious toolsets. SOC teams should proactively hunt for this artifact in Azure Sentinel to identify and mitigate potential compromise from advanced persistent threats leveraging this tool.

YARA Rule

rule EQGRP_durablenapkin_solaris_2_0_1 
{

    meta:
        description = "Detects tool from EQGRP toolset - file durablenapkin.solaris.2.0.1.1"
        author = "Florian Roth"
        reference = "Research"
        date = "2016-08-15"

    strings:
        $s1 = "recv_ack: %s: Service not supplied by provider" fullword ascii
        $s2 = "send_request: putmsg \"%s\": %s" fullword ascii
        $s3 = "port undefined" fullword ascii
        $s4 = "recv_ack: %s getmsg: %s" fullword ascii
        $s5 = ">> %d -- %d" fullword ascii

    condition:
        ( uint16(0) == 0x457f and filesize < 40KB and 2 of them )
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 5 string patterns in its detection logic.

References

False Positive Guidance

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