← Back to SOC feed Coverage →

Olyx code tricks

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-28T11:00:00Z · Confidence: medium

Hunt Hypothesis

This rule detects adversaries employing obfuscation or “code tricks” within the Olyx environment to mask malicious activities and evade standard signature-based detection. SOC teams should proactively hunt for these subtle anomalies in Azure Sentinel to identify early-stage evasion tactics that may precede more significant compromise events, ensuring a deeper understanding of the threat landscape beyond high-severity alerts.

YARA Rule

rule OlyxCode : Olyx Family 
{
    meta:
        description = "Olyx code tricks"
        author = "Seth Hardy"
        last_modified = "2014-06-19"
        
    strings:
        $six = { C7 40 04 36 36 36 36 C7 40 08 36 36 36 36 }
        $slash = { C7 40 04 5C 5C 5C 5C C7 40 08 5C 5C 5C 5C }
        
    condition:
        any of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the “Olyx code tricks” detection rule in an enterprise environment, along with suggested filters or exclusions:

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