We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa05f39 + b3c4ad8 commit 8be53bbCopy full SHA for 8be53bb
support/yara_patterns/tools/pe/x86/installers.yara
@@ -2328,6 +2328,24 @@ rule inno_unicode_600
2328
all of ($s1*)
2329
}
2330
2331
+rule ms_cabinet_sfx
2332
+{
2333
+ meta:
2334
+ tool = "I"
2335
+ name = "Microsoft Cabinet SFX"
2336
+ version = "1.0.x - 11.00.x"
2337
+ source = "Made by Retdec Team"
2338
+ strings:
2339
+ $s01 = { 4D 53 43 46 00 00 00 00 } // 'MSCF\x00\x00\x00\x00'
2340
+ $s02 = { 52 49 46 46 12 2E 00 00 41 56 49 20 4C 49 53 54 } // AVI header
2341
+ $s03 = "wextract_cleanup%d"
2342
+ $s04 = "CABINET" wide
2343
+ condition:
2344
+ pe.version_info["InternalName"] == "Wextract " and
2345
+ pe.pdb_path == "wextract.pdb" and
2346
+ all of them
2347
+}
2348
+
2349
rule sevenzip_sfx_3xx_01
2350
{
2351
meta:
0 commit comments