APT_Sandworm_CyclopsBlink_config_identifiers
Description
Detects the initial characters used to identify Cyclops Blink configuration data
Query · yara
strings:
// Main config parameter data starts with the string "<p: "
//$ = "<p: " fullword // short atom - not necessary
// RSA public key data starts with the string "<k: "
$ = {3C 00 3C 6B 60 00 3A 20 90 09 00 00}
// X.509 certificate data starts with the string "<c: "
$ = {3C 00 3C 63 60 00 3A 20 90 09 00 00}
// RSA private key data starts with the string "<s: "
$ = {3C 00 3C 73 60 00 3A 20 90 09 00 00}
condition:
(uint32(0) == 0x464c457f) and (all of them)