SecBoard
Zurück zur CVE-Übersicht

CVE-2016-3351

MEDIUM(6.5)KEV — Aktiv ausgenutzt

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

Risk Signal Score54/100 — HOCH
  • CVSS 6.5 — Mittel
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

26.3%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

6.5

Technische Schwere

SecBoard-Einordnung

CVE-2016-3351 ist eine Informationspreisgabe-Schwachstelle in Microsoft Internet Explorer (Versionen 9 bis 11) und Microsoft Edge. Ein entfernter Angreifer kann über eine speziell präparierte Webseite sensible Informationen erlangen. Die Schwachstelle wird als 'Microsoft Browser Information Disclosure Vulnerability' bezeichnet.

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

Beschreibung

Microsoft Internet Explorer 9 through 11 and Microsoft Edge allow remote attackers to obtain sensitive information via a crafted web site, aka "Microsoft Browser Information Disclosure Vulnerability."

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV)

Behobene Versionen

  • Internet Explorer 9 (3185319)
  • Internet Explorer 10 (3185319)
  • Internet Explorer 11 (3185319)
  • Microsoft Edge (3185611)
  • Microsoft Edge (3185614)
  • Microsoft Edge (3189866)

Threat-Hunting-Queries

Die Schwachstelle ermöglicht Informationspreisgabe durch eine speziell präparierte Webseite. Eine direkte IOC-basierte Erkennung ist ohne konkrete Angreifer-Indikatoren schwierig. Verhaltensbasierte Erkennung sollte sich auf ungewöhnliche Web-Zugriffe, Skriptausführungen oder Datenexfiltration konzentrieren, die auf eine Informationspreisgabe hindeuten könnten. Da die Schwachstelle in älteren Brow

Sentinel/Defender KQL

DeviceProcessEvents
| where InitiatingProcessFileName in~ ("iexplore.exe", "microsoftedge.exe")
| where ProcessCommandLine contains "http" or ProcessCommandLine contains "https"
| where InitiatingProcessParentFileName != "explorer.exe" // Filter out normal user browsing
| project Timestamp, DeviceName, InitiatingProcessFileName, ProcessCommandLine, RemoteIP, RemoteUrl
| summarize count() by bin(Timestamp, 1h), DeviceName, InitiatingProcessFileName, RemoteIP, RemoteUrl
| where count_ > 5 // Look for unusual high number of connections from browser process to external IPs

Splunk SPL

index=* (sourcetype=ms:defender OR sourcetype=ms:sysmon) (Image="*\\iexplore.exe" OR Image="*\\microsoftedge.exe")
| where not ParentImage="*\\explorer.exe"
| stats count by _time, host, Image, CommandLine, DestIP, URL
| where count > 5
| table _time, host, Image, CommandLine, DestIP, URL

Sigma

title: Microsoft Browser Information Disclosure Attempt
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    Image|endswith:
      - '\iexplore.exe'
      - '\microsoftedge.exe'
    ParentImage|endswith:
      - '\explorer.exe' # Exclude normal user browsing
  condition: selection
  timeframe: 1h
  level: medium
falsepositives:
  - Legitimate browser activity (if not filtered by parent process)

Elastic ES|QL

from process where process.executable in ("iexplore.exe", "microsoftedge.exe") and not process.parent.executable == "explorer.exe"
| stats count() by @timestamp, host.name, process.executable, process.command_line, destination.ip, url.full
| where count > 5
| sort @timestamp desc

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

Betroffene Produkte

  • cpe:2.3:a:microsoft:internet_explorer:9:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:internet_explorer:10:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:internet_explorer:11:-:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:edge:-:*:*:*:*:*:*:*

Referenzen