avutil.dll
There are executables that allowavutil.dll to be DLL hijacked.Expected Locations
The fileavutil.dll is normally found in the following paths:
%PROGRAMFILES%\VSO\ConvertX\7%PROGRAMFILES%\VSO\convertXtoDVD%PROGRAMFILES%\Common Files\Oracle\Java\javapath
Vulnerable Executables
DLL Sideloading (1 EXE)
By copying (and optionally renaming) any of the following vulnerable applications to a user-writeable folder, alongside a malicious
avutil.dll, arbitrary code can be executed through it.
Detection
Below a sample Sigma rule that will find processes that loadedavutil.dll located in a folder that is not one of the expected locations (see above).
title: Possible DLL Hijacking of avutil.dll
id: 4821731b-3109-48a3-1955-5b9ff8677522
status: experimental
description: Detects possible DLL hijacking of avutil.dll by looking for suspicious image loads, loading this DLL from unexpected locations.
references:
- https://hijacklibs.net/entries/3rd_party/vsosoftware/avutil.html
author: "Wietze Beukema"
date: 2024-07-01
tags:
- attack.defense_evasion
- attack.T1574.001
logsource:
product: windows
category: image_load
detection:
selection:
ImageLoaded: '*\avutil.dll'
filter:
ImageLoaded:
- 'c:\program files\VSO\ConvertX\7\\*'
- 'c:\program files (x86)\VSO\ConvertX\7\\*'
- 'c:\program files\VSO\convertXtoDVD\\*'
- 'c:\program files (x86)\VSO\convertXtoDVD\\*'
- 'c:\program files\Common Files\Oracle\Java\javapath\\*'
- 'c:\program files (x86)\Common Files\Oracle\Java\javapath\\*'
condition: selection and not filter
falsepositives:
- False positives are likely. This rule is more suitable for hunting than for generating detections.title: Possible preparation for avutil.dll DLL Hijacking
id: 4821732b-3109-48a3-1955-5b9ff8677522
status: experimental
description: Detects possible DLL hijacking of avutil.dll by looking for suspicious file writes of this DLL, to unexpected locations.
references:
- https://hijacklibs.net/entries/3rd_party/vsosoftware/avutil.html
author: "Wietze Beukema"
date: 2024-07-01
tags:
- attack.defense_evasion
- attack.T1574.001
logsource:
product: windows
category: file_event
detection:
selection:
TargetFileName: '*\avutil.dll'
filter:
TargetFileName:
- 'c:\program files\VSO\ConvertX\7\\*'
- 'c:\program files (x86)\VSO\ConvertX\7\\*'
- 'c:\program files\VSO\convertXtoDVD\\*'
- 'c:\program files (x86)\VSO\convertXtoDVD\\*'
- 'c:\program files\Common Files\Oracle\Java\javapath\\*'
- 'c:\program files (x86)\Common Files\Oracle\Java\javapath\\*'
condition: selection and not filter
falsepositives:
- False positives are likely. This rule is more suitable for hunting than for generating detections.title: Possibly malicious versions of avutil.dll
id: 4821733b-3109-48a3-1955-5b9ff8677522
status: experimental
description: Detects possible DLL hijacking of avutil.dll by looking for versions not meeting the known signature data.
references:
- https://hijacklibs.net/entries/3rd_party/vsosoftware/avutil.html
author: "Wietze Beukema"
date: 2024-07-01
tags:
- attack.defense_evasion
- attack.T1574.001
logsource:
product: windows
category: image_load
detection:
selection:
ImageLoaded: '*\avutil.dll'
filter:
ImageLoaded:
- Signed: 'true'
- SignatureStatus: 'signed'
- Signature|contains:
- 'CN=VSO Software SARL, O=VSO Software SARL, L=Toulouse, S=Midi-Pyrenees, C=FR'
condition: selection and not filter
falsepositives:
- False positives are likely. This rule is more suitable for hunting than for generating detections.Note that this rule is also included in the Detection Content Feeds that comprise all DLL Hijacking entries part of HijackLibs.
FAQs
Why should I care about this?
DLL Hijacking enables the execution of malicious code through a signed and/or trusted executable. Defensive measures such as AV and EDR solutions may not pick up on this activity out of the box, and allow-list applications such as AppLocker may not block the execution of the untrusted code. There are numerous examples of threat actors that have been observed to leaverage DLL Hijacking to achieve their objectives. As such, this project wants to encourage you to monitor for unusual activity involvingavutil.dll.
How do I abuse this vulnerability?
As a red teamer, you will have to compile your own version ofavutil.dll. There are various guides on how this can be achieved.