SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-3576

HIGH · CVSS 7.2 EPSS 0.39%

Source: NVD + CISA KEV + EPSS · Published 2026-07-11 · Last synced 2026-08-10

CyberRota Analysis

AI-Generated

The Planyo Online Reservation System plugin for WordPress is vulnerable to Server-Side Request Forgery, allowing unauthenticated attackers to exploit the ulap.php file to perform Local File Inclusion. This flaw enables the retrieval of sensitive local files, such as /etc/passwd and wp-config.php, which could lead to significant data exposure. WordPress site administrators using this plugin should prioritize immediate patching or mitigation efforts to safeguard against potential exploitation.

CVE
CVE-2026-3576
Severity
HIGH
CVSS
7.2
EPSS
0.39%
WordPress

Original NVD Description

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.