CVE Catalog

CVE-2026-3576

HighCVSS 7.2
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.36%

28th percentile - higher than 28% of all known CVEs

Summary

The Planyo Online Reservation System plugin for WordPress up to version 3.0 is vulnerable to Server-Side Request Forgery (SSRF) leading to Local File Inclusion (LFI). The ulap.php file acts as an AJAX proxy accessible without authentication, and the send_http_post() function fails to validate the URL scheme, allowing an attacker to use file:// URLs to read arbitrary local files on the server.

Risk Assessment

An unauthenticated attacker can read sensitive files such as /etc/passwd or wp-config.php, exposing database credentials and authentication keys, potentially leading to full server compromise.

Recommendation

Immediately update the Planyo Online Reservation System plugin to the latest available version that fixes this vulnerability. As a temporary workaround, disable the plugin or block access to ulap.php via a Web Application Firewall (WAF).

Related vulnerabilities

Original NVD description (English source)

The Planyo Online Reservation System plugin for WordPress is vulnerable to Server-Side Request Forgery leading to Local File Inclusion in all versions up to, and including, 3.0. The ulap.php file acts as an AJAX proxy and is directly accessible without WordPress bootstrapping or any authentication. The send_http_post() function validates the host of the provided URL against an allowlist that includes 'localhost', but critically fails to validate the URL scheme/protocol. This makes it possible for unauthenticated attackers to supply a file:// URL (e.g., file://localhost/etc/passwd) which bypasses the host allowlist check because parse_url() returns 'localhost' as the host. The URL is then passed to curl_init() or fopen(), both of which support the file:// protocol, allowing the attacker to read arbitrary local files on the server and have their contents returned in the HTTP response. This can lead to disclosure of sensitive files such as /etc/passwd, wp-config.php (containing database credentials and authentication keys), and other server-side files.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS