CVE-2023-53944
Unknown Unknown - Not Provided
BaseFortify

Publication date: 2025-12-18

Last updated on: 2025-12-26

Assigner: VulnCheck

Description
EasyPHP Webserver 14.1 contains a path traversal vulnerability that allows remote users with low privileges to access files outside the document root by bypassing SecurityManager restrictions. Attackers can send GET requests with encoded directory traversal sequences like /..%5c..%5c to read system files such as /windows/win.ini.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2025-12-18
Last Modified
2025-12-26
Generated
2026-06-16
AI Q&A
2025-12-18
EPSS Evaluated
2026-06-15
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
easyphp webserver 14.1
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-2023-53944 is a path traversal vulnerability in EasyPHP Webserver 14.1 that allows remote attackers with low privileges to bypass SecurityManager restrictions. By sending specially crafted GET requests with encoded directory traversal sequences like "/..%5c..%5c", attackers can access files outside the webserver's document root directory, such as sensitive system files like "/windows/win.ini". [1]

Impact Analysis

This vulnerability can allow attackers to read sensitive system files that should be protected, potentially exposing confidential information. Since the attack requires only low privileges and no user interaction, it can be exploited remotely over the network, leading to unauthorized disclosure of sensitive data and compromising system confidentiality. [1]

Detection Guidance

This vulnerability can be detected by monitoring network traffic for GET requests containing encoded directory traversal sequences such as "/..%5c..%5c". You can use network packet capture tools like tcpdump or Wireshark to filter HTTP GET requests with suspicious encoded traversal patterns. For example, a tcpdump command to detect such requests might be: tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | grep '%5c'. Additionally, web server logs can be searched for requests containing encoded traversal sequences using commands like: grep -i '%5c' /path/to/easyphp/logs/access.log. [1]

Mitigation Strategies

Immediate mitigation steps include restricting access to the EasyPHP Webserver, especially from untrusted networks, and monitoring for suspicious GET requests containing encoded directory traversal sequences. Applying any available patches or updates from the vendor is critical once released. As a temporary measure, you can implement web application firewall (WAF) rules to block requests containing encoded traversal patterns such as "/..%5c..%5c" to prevent exploitation. Additionally, reviewing and tightening SecurityManager configurations to enforce directory restrictions can help mitigate the risk. [1]

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