Potential 7za.DLL Sideloading

Detects potential DLL sideloading of "7za.dll"

Sigma rule (View on GitHub)

 1title: Potential 7za.DLL Sideloading
 2id: 4f6edb78-5c21-42ab-a558-fd2a6fc1fd57
 3status: test
 4description: Detects potential DLL sideloading of "7za.dll"
 5references:
 6    - https://www.gov.pl/attachment/ee91f24d-3e67-436d-aa50-7fa56acf789d
 7author: X__Junior
 8date: 2023-06-09
 9tags:
10    - attack.defense-evasion
11    - attack.persistence
12    - attack.privilege-escalation
13    - attack.t1574.001
14logsource:
15    category: image_load
16    product: windows
17detection:
18    selection:
19        ImageLoaded|endswith: '\7za.dll'
20    filter_main_legit_path:
21        Image|startswith:
22            - 'C:\Program Files (x86)\'
23            - 'C:\Program Files\'
24        ImageLoaded|startswith:
25            - 'C:\Program Files (x86)\'
26            - 'C:\Program Files\'
27    condition: selection and not 1 of filter_main_*
28falsepositives:
29    - Legitimate third party application located in "AppData" may leverage this DLL to offer 7z compression functionality and may generate false positives. Apply additional filters as needed.
30level: low

References

Related rules

to-top