YARA
rule Yara_Example {
meta:
last_updated = "2021-10-15"
author = "PMAT"
description = "A sample Yara rule for PMAT"
strings:
// Fill out identifying strings and other criteria
$string1 = "YOURTHEMANNOWDOG" ascii
$str2 = "nim"
$Magic_byte = "MZ"
$hex = {FF ?? FF}
condition:
// Fill out the conditions that must be met to identify the binary
$Magic_byte at 0 and
($string1 and $str2) or
$hex
}
Last updated