← Back to SOC feed Coverage →

CSIT 14003 03

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

Hunt Hypothesis

This detection identifies the execution of specific file patterns defined by the CSIT_14003_03 YARA signature, which likely indicates early-stage adversary activity such as benign tool usage or initial reconnaissance. Proactively hunting for these low-severity events in Azure Sentinel allows the SOC team to establish a behavioral baseline and correlate isolated findings with broader attack chains before they escalate into critical incidents.

YARA Rule

rule CSIT_14003_03 : installer RAT
{ 
    meta:
        Author      = "CrowdStrike, Inc"
        Date        = "2014/05/13"
        Description = "Flying Kitten Installer"
        Reference   = "http://blog.crowdstrike.com/cat-scratch-fever-crowdstrike-tracks-newly-reported-iranian-actor-flying-kitten"

    strings:
        $exename = "IntelRapidStart.exe"
        $confname = "IntelRapidStart.exe.config"
        $cabhdr = { 4d 53 43 46 00 00 00 00 } 

    condition:
        all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

False Positive Guidance

Here are specific false positive scenarios for the CSIT 14003 03 detection rule, tailored for an enterprise environment:

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