← Back to SOC feed Coverage →

HSI JPEG graphics file

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

Hunt Hypothesis

This rule identifies the presence of HSI JPEG graphics files, which may indicate an adversary using steganography or specific image formats to hide payloads or exfiltrate data within seemingly benign visual assets. Proactively hunting for these files in Azure Sentinel allows the SOC to uncover hidden data channels or embedded malware that standard file type scans might miss, reducing the risk of undetected lateral movement or data exfiltration.

YARA Rule

rule HSI_JPEG_graphics_file: PEiD
{
    strings:
        $a = { 68 73 69 31 00 00 }
    condition:
        $a at pe.entry_point

}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/peid.yar