Want to write a Yara rule that fires on a range of strings hitting. E.g.:
$rrr = "shell"
$var1 = "cheese"
$var2 = "beef"
$var3 = "chicken"
condition:
$rrr and ($var*) > 2
Can't seem to get anything like this to compile.
Tried the above, tried other various regexs and assorted nonsense.