← Back to SOC feed Coverage →

detect TSCookie Loader in memory

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

Hunt Hypothesis

This hypothesis posits that adversaries are utilizing TSCookie Loader to establish persistent in-memory footholds within Azure environments by manipulating browser cookie mechanisms for stealthy command and control communication. The SOC team should proactively hunt for this behavior because early detection of these lightweight memory artifacts can reveal initial compromise stages before traditional file-based signatures trigger, thereby reducing dwell time in the Azure Sentinel ecosystem.

YARA Rule

rule TSC_Loader {
          meta:
            description = "detect TSCookie Loader in memory"
            author = "JPCERT/CC Incident Response Group"
            rule_usage = "memory scan"
            reference = "internal research"

          strings:
            $v1 = "Mozilla/4.0 (compatible; MSIE 8.0; Win32)" wide
            $b1 = { 68 78 0B 00 00 }

          condition: 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

Here are 5 specific false positive scenarios for the detect TSCookie Loader in memory rule, including suggested filters and exclusions:

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