← Back to SOC feed Coverage →

Detects an .NET based tool used to dump saved passwords from Microsoft Edge browser processes

yara CRITICAL signature-base
florian-rothnet_edge
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-05T23:00:00Z · Confidence: medium

Hunt Hypothesis

This rule detects adversaries leveraging .NET-based tools to extract stored credentials directly from active Microsoft Edge browser processes, a technique often employed during post-compromise reconnaissance or lateral movement phases. SOC teams should proactively hunt for this behavior in Azure Sentinel because credential theft from browsers represents a high-impact attack vector that can lead to immediate identity compromise and unauthorized access to sensitive data if not identified early.

YARA Rule

rule HKTL_NET_Edge_Saved_Passwords_Dumper_May26 {
   meta:
      description = "Detects an .NET based tool used to dump saved passwords from Microsoft Edge browser processes"
      author = "Florian Roth"
      reference = "https://github.com/L1v1ng0ffTh3L4N/Proof-of-Concepts/tree/main/EdgeSavedPasswordsDumper"
      date = "2026-05-05"
      score = 80
      id = "9d09b27e-16a4-5396-af53-2a2c672bc985"
   strings:
      $x1 = "SELECT ProcessId, Name, ParentProcessId FROM Win32_Process WHERE Name='msedge.exe'" wide
      $x2 = "Scanning process PID: " wide

      $s1 = "NSC\\t1_" wide
      $s2 = "\\*\\(\\)_\\-\\+=\\{\\}\\[\\]:;<>\\?/~\\s]{6,40})\\x20\\x00" wide
   condition:
      2 of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 4 string patterns in its detection logic.

References

False Positive Guidance

Here are 5 specific false positive scenarios for the rule detecting .NET-based password dumping of Microsoft Edge processes, along with suggested filters or exclusions:

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