SecBoard
Zurück zur CVE-Übersicht

CVE-2025-8088

HIGH(8.8)KEV — Aktiv ausgenutzt

CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

Risk Signal Score80/100 — KRITISCH
  • CVSS 8.8 — Hoch
  • EPSS 94% — sehr wahrscheinlich ausgenutzt
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

Erwähnungen (letzte 60 Tage)

Artikel

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

94.1%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

8.8

Technische Schwere

SecBoard-Einordnung

CVE-2025-8088 ist eine Path Traversal Schwachstelle, die die Windows-Version von WinRAR betrifft. Angreifer können durch das Erstellen bösartiger Archivdateien beliebigen Code ausführen. Diese Schwachstelle wurde von Anton Cherepanov, Peter Košinár und Peter Strýček von ESET entdeckt und gemeldet.

Die Schwachstelle weist einen hohen CVSS-Score von 8.8 auf und eine sehr hohe EPSS-Wahrscheinlichkeit von 95%, was auf eine hohe Ausnutzbarkeit hindeutet. Besonders kritisch ist, dass CVE-2025-8088 in der KEV-Datenbank gelistet ist, was bedeutet, dass sie aktiv ausgenutzt wird ('in the wild'). Dies erfordert eine sofortige Reaktion.

Security-Teams sollten umgehend alle betroffenen WinRAR-Installationen prüfen und aktualisieren, um das Risiko einer Kompromittierung zu minimieren. Auch dtSearch ist als betroffenes Produkt gelistet und sollte entsprechend behandelt werden. Eine schnelle Patch-Implementierung ist aufgrund der aktiven Ausnutzung und der hohen Kritikalität unerlässlich.

KI-gestützte Einordnung auf Basis der NVD-Daten.

Beschreibung

A path traversal vulnerability affecting the Windows version of WinRAR allows the attackers to execute arbitrary code by crafting malicious archive files. This vulnerability was exploited in the wild and was discovered by Anton Cherepanov, Peter Košinár, and Peter Strýček from ESET.

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV). Die Schwachstelle wurde von mindestens zwei russisch-affiliierten Gruppen, Earth Dahu (aka Gamaredon) und SHADOW-EARTH-066 (aka UAC-0226), sowie RomCom und Paper Werewolf (aka GOFFEE) aktiv ausgenutzt. Die Angriffe wurden seit mindestens dem 18. Juli 2025 beobachtet, wobei Patches im Juli 2025 veröffentlicht wurden. Die Ausnutzung erfolgte über speziell präparierte RAR

Behobene Versionen

  • WinRAR 7.13 Final (veröffentlicht am 30.07.2025)
  • dtSearch 2023.01 und neuer

Threat-Hunting-Queries

Die Schwachstelle basiert auf Path Traversal und der Nutzung von Alternate Data Streams (ADS) in RAR-Archiven, um Dateien außerhalb des vorgesehenen Extraktionsverzeichnisses zu platzieren, insbesondere in Startup-Ordnern oder temporären Verzeichnissen, gefolgt von der Ausführung von LNK-Dateien, PowerShell-Skripten oder HTA-Dateien. Die Detektion konzentriert sich auf ungewöhnliche Dateierstellun

Sentinel/Defender KQL

DeviceFileEvents
| where InitiatingProcessFileName =~ "WinRAR.exe" or InitiatingProcessFileName =~ "Rar.exe" or InitiatingProcessFileName =~ "UnRAR.exe"
| where FileName endswith ".lnk" or FileName endswith ".hta" or FileName endswith ".vbs" or FileName endswith ".dll"
| where FolderPath contains @"\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\" or FolderPath contains @"\Temp\" or FolderPath contains @"\Local\"
| where not (FolderPath contains @"\Rar$" or FolderPath contains @"\WinRAR$") // Exclude legitimate WinRAR temp folders
| project Timestamp, DeviceName, InitiatingProcessFileName, FileName, FolderPath, SHA256
| join kind=inner (DeviceProcessEvents
    | where InitiatingProcessFileName =~ "WinRAR.exe" or InitiatingProcessFileName =~ "Rar.exe" or InitiatingProcessFileName =~ "UnRAR.exe"
    | where ProcessCommandLine contains ".lnk" or ProcessCommandLine contains ".hta" or ProcessCommandLine contains ".vbs" or ProcessCommandLine contains "powershell.exe"
    | project Timestamp, DeviceName, ProcessCommandLine, FileName, InitiatingProcessFileName, InitiatingProcessParentFileName
) on DeviceName, Timestamp
| extend Anomaly = "Possible WinRAR Path Traversal Exploit"
| project Anomaly, Timestamp, DeviceName, InitiatingProcessFileName, FileName, FolderPath, ProcessCommandLine

Splunk SPL

index=* (sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational OR sourcetype=WinEventLog:Security) 
| (Image="*\\WinRAR.exe" OR Image="*\\Rar.exe" OR Image="*\\UnRAR.exe") 
| (TargetFilename="*.lnk" OR TargetFilename="*.hta" OR TargetFilename="*.vbs" OR TargetFilename="*.dll") 
| (TargetFilename="*\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\Startup\\*" OR TargetFilename="*\\Temp\\*" OR TargetFilename="*\\Local\\*") 
| NOT (TargetFilename="*\\Rar$\\" OR TargetFilename="*\\WinRAR$\\" ) 
| stats count by _time, Host, Image, TargetFilename, CommandLine 
| rename Image as InitiatingProcessFileName, TargetFilename as FileName, CommandLine as ProcessCommandLine 
| eval Anomaly = "Possible WinRAR Path Traversal Exploit" 
| table Anomaly, _time, Host, InitiatingProcessFileName, FileName, ProcessCommandLine

Sigma

title: WinRAR Path Traversal Exploit
id: 00000000-0000-0000-0000-000000000001
status: experimental
description: Detects potential exploitation of CVE-2025-8088 in WinRAR by monitoring for suspicious file creations and process executions after archive extraction.
author: SecBoard Operations
date: 2024/01/01
modified: 2024/01/01
references:
  - https://www.win-rar.com/singlenewsview.html?&L=0&tx_ttnews%5Btt_news%5D=283&cHash=a64b4a8f662d3639dec8d65f47bc93c5
tags:
  - attack.execution
  - attack.persistence
  - cve.2025.8088
logsource:
  category: process_creation
  product: windows
detection:
  selection_winrar_process:
    ParentImage|endswith:
      - '\WinRAR.exe'
      - '\Rar.exe'
      - '\UnRAR.exe'
  selection_suspicious_file:
    Image|endswith:
      - '.lnk'
      - '.hta'
      - '.vbs'
      - '.dll'
    CommandLine|contains:
      - 'powershell.exe'
      - 'cmd.exe'
  selection_target_path:
    CommandLine|contains:
      - '\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\'
      - '\Temp\'
      - '\Local\'
  filter_legitimate_temp:
    CommandLine|contains:
      - '\Rar$\'
      - '\WinRAR$\'
  condition: selection_winrar_process and selection_suspicious_file and selection_target_path and not filter_legitimate_temp
fields:
  - CommandLine
  - ParentImage
  - Image
level: high

Elastic ES|QL

from process where
  (process.parent.executable.full_path : "*\\WinRAR.exe" or process.parent.executable.full_path : "*\\Rar.exe" or process.parent.executable.full_path : "*\\UnRAR.exe") and
  (process.executable.full_path : "*.lnk" or process.executable.full_path : "*.hta" or process.executable.full_path : "*.vbs" or process.executable.full_path : "*.dll") and
  (process.command_line : "*\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\Startup\\*" or process.command_line : "*\\Temp\\*" or process.command_line : "*\\Local\\*") and
  not (process.command_line : "*\\Rar$\\" or process.command_line : "*\\WinRAR$\\" ) and
  (process.command_line : "*powershell.exe*" or process.command_line : "*cmd.exe*")
|
  select
    @timestamp,
    host.name,
    process.parent.executable.full_path as winrar_process,
    process.executable.full_path as suspicious_file,
    process.command_line as command_line,
    'Possible WinRAR Path Traversal Exploit' as anomaly_description

SecBoard-generated · behavioral · requires customization — Von SecBoard erzeugt und nicht in einer Zielumgebung validiert. Vor dem Einsatz an die eigene Protokollierung anpassen.

Betroffene Produkte

  • cpe:2.3:a:rarlab:winrar:*:*:*:*:*:*:*:*
  • cpe:2.3:a:dtsearch:dtsearch:*:*:*:*:*:*:*:*

Referenzen