Potential CVE-2024-35250 Exploitation Activity

Detects potentially suspicious loading of "ksproxy.ax", which may indicate an attempt to exploit CVE-2024-35250.

Sigma rule (View on GitHub)

 1title: Potential CVE-2024-35250 Exploitation Activity
 2id: 17ce9373-2163-4a2c-90ba-f91e9ef7a8c1
 3status: experimental
 4description: |
 5        Detects potentially suspicious loading of "ksproxy.ax", which may indicate an attempt to exploit CVE-2024-35250.
 6references:
 7    - https://thehackernews.com/2024/12/cisa-and-fbi-raise-alerts-on-exploited.html
 8    - https://github.com/varwara/CVE-2024-35250
 9    - https://devco.re/blog/2024/08/23/streaming-vulnerabilities-from-windows-kernel-proxying-to-kernel-part1-en/
10    - https://www.cisa.gov/known-exploited-vulnerabilities-catalog
11author: '@eyezuhk Isaac Fernandes'
12date: 2025-02-19
13tags:
14    - attack.privilege-escalation
15    - attack.t1068
16    - cve.2024-35250
17    - detection.emerging-threats
18logsource:
19    category: image_load
20    product: windows
21detection:
22    selection:
23        ImageLoaded|endswith: '\ksproxy.ax'
24    filter_main_system_paths:
25        Image|startswith:
26            - 'C:\Program Files\'
27            - 'C:\Program Files (x86)\'
28            - 'C:\Windows\System32\'
29            - 'C:\Windows\SysWOW64\'
30    filter_optional_teams:
31        Image|endswith: '\AppData\Local\Microsoft\Teams\current\Teams.exe'
32    filter_optional_zoom:
33        Image|endswith: '\AppData\Roaming\Zoom\bin\Zoom.exe'
34    filter_optional_firefox:
35        Image|endswith: '\AppData\Local\Mozilla Firefox\firefox.exe'
36    filter_optional_chrome:
37        Image|endswith: '\AppData\Local\Google\Chrome\Application\chrome.exe'
38    filter_optional_opera:
39        Image|endswith: '\AppData\Local\Programs\Opera\opera.exe'
40    filter_optional_discord:
41        Image|endswith: '\AppData\Local\Discord\app-*\Discord.exe'
42    condition: selection and not 1 of filter_main_* and not 1 of filter_optional_*
43falsepositives:
44    - Legitimate applications that use Windows Stream Interface APIs.
45    - Media applications that use DirectShow filters.
46level: medium

References

Related rules

to-top