Cyber Resilience

CVE-2026-27747

HighPublic PoC

Published: 25 February 2026

Published
25 February 2026
Modified
02 March 2026
KEV Added
Patch
CVSS Score v4 7.1 CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/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
EPSS Score 0.0038 29.5th percentile
Risk Priority 55 floored blend · peak EPSS

Summary

CVE-2026-27747 is a high-severity SQL Injection (CWE-89) vulnerability in Spip Interface Traduction Objets. Its CVSS base score is 7.1 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 29.5th 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 RA-5 (Vulnerability Monitoring and Scanning) and SI-10 (Information Input Validation).

Deeper analysis

CVE-2026-27747 is an authenticated SQL injection vulnerability affecting the SPIP interface_traduction_objets plugin in versions prior to 2.2.2. The flaw resides in the interface_traduction_objets_pipelines.php file, where the plugin processes translation requests by reading the id_parent parameter from user-supplied input and directly concatenating it into a SQL WHERE clause within a sql_getfetsel() function call, without any input validation or parameterization. This violates CWE-89 (SQL Injection) and carries a CVSS v3.1 base score of 8.8 (AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H).

An authenticated attacker with editor-level privileges can exploit this vulnerability by injecting crafted SQL expressions into the id_parent parameter during translation requests. Successful exploitation allows manipulation of the backend SQL query, potentially resulting in the disclosure or modification of database contents. Depending on the database configuration and attacker privileges, it may also lead to denial of service.

Advisories recommend updating the interface_traduction_objets plugin to version 2.2.2 or later to mitigate the issue, as detailed in the SPIP security blog post announcing SPIP 4.4.10, the plugin's git commit db3417b7811774f04c3ff191ca1737fe660ef0be implementing the fix, and analyses from VulnCheck and Chocapikk. The plugin page on plugins.spip.net provides download access for patched versions.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability details

The SPIP interface_traduction_objets plugin versions prior to 2.2.2 contain an authenticated SQL injection vulnerability in interface_traduction_objets_pipelines.php. When handling translation requests, the plugin reads the id_parent parameter from user-supplied input and concatenates it directly into a SQL WHERE clause in a…

more

call to sql_getfetsel() without input validation or parameterization. An authenticated attacker with editor-level privileges can inject crafted SQL expressions into the id_parent parameter to manipulate the backend query. Successful exploitation can result in disclosure or modification of database contents and may lead to denial of service depending on the database configuration and privileges.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1213.006 Databases Collection
Adversaries may leverage databases to mine valuable information.
Why these techniques?

Authenticated SQL injection in SPIP CMS plugin directly enables T1190 (exploiting the public-facing web app with crafted id_parent input) and facilitates T1213.006 (arbitrary database queries for data collection/modification).

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-27745Same product: Spip Interface Traduction Objets
CVE-2026-27743Same vendor: Spip
CVE-2026-22206Same vendor: Spip
CVE-2018-25199Shared CWE-89
CVE-2026-27179Shared CWE-89
CVE-2025-0308Shared CWE-89
CVE-2019-25581Shared CWE-89
CVE-2026-27885Shared CWE-89
CVE-2019-25479Shared CWE-89
CVE-2026-1476Shared CWE-89

Affected Assets

spip
interface traduction objets
≤ 2.2.2

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

SI-10 directly prevents SQL injection by requiring validation and sanitization of user-supplied inputs like the id_parent parameter before concatenation into SQL queries.

prevent

SI-2 ensures timely patching of known flaws, such as updating the SPIP interface_traduction_objets plugin to version 2.2.2 to remediate the SQL injection vulnerability.

detect

RA-5 requires vulnerability scanning that identifies SQL injection flaws like CVE-2026-27747 in plugins, enabling proactive remediation.

References