← Back to SOC feed Coverage →

Detects string 'This cruft' often used in hack tools like netcat or cryptcat and also mentioned in Project Sauron report

yara HIGH 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-03T23:00:00Z · Confidence: medium

Hunt Hypothesis

The presence of the string ‘This cruft’ in logs or artifacts indicates potential use of known hacking tools like netcat or cryptcat, which are commonly associated with command and control activities. SOC teams should proactively hunt for this indicator in Azure Sentinel to identify and mitigate potential compromise from advanced persistent threats linked to the Project Sauron report.

YARA Rule

rule Hacktool_This_Cruft 
{

    meta:
        description = "Detects string 'This cruft' often used in hack tools like netcat or cryptcat and also mentioned in Project Sauron report"
        author = "Florian Roth"
        reference = "https://goo.gl/eFoP4A"
        date = "2016-08-08"
        score = 60

    strings:
        $x1 = "This cruft" fullword

    condition:
        ( uint16(0) == 0x5a4d and filesize < 200KB and $x1 )
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

References

False Positive Guidance

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