SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-48796

MEDIUM · CVSS 5.3 EPSS 0.29% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-18 · Last synced 2026-09-17

CyberRota Analysis

AI-Generated

CefSharp versions prior to 148.0.90 are vulnerable due to improper path validation in the FolderSchemeHandlerFactory, allowing attackers to exploit crafted URLs to access local files outside the intended root directory. This vulnerability can lead to unauthorized file exposure in applications that utilize custom schemes or HTTP/HTTPS schemes. Developers and organizations using CefSharp in their Windows applications should prioritize updating to the fixed version to mitigate potential data leaks.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-48796
Severity
MEDIUM
CVSS
5.3
EPSS
0.29%
Windows

Original NVD Description

CefSharp provides .NET bindings for the Chromium Embedded Framework for Windows Forms and Windows Presentation Foundation applications. Prior to version 148.0.90, CefSharp/SchemeHandler/FolderSchemeHandlerFactory.cs used filePath.StartsWith(rootFolder, StringComparison.OrdinalIgnoreCase) to decide whether a decoded and canonicalized request path remained inside rootFolder. That raw prefix test did not enforce a directory boundary, so a request such as ..%2fwww2/secret.txt could escape a configured www directory into a sibling www2 directory whose path shared the same string prefix. Applications that register FolderSchemeHandlerFactory for a custom scheme or an HTTP or HTTPS scheme can therefore serve local files outside the intended root when an attacker can cause the embedded browser to request the crafted URL. The issue affects both Unix-style paths such as /tmp/app/www2 and Windows paths such as C:\app\www2, and the fix appends a directory separator to the normalized root before comparison while rejecting null bytes and alternate data stream syntax. This issue is fixed in version 148.0.90.