Skip to content

Yara Rules

Beth edited this page Sep 15, 2025 · 4 revisions

Example:

rule foundUPX {
	meta:
		description = "Find files packed with UPX"

	strings:
		$checkUPX0 = "UPX0"
		$checkUPX1 = "UPX1"
		$checkUPX2 = "thug.lyfe" nocase

	condition:
		any of them
}

Clone this wiki locally