Threat Hunting
Yara
# Basic Rule to match string
rule matchString {
strings:
$someString = "Match me!"
condition:
$someString
}
# Match any of the following strings
rule matchString {
strings:
$someString = "Match me!"
$someString2 = "Or match me!"
$someString3 = "Match me too!"
condition:
any of them
}Cheatsheet

Windows
Linux
Crontab
Log Analysis
Last updated