← Back to SOC feed Coverage →

Detects scheduled task used for persistence by Nimbus Manticore (UNC1549). The task is used to persistenly load a custom

yara HIGH signature-base
backdoorflorian-rothpersistence
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 adversaries leveraging scheduled tasks to establish persistent access via custom implants capable of data exfiltration and remote command execution, mirroring the behavior of Nimbus Manticore (UNC1549). Proactive hunting for this activity within Azure Sentinel is critical because scheduled task persistence often evades initial detection, allowing attackers to maintain long-term footholds that facilitate stealthy data theft and lateral movement.

YARA Rule

rule SUSP_ScheduledTasks_Nimbus_Manticore_Persistence_May26 {
   meta:
      description = "Detects scheduled task used for persistence by Nimbus Manticore (UNC1549). The task is used to persistenly load a custom implant that features data exfiltration and remote control capabilities."
      author = "Jonathan Peters (Nextron Systems)"
      date = "2026-05-27"
      reference = "https://www.nextron-systems.com/2026/06/01/detecting-nimbus-manticore-and-their-sideloading-infection-chains/"
      score = 75
   strings:
      $a0 = "<Task version=" wide
      $a1 = "xmlns=\"http://schemas.microsoft.com/windows/" wide

      $x1 = "<Arguments>doit" wide
   condition:
      uint16(0) == 0xfeff
      and all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 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 suggested filters or exclusions tailored for a legitimate enterprise environment:

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