I would like to know if we can count regex string in Yara?
I am not sure if Yara support this?
rule CountExample
{
strings:
$a = "dummy1"
$b = /dummy\d+/
condition:
#a == 6 and #b > 10
}
There only match condition $b but #b can not count