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: test
 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    - attack.defense-evasion
16    - attack.privilege-escalation
17    - attack.t1574.001
18    - detection.emerging-threats
19logsource:
20    category: image_load
21    product: windows
22detection:
23    selection:
24        Image|endswith: '\OleView.exe'
25        ImageLoaded|endswith: '\aclui.dll'
26    filter_main_legit_oleview_paths:
27        Image|startswith:
28            - 'C:\Program Files (x86)\Windows Kits\'
29            - 'C:\Program Files\Microsoft SDKs\'
30    filter_optional_known_oleview_paths:
31        Image|contains: '\Windows Resource Kit\'
32    filter_main_is_signed:
33        Signed: 'true'
34    condition: selection and not 1 of filter_main_* and not 1 of filter_optional_*
35falsepositives:
36    - Unknown
37level: high

References

Related rules

to-top