WPR_WindowsPasswordRecovery_EXE
Description
Windows Password Recovery - file wpr.exe
Query · yara
strings:
$x1 = "UuPipe" fullword ascii
$x2 = "dbadllgl" fullword ascii
$x3 = "UkVHSVNUUlkgTU9O" fullword ascii /* base64 encoded string 'REGISTRY MON' */
$x4 = "RklMRSBNT05JVE9SIC0gU1l" fullword ascii /* base64 encoded string 'FILE MONITOR - SY' */
$s1 = "WPR.exe" fullword wide
$s2 = "Windows Password Recovery" fullword wide
$op0 = { 5f df 27 17 89 } /* Opcode */
$op1 = { 5f 00 00 f2 e5 cb 97 } /* Opcode */
$op2 = { e8 ed 00 f0 cc e4 00 a0 17 } /* Opcode */
condition:
uint16(0) == 0x5a4d and
filesize < 20000KB and
(
1 of ($x*) or
all of ($s*) or
all of ($op*)
)