YARA rules for FALLCHILL
5 rules · scoped to tool · back to FALLCHILL
YARA rules whose family, name, or description matches this tool or its tooling. Use these for binary-pattern hunts.
rule TA17_318A_rc4_stack_key_fallchill {
meta:
description = "HiddenCobra FallChill - rc4_stack_key"
author = "US CERT"
reference = "https://www.us-cert.gov/ncas/alerts/TA17-318B"
date = "2017-11-15"
id = "0a2afcab-f540-592f-aa75-64c0a13d26f3"
strings:
$stack_key = { 0d 06 09 2a ?? ?? ?? ?? 86 48 86 f7 ?? ?? ?? ?? 0d 01 01 01 ?? ?? ?? ?? 05 00 03 82 41 8b c9 41 8b d1 49 8b 40 08 48 ff c2 88 4c 02 ff ff c1 81 f9 00 01 00 00 7c eb }
condition:
(uint16(0) == 0x5A4D and uint16(uint32(0x3c)) == 0x4550) and $stack_key
}
rule TA17_318A_success_fail_codes_fallchill {
meta:
description = "HiddenCobra FallChill - success_fail_codes"
author = "US CERT"
reference = "https://www.us-cert.gov/ncas/alerts/TA17-318B"
date = "2017-11-15"
id = "f2390b03-238e-5ae6-af85-e5dd5790362f"
strings:
$s0 = { 68 7a 34 12 00 }
$s1 = { ba 7a 34 12 00 }
$f0 = { 68 5c 34 12 00 }
$f1 = { ba 5c 34 12 00 }
condition:
(uint16(0) == 0x5A4D and uint16(uint32(0x3c)) == 0x4550) and (($s0 and $f0) or ($s1 and $f1))
}
rule HiddenCobra_FallChill_1 {
meta:
description = "Auto-generated rule"
license = "Detection Rule License 1.1 https://github.com/Neo23x0/signature-base/blob/master/LICENSE"
author = "Florian Roth (Nextron Systems)"
reference = "https://www.us-cert.gov/ncas/alerts/TA17-318A"
date = "2017-11-15"
hash1 = "a606716355035d4a1ea0b15f3bee30aad41a2c32df28c2d468eafd18361d60d6"
id = "5bbeb5ba-93d7-5903-9132-749afe5776ae"
strings:
$s1 = "REGSVR32.EXE.MUI" fullword wide
$s2 = "Microsoft Corporation. All rights reserved." fullword wide
$s3 = "c%sd.e%sc %s > \"%s\" 2>&1" fullword wide
$s4 = "\" goto Loop" fullword ascii
$e1 = "xolhvhlxpvg" fullword ascii
$e2 = "tvgslhgybmanv" fullword ascii
$e3 = "CivagvTllosvok32Smakhslg" fullword ascii
$e4 = "GvgCfiivmgDrivxglibW" fullword ascii
$e5 = "OkvmPilxvhhTlpvm" fullword ascii
condition:
uint16(0) == 0x5a4d and filesize < 300KB and (
pe.imphash() == "6135d9bc3591ae7bc72d070eadd31755" or
3 of ($s*) or
4 of them
)
}
rule HiddenCobra_FallChill_2 {
meta:
description = "Auto-generated rule"
license = "Detection Rule License 1.1 https://github.com/Neo23x0/signature-base/blob/master/LICENSE"
author = "Florian Roth (Nextron Systems)"
reference = "https://www.us-cert.gov/ncas/alerts/TA17-318A"
date = "2017-11-15"
hash1 = "0a118eb23399000d148186b9079fa59caf4c3faa7e7a8f91533e467ac9b6ff41"
id = "c343e8e4-0785-5a47-99c1-98b189f4aaa0"
strings:
$s1 = "%s\\%s.dll" fullword wide
$s2 = "yurdkr.dll" fullword ascii
$s3 = "c%sd.e%sc %s > \"%s\" 2>&1" fullword wide
condition:
uint16(0) == 0x5a4d and filesize < 500KB and (
pe.imphash() == "cb36dcb9909e29a38c387b8a87e7e4ed" or
( 2 of them )
)
}
rule APT_FallChill_RC4_Keys {
meta:
license = "Detection Rule License 1.1 https://github.com/Neo23x0/signature-base/blob/master/LICENSE"
author = "Florian Roth (Nextron Systems)"
description = "Detects FallChill RC4 keys"
reference = "https://securelist.com/operation-applejeus/87553/"
date = "2018-08-21"
id = "ead7d84c-91aa-58b0-af3b-1211b0bde864"
strings:
/* MOV POS 4BYTE-OF-KEY */
$cod0 = { c7 ?? ?? da e1 61 ff
c7 ?? ?? 0c 27 95 87
c7 ?? ?? 17 57 a4 d6
c7 ?? ?? ea e3 82 2b }
condition:
uint16(0) == 0x5a4d and 1 of them
}