HackTool_MSIL_PXELOOT_2
Description
This rule looks for .NET PE files that have the strings of various method names in the PXE And Loot code.
Query · yara
strings:
$msil = "_CorExeMain" ascii wide
$str2 = "InvestigateRPC" ascii nocase wide
$str3 = "DhcpRecon" ascii nocase wide
$str4 = "UnMountWim" ascii nocase wide
$str5 = "remote WIM image" ascii nocase wide
$str6 = "DISMWrapper" ascii nocase wide
$str7 = "findTFTPServer" ascii nocase wide
$str8 = "DHCPRequestRecon" ascii nocase wide
$str9 = "DHCPDiscoverRecon" ascii nocase wide
$str10 = "GoodieFile" ascii nocase wide
$str11 = "InfoStore" ascii nocase wide
$str12 = "execute" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and $msil and all of ($str*)