Merge pull request #868 from avast/LZ_Installer_Viseman

Added YARA rule for VISEMAN installer
This commit is contained in:
Petr Zemek 2020-10-14 07:25:42 +02:00 committed by GitHub
commit c3df2c4806
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -642,6 +642,16 @@ rule thinstall_3348_3350_vs {
$1 at pe.entry_point
}
rule viseman {
meta:
tool = "I"
name = "Viseman Installer"
condition:
pe.overlay.offset != 0 and
pe.overlay.size > 4 and
uint32(pe.overlay.offset) == 0x56495345 // Reversed "VISE"
}
rule wise_installer_uv_01 {
meta:
tool = "I"