← Back to SOC feed Coverage →

Detects Nimbus Manticore (UNC1549) agent implant featuring data exfiltration and remote control.

yara CRITICAL signature-base
apt_nimbusbackdoorflorian-roth
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 signature-base →
Retrieved: 2026-08-02T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt hypothesis targets the deployment of the Nimbus Manticore (UNC1549) agent implant to identify adversaries establishing persistent footholds for covert data exfiltration and remote command execution. Proactive hunting in Azure Sentinel is essential because this critical-severity threat leverages advanced stealth mechanisms that may evade standard signature-based detections, requiring behavioral analysis to uncover early-stage compromise indicators.

YARA Rule

rule MAL_APT_Nimbus_Manticore_Agent_May26 {
   meta:
      description = "Detects Nimbus Manticore (UNC1549) agent implant featuring data exfiltration and remote control."
      author = "Jonathan Peters (Nextron Systems)"
      date = "2026-05-28"
      reference = "https://www.nextron-systems.com/2026/06/01/detecting-nimbus-manticore-and-their-sideloading-infection-chains/"
      hash = "dfa1e3137a032ee8561a1cd5e1a0f71a10bebb36aef7c336c878638a9c1239ee"
      score = 80
   strings:
      $a1 = "Chrome/146.0.0.0 Safari/537.36" wide
      $a2 = ".azurewebsites.net" wide

      $s1 = "/agent/poll?token=" wide fullword
      $s2 = "/agent/init" wide fullword
      $s3 = "/agent/result" wide fullword
   condition:
      uint16(0) == 0x5a4d
      and 1 of ($a*) 
      and 1 of ($s*)
      or 3 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

Here are 3-5 specific false positive scenarios for the Nimbus Manticore (UNC1549) detection rule, including tailored filters and exclusions:

Original source: https://github.com/Neo23x0/signature-base/blob/main/yara/apt_apt35_malware_may26.yar