CVE-2026-53779
Received Received - Intake
Path Traversal in WebP Server Go via Percent-Encoded Backslashes

Publication date: 2026-06-22

Last updated on: 2026-06-22

Assigner: VulnCheck

Description
WebP Server Go through 0.14.4 contains a path traversal vulnerability on Windows that allows unauthenticated attackers to read files outside the configured IMG_PATH directory by sending requests with percent-encoded backslashes (%5C) that bypass the path.Clean() sanitization in handler/router.go. Attackers can exploit the discrepancy between Go's forward-slash-only path normalization and Windows file system APIs that treat backslashes and forward slashes as equivalent to access arbitrary files on the host filesystem accessible to the server process.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-22
Last Modified
2026-06-22
Generated
2026-06-23
AI Q&A
2026-06-22
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
webp_sh webp_server_go to 0.15.0 (exc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-22 The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

CVE-2026-53779 is a path traversal vulnerability in WebP Server Go versions prior to 0.15.0 on Windows systems. It allows unauthenticated attackers to read files outside the configured IMG_PATH directory by sending requests containing percent-encoded backslashes (%5C).

The root cause is a mismatch between Go's path normalization, which only uses forward slashes, and Windows file system APIs that treat backslashes and forward slashes as equivalent. This discrepancy allows attackers to bypass the path.Clean() sanitization in the handler/router.go file and access arbitrary files on the server's filesystem accessible to the server process.

Impact Analysis

This vulnerability can allow attackers to read sensitive files on the server outside the intended image directory without authentication. This unauthorized file access can lead to exposure of confidential information, configuration files, or other sensitive data accessible to the server process.

Because the vulnerability has a high severity rating (CVSS 8.7), it poses a significant security risk, potentially enabling attackers to gather information that could be used for further attacks or exploitation.

Detection Guidance

This vulnerability can be detected by monitoring for HTTP requests containing percent-encoded backslashes (%5C) targeting the WebP Server Go on Windows systems. Such requests attempt to exploit the path traversal flaw by bypassing path sanitization.

You can use network traffic inspection tools or web server logs to search for suspicious requests with %5C sequences in the URL paths.

  • Using grep on server logs to find requests with %5C: grep "%5C" access.log
  • Using tcpdump or Wireshark to capture HTTP traffic and filter for %5C in URLs.
  • Using curl or similar tools to test the server by sending crafted requests with %5C sequences and observing if files outside IMG_PATH are accessible.
Mitigation Strategies

The immediate mitigation step is to upgrade WebP Server Go to version 0.15.0 or later, where the vulnerability has been fixed.

The fix removes the vulnerable proxy mode logic and hardens path handling to prevent path traversal attacks, including encoded variants.

Until the upgrade can be applied, consider restricting access to the WebP Server Go service from untrusted networks and monitoring for suspicious requests containing percent-encoded backslashes.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53779. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart