← Back to SOC feed Coverage →

nAspyUpdate Identifying Strings

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

Hunt Hypothesis

The nAspyUpdate Identifying Strings rule detects potential adversary use of hardcoded strings to identify and target specific systems or services within an environment. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify early indicators of compromise from advanced persistent threats leveraging hardcoded identifiers for lateral movement or data exfiltration.

YARA Rule

rule nAspyUpdateStrings : nAspyUpdate Family
{
    meta:
        description = "nAspyUpdate Identifying Strings"
        author = "Seth Hardy"
        last_modified = "2014-07-14"
        
    strings:
        $ = "\\httpclient.txt"
        $ = "password <=14"
        $ = "/%ldn.txt"
        $ = "Kill You\x00"
        
    condition:
        any of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

False Positive Guidance

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