APT27 - Emissary Panda Activity

Detects the execution of DLL side-loading malware used by threat group Emissary Panda aka APT27

Sigma rule (View on GitHub)

 1title: APT27 - Emissary Panda Activity
 2id: 9aa01d62-7667-4d3b-acb8-8cb5103e2014
 3status: test
 4description: Detects the execution of DLL side-loading malware used by threat group Emissary Panda aka APT27
 5references:
 6    - https://app.any.run/tasks/579e7587-f09d-4aae-8b07-472833262965
 7    - https://twitter.com/cyb3rops/status/1168863899531132929
 8    - https://research.nccgroup.com/2018/05/18/emissary-panda-a-potential-new-malicious-tool/
 9author: Florian Roth (Nextron Systems)
10date: 2018/09/03
11modified: 2023/03/09
12tags:
13    - attack.defense_evasion
14    - attack.t1574.002
15    - attack.g0027
16    - detection.emerging_threats
17logsource:
18    category: process_creation
19    product: windows
20detection:
21    selection_sllauncher:
22        ParentImage|endswith: '\sllauncher.exe'
23        Image|endswith: '\svchost.exe'
24    selection_svchost:
25        ParentImage|contains: '\AppData\Roaming\'
26        Image|endswith: '\svchost.exe'
27        CommandLine|contains: '-k'
28    condition: 1 of selection_*
29falsepositives:
30    - Unlikely
31level: critical

References

Related rules

to-top