← Back to SOC feed Coverage →

Rule to detect the presence of SQLite data in raw image

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

Hunt Hypothesis

This hunt targets adversaries who embed or exfiltrate structured data via SQLite databases within raw disk images to evade standard file-based detection mechanisms. Proactively hunting for this signature in Azure Sentinel is critical because it reveals hidden data staging activities that often precede lateral movement or data exfiltration, even when traditional alerting thresholds are not triggered.

YARA Rule

rule with_sqlite : sqlite
{
	meta:
		author = "Julian J. Gonzalez <info@seguridadparatodos.es>"
		reference = "http://www.st2labs.com"
		description = "Rule to detect the presence of SQLite data in raw image"
	strings:
		$hex_string = {53 51 4c 69 74 65 20 66 6f 72 6d 61 74 20 33 00}
	condition:
		all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

References

False Positive Guidance

Here are 5 specific false positive scenarios for the “Rule to detect the presence of SQLite data in raw image” detection logic, including suggested filters and exclusions:

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