← Back to SOC feed Coverage →

PKLITEv200b

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

Hunt Hypothesis

This YARA rule targets the PKLite v200b library, a lightweight SQLite implementation often embedded in portable or obfuscated malware to provide local data storage without requiring a full database engine. Proactively hunting for this signature in Azure Sentinel allows the SOC team to identify potentially suspicious executables or scripts that leverage this specific library for persistence or data staging, particularly in environments where standard SQLite usage is not expected.

YARA Rule

rule PKLITEv200b
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 50 B8 [2] BA [2] 05 [2] 3B 06 02 00 72 ?? B4 09 BA [2] CD 21 B8 01 4C CD 21 [30] 59 2D [2] 8E D0 51 2D [2] 8E C0 50 B9 }

condition:
		$a0 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/packer.yar