mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
Lazarus Rules
This commit is contained in:
parent
249d5fcbb8
commit
2d1e3c668b
61
yara/apt_lazarus_aug20.yar
Normal file
61
yara/apt_lazarus_aug20.yar
Normal file
@ -0,0 +1,61 @@
|
||||
|
||||
rule APT_NK_Lazarus_RC4_Loop {
|
||||
meta:
|
||||
author = "f-secure "
|
||||
description = "Detects RC4 loop in Lazarus Group implant"
|
||||
date = "2020-06-10"
|
||||
reference = "https://labs.f-secure.com/publications/ti-report-lazarus-group-cryptocurrency-vertical"
|
||||
strings:
|
||||
$str_rc4_loop = { 41 FE 8? 00 01 00 00 45 0F B6 ?? 00 01 00 00 48
|
||||
FF C? 43 0F B6 0? ?? 41 00 8? 01 01 00 00 41 0F
|
||||
B6 ?? 01 01 00 00 }
|
||||
condition:
|
||||
int16(0) == 0x5a4d and filesize < 3000KB and $str_rc4_loop
|
||||
}
|
||||
|
||||
rule APT_NK_Lazarus_Lssvc_Ntuser_Unpacked {
|
||||
meta:
|
||||
author = "f-secure"
|
||||
description = "Detects unpacked variant of Lazarus Group implant"
|
||||
date = "2020-06-10"
|
||||
reference = "https://labs.f-secure.com/publications/ti-report-lazarus-group-cryptocurrency-vertical"
|
||||
strings:
|
||||
$str_curl = "CLIENT libcurl" ascii
|
||||
$str_mask = "%s%s\\%s" ascii wide fullword
|
||||
$str_exe_1 = "explorer.exe" ascii wide nocase
|
||||
$str_exe_2 = "lsass.exe" ascii wide nocase
|
||||
$str_misc_ext = ".cid" ascii wide
|
||||
$str_misc_debug = "SeDebugPrivilege" ascii wide
|
||||
$str_misc_ntdll = "NtProtectVirtualMemory" ascii
|
||||
condition:
|
||||
$str_curl
|
||||
and $str_mask
|
||||
and 1 of ($str_exe*)
|
||||
and 2 of ($str_misc*)
|
||||
}
|
||||
|
||||
rule APT_NK_Lazarus_Network_Backdoor_Unpacked {
|
||||
meta:
|
||||
author = "f-secure"
|
||||
description = "Detects unpacked variant of Lazarus Group network backdoor"
|
||||
date = "2020-06-10"
|
||||
reference = "https://labs.f-secure.com/publications/ti-report-lazarus-group-cryptocurrency-vertical"
|
||||
strings:
|
||||
$str_netsh_1 = "netsh firewall add portopening TCP %d" ascii wide nocase
|
||||
$str_netsh_2 = "netsh firewall delete portopening TCP %d" ascii wide nocase
|
||||
$str_mask_1 = "cmd.exe /c \"%s >> %s 2>&1\"" ascii wide
|
||||
$str_mask_2 = "cmd.exe /c \"%s 2>> %s\"" ascii wide
|
||||
$str_mask_3 = "%s\\%s\\%s" ascii wide
|
||||
$str_other_1 = "perflog.dat" ascii wide nocase
|
||||
$str_other_2 = "perflog.evt" ascii wide nocase
|
||||
$str_other_3 = "cbstc.log" ascii wide nocase
|
||||
$str_other_4 = "LdrGetProcedureAddress" ascii
|
||||
$str_other_5 = "NtProtectVirtualMemory" ascii
|
||||
condition:
|
||||
int16(0) == 0x5a4d
|
||||
and filesize < 3000KB
|
||||
and 1 of ($str_netsh*)
|
||||
and 1 of ($str_mask*)
|
||||
and 1 of ($str_other*)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user