SUSP_NET_Msil_Suspicious_Use_StrReverse
Description
Detects mixed use of Microsoft.CSharp and VisualBasic to use StrReverse
Query · yara
strings:
$a1 = ", PublicKeyToken="
$a2 = ".NETFramework,Version="
$csharp = "Microsoft.CSharp"
$vbnet = "Microsoft.VisualBasic"
$strreverse = "StrReverse"
condition:
uint16(0) == 0x5a4d
and filesize < 50MB
and all of ($a*)
and $csharp
and $vbnet
and $strreverse