← Back to SOC feed Coverage →

Equation Group hack tool leaked by ShadowBrokers- file reverse.shell.script

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-06-06T23:00:00Z · Confidence: medium

Hunt Hypothesis

The reverse.shell.script file detected by this rule may indicate the presence of the Equation Group’s hacking tools, which are associated with advanced persistent threats. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify potential compromise and mitigate the risk of sophisticated cyber attacks.

YARA Rule

rule EquationGroup_reverse_shell {
   meta:
      description = "Equation Group hack tool leaked by ShadowBrokers- file reverse.shell.script"
      author = "Florian Roth"
      reference = "https://medium.com/@shadowbrokerss/dont-forget-your-base-867d304a94b1"
      date = "2017-04-08"
      hash1 = "d29aa24e6fb9e3b3d007847e1630635d6c70186a36c4ab95268d28aa12896826"
   strings:
      $s1 = "sh >/dev/tcp/" ascii
      $s2 = " <&1 2>&1" fullword ascii
   condition:
      ( filesize < 1KB and all of them )
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

References

False Positive Guidance

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