Sneed-Reactivity/yara-mikesxrs/malc0de/webc2_head_apt1.yar

11 lines
205 B
Text
Raw Normal View History

rule webc2_head : apt
{
strings:
$a = "<head>"
$b = "</head>"
$c = "connect %s"
$d = "https://"
$e = "Ready!"
condition:
filesize < 100KB and (5 of ($a,$b,$c,$d,$e))
}