Potential Raspberry Robin Aclui Dll SideLoading

Detects potential sideloading of malicious "aclui.dll" by OleView.This behavior was observed in Raspberry-Robin variants reported by chekpoint research on Feburary 2024.

Sigma rule (View on GitHub)

 1title: Potential Raspberry Robin Aclui Dll SideLoading
 2id: 0f3a9db2-c17a-480e-a723-d1f1c547ab6a
 3status: experimental
 4description: |
 5        Detects potential sideloading of malicious "aclui.dll" by OleView.This behavior was observed in Raspberry-Robin variants reported by chekpoint research on Feburary 2024.
 6references:
 7    - https://research.checkpoint.com/2024/raspberry-robin-keeps-riding-the-wave-of-endless-1-days/
 8    - https://globetech.biz/index.php/2023/05/19/evading-edr-by-dll-sideloading-in-csharp/
 9    - https://decoded.avast.io/threatintel/apt-treasure-trove-avast-suspects-chinese-apt-group-mustang-panda-is-collecting-data-from-burmese-government-agencies-and-opposition-groups/
10    - https://www.hexacorn.com/blog/2016/03/10/beyond-good-ol-run-key-part-36/
11    - https://strontic.github.io/xcyclopedia/library/aclui.dll-F883E9CA757B622B032FDCA5BF33D0DF.html
12author: Swachchhanda Shrawan Poudel
13date: 2024-07-31
14tags:
15    - detection.emerging-threats
16    - attack.defense-evasion
17    - attack.privilege-escalation
18    - attack.t1574.001
19    - attack.t1574.002
20logsource:
21    category: image_load
22    product: windows
23detection:
24    selection:
25        Image|endswith: '\OleView.exe'
26        ImageLoaded|endswith: '\aclui.dll'
27    filter_main_legit_oleview_paths:
28        Image|startswith:
29            - 'C:\Program Files (x86)\Windows Kits\'
30            - 'C:\Program Files\Microsoft SDKs\'
31    filter_optional_known_oleview_paths:
32        Image|contains: '\Windows Resource Kit\'
33    filter_main_is_signed:
34        Signed: 'true'
35    condition: selection and not 1 of filter_main_* and not 1 of filter_optional_*
36falsepositives:
37    - Unknown
38level: high

References

Related rules

to-top