Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions support/yara_patterns/tools/pe/x86/installers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -2328,6 +2328,24 @@ rule inno_unicode_600
all of ($s1*)
}

rule ms_cabinet_sfx
{
meta:
tool = "I"
name = "Microsoft Cabinet SFX"
version = "1.0.x - 11.00.x"
source = "Made by Retdec Team"
strings:
$s01 = { 4D 53 43 46 00 00 00 00 } // 'MSCF\x00\x00\x00\x00'
$s02 = { 52 49 46 46 12 2E 00 00 41 56 49 20 4C 49 53 54 } // AVI header
$s03 = "wextract_cleanup%d"
$s04 = "CABINET" wide
condition:
pe.version_info["InternalName"] == "Wextract " and
pe.pdb_path == "wextract.pdb" and
all of them
}

rule sevenzip_sfx_3xx_01
{
meta:
Expand Down
Loading