Cyber Resilience

CVE-2026-24744

MediumPublic PoC

Published: 18 February 2026

Published
18 February 2026
Modified
20 February 2026
KEV Added
Patch
CVSS Score v3.1 5.7 CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:L/I:H/A:L
EPSS Score 0.0006 18.6th percentile
Risk Priority 11 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2026-24744 is a medium-severity Cross-site Scripting (CWE-79) vulnerability in Invoiceplane Invoiceplane. Its CVSS base score is 5.7 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique JavaScript (T1059.007); ranked at the 18.6th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified are NIST 800-53 SI-10 (Information Input Validation) and SI-15 (Information Output Filtering).

Deeper analysis

CVE-2026-24744 is a Stored Cross-Site Scripting (XSS) vulnerability, classified under CWE-79, affecting InvoicePlane version 1.7.0, a self-hosted open source application for managing invoices, clients, and payments. The flaw occurs in the Edit Invoices functions, where the application fails to validate user input in the `invoice_number` parameter, enabling the injection of malicious scripts. Published on 2026-02-18, it carries a CVSS v3.1 base score of 5.7 (AV:N/AC:L/PR:H/UI:R/S:U/C:L/I:H/A:L).

Exploitation requires administrator privileges, allowing a malicious admin to inject XSS payloads via the vulnerable parameter. Successful attacks can lead to unauthorized modification of application data, creation of persistent backdoors through stored malicious scripts, and full compromise of the application's integrity, particularly when combined with user interaction from other admins or users viewing affected invoices.

InvoicePlane version 1.7.1 patches the issue by addressing the input validation deficiency. Security practitioners should review the fixing commit at https://github.com/InvoicePlane/InvoicePlane/commit/93622f2df88a860d89bfee56012cabb2942061d6 and the GitHub security advisory at https://github.com/InvoicePlane/InvoicePlane/security/advisories/GHSA-5mxx-553h-m62w for implementation details and upgrade guidance.

EU & UK References

Vulnerability details

InvoicePlane is a self-hosted open source application for managing invoices, clients, and payments. A Stored Cross-Site Scripting (XSS) vulnerability occurs in the Edit Invoices functions of InvoicePlane version 1.7.0. When editing invoices, the application does not validate user input at…

more

the `invoice_number` parameter. Although administrator privileges are required to exploit it, this is still considered a critical vulnerability as it can cause actions such as unauthorized modification of application data, creation of persistent backdoors through stored malicious scripts, and full compromise of the application's integrity. Version 1.7.1 patches the issue.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1059.007 JavaScript Execution
Adversaries may abuse various implementations of JavaScript for execution.
T1185 Browser Session Hijacking Collection
Adversaries may take advantage of security vulnerabilities and inherent functionality in browser software to change content, modify user-behaviors, and intercept information as part of various browser session hijacking techniques.
Why these techniques?

Stored XSS enables arbitrary JavaScript injection/execution in other users' browsers (T1059.007) and directly facilitates browser session hijacking or input capture via malicious scripts persisted in invoice data (T1185).

Confidence: MEDIUM · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2026-24743Same product: Invoiceplane Invoiceplane
CVE-2026-24746Same product: Invoiceplane Invoiceplane
CVE-2026-24745Same product: Invoiceplane Invoiceplane
CVE-2024-56975Same product: Invoiceplane Invoiceplane
CVE-2026-23491Same product: Invoiceplane Invoiceplane
CVE-2026-25548Same product: Invoiceplane Invoiceplane
CVE-2025-67084Same product: Invoiceplane Invoiceplane
CVE-2025-27279Shared CWE-79
CVE-2025-24541Shared CWE-79
CVE-2024-56036Shared CWE-79

Affected Assets

invoiceplane
invoiceplane
1.7.0

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires validation of the invoice_number input parameter before processing, which is the precise deficiency enabling the stored XSS injection.

prevent

Requires filtering/sanitization of data (including invoice_number values) on output to users, blocking execution of any stored malicious scripts.

detect

Mandates integrity verification mechanisms that can detect unauthorized script insertion or modification of invoice data.

References