← Back to SOC feed Coverage →

PKLITEv200c

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 rule detects the presence of the PKLite v200c library, a lightweight SQLite implementation often embedded in portable or obfuscated malware to facilitate local data storage and persistence. Proactively hunting for this artifact helps identify compromised hosts where adversaries may be using non-standard database engines to hide configuration files, logs, or stolen data from standard forensic tools.

YARA Rule

rule PKLITEv200c
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 50 B8 [2] BA [2] 3B C4 73 ?? 8B C4 2D [2] 25 [2] 8B F8 B9 [2] BE [2] FC }

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