← Back to SOC feed Coverage →

xdedic packed syscan

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 detection identifies potential adversary activity involving the execution of packed system scanning tools, which may indicate reconnaissance efforts or the deployment of stealthy malware designed to evade signature-based analysis. Proactively hunting for this behavior in Azure Sentinel is critical because low-severity alerts often mask sophisticated initial access attempts that require deeper investigation to prevent lateral movement and data exfiltration before they escalate into high-impact incidents.

YARA Rule

rule xdedic_packed_syscan : crimeware {
meta:
author = "Kaspersky Lab"
company = "Kaspersky Lab"
ref = "https://securelist.com/files/2016/06/xDedic_marketplace_ENG.pdf"
strings:
$a1 = "SysScan.exe" nocase ascii wide
condition:
uint16(0) == 0x5A4D
and any of ($a*) and filesize > 1000000 and filesize <1200000 and
pe.number_of_sections == 13 and pe.version_info["FileVersion"] contains "1.3.4."
}

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

Here are 5 specific false positive scenarios for the xdedic_packed_syscan detection rule in an enterprise environment, including suggested filters and exclusions:

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