Instituto Nacional de ciberseguridad. Sección Incibe
Instituto Nacional de Ciberseguridad. Sección INCIBE-CERT

Vulnerabilidades

Con el objetivo de informar, advertir y ayudar a los profesionales sobre las ultimas vulnerabilidades de seguridad en sistemas tecnológicos, ponemos a disposición de los usuarios interesados en esta información una base de datos con información en castellano sobre cada una de las ultimas vulnerabilidades documentadas y conocidas.

Este repositorio con más de 75.000 registros esta basado en la información de NVD (National Vulnerability Database) – en función de un acuerdo de colaboración – por el cual desde INCIBE realizamos la traducción al castellano de la información incluida. En ocasiones este listado mostrará vulnerabilidades que aún no han sido traducidas debido a que se recogen en el transcurso del tiempo en el que el equipo de INCIBE realiza el proceso de traducción.

Se emplea el estándar de nomenclatura de vulnerabilidades CVE (Common Vulnerabilities and Exposures), con el fin de facilitar el intercambio de información entre diferentes bases de datos y herramientas. Cada una de las vulnerabilidades recogidas enlaza a diversas fuentes de información así como a parches disponibles o soluciones aportadas por los fabricantes y desarrolladores. Es posible realizar búsquedas avanzadas teniendo la opción de seleccionar diferentes criterios como el tipo de vulnerabilidad, fabricante, tipo de impacto entre otros, con el fin de acortar los resultados.

Mediante suscripción RSS o Boletines podemos estar informados diariamente de las ultimas vulnerabilidades incorporadas al repositorio.

CVE-2026-3611

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Honeywell IQ4x building management controller, exposes its full web-based HMI without authentication in its factory-default configuration. With no user module configured, security is disabled by design and the system operates under a System Guest (level 100) context, granting read/write privileges to any party able to reach the HTTP interface. Authentication controls are only enforced after a web user is created via U.htm, which dynamically enables the user module. Because this function is accessible prior to authentication, a remote user can create a new account with administrative read/write permissions enabling the user module and imposing authentication under attacker-controlled credentials. This action can effectively lock legitimate operators out of local and web-based configuration and administration.
Gravedad CVSS v4.0: CRÍTICA
Última modificación:
12/03/2026

CVE-2026-1527

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** ImpactWhen an application passes user-controlled input to the upgrade option of client.request(), an attacker can inject CRLF sequences (\r\n) to:<br /> <br /> * Inject arbitrary HTTP headers<br /> * Terminate the HTTP request prematurely and smuggle raw data to non-HTTP services (Redis, Memcached, Elasticsearch)<br /> The vulnerability exists because undici writes the upgrade value directly to the socket without validating for invalid header characters:<br /> <br /> // lib/dispatcher/client-h1.js:1121<br /> if (upgrade) {<br /> header += `connection: upgrade\r\nupgrade: ${upgrade}\r\n`<br /> }
Gravedad CVSS v3.1: MEDIA
Última modificación:
12/03/2026

CVE-2026-1528

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** ImpactA server can reply with a WebSocket frame using the 64-bit length form and an extremely large length. undici&amp;#39;s ByteParser overflows internal math, ends up in an invalid state, and throws a fatal TypeError that terminates the process.<br /> <br /> Patches<br /> <br /> Patched in the undici version v7.24.0 and v6.24.0. Users should upgrade to this version or later.
Gravedad CVSS v3.1: ALTA
Última modificación:
12/03/2026

CVE-2026-2229

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** ImpactThe undici WebSocket client is vulnerable to a denial-of-service attack due to improper validation of the server_max_window_bits parameter in the permessage-deflate extension. When a WebSocket client connects to a server, it automatically advertises support for permessage-deflate compression. A malicious server can respond with an out-of-range server_max_window_bits value (outside zlib&amp;#39;s valid range of 8-15). When the server subsequently sends a compressed frame, the client attempts to create a zlib InflateRaw instance with the invalid windowBits value, causing a synchronous RangeError exception that is not caught, resulting in immediate process termination.<br /> <br /> The vulnerability exists because:<br /> <br /> * The isValidClientWindowBits() function only validates that the value contains ASCII digits, not that it falls within the valid range 8-15<br /> * The createInflateRaw() call is not wrapped in a try-catch block<br /> * The resulting exception propagates up through the call stack and crashes the Node.js process
Gravedad CVSS v3.1: ALTA
Última modificación:
12/03/2026

CVE-2026-2581

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** This is an uncontrolled resource consumption vulnerability (CWE-400) that can lead to Denial of Service (DoS).<br /> <br /> In vulnerable Undici versions, when interceptors.deduplicate() is enabled, response data for deduplicated requests could be accumulated in memory for downstream handlers. An attacker-controlled or untrusted upstream endpoint can exploit this with large/chunked responses and concurrent identical requests, causing high memory usage and potential OOM process termination.<br /> <br /> Impacted users are applications that use Undici’s deduplication interceptor against endpoints that may produce large or long-lived response bodies.<br /> <br /> PatchesThe issue has been patched by changing deduplication behavior to stream response chunks to downstream handlers as they arrive (instead of full-body accumulation), and by preventing late deduplication when body streaming has already started.<br /> <br /> Users should upgrade to the first official Undici (and Node.js, where applicable) releases that include this patch.
Gravedad CVSS v3.1: MEDIA
Última modificación:
12/03/2026

CVE-2026-1526

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** The undici WebSocket client is vulnerable to a denial-of-service attack via unbounded memory consumption during permessage-deflate decompression. When a WebSocket connection negotiates the permessage-deflate extension, the client decompresses incoming compressed frames without enforcing any limit on the decompressed data size. A malicious WebSocket server can send a small compressed frame (a "decompression bomb") that expands to an extremely large size in memory, causing the Node.js process to exhaust available memory and crash or become unresponsive.<br /> <br /> The vulnerability exists in the PerMessageDeflate.decompress() method, which accumulates all decompressed chunks in memory and concatenates them into a single Buffer without checking whether the total size exceeds a safe threshold.
Gravedad CVSS v3.1: ALTA
Última modificación:
12/03/2026

CVE-2026-32260

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** Deno is a JavaScript, TypeScript, and WebAssembly runtime. From 2.7.0 to 2.7.1, A command injection vulnerability exists in Deno&amp;#39;s node:child_process polyfill (shell: true mode) that bypasses the fix for CVE-2026-27190. The two-stage argument sanitization in transformDenoShellCommand (ext/node/polyfills/internal/child_process.ts) has a priority bug: when an argument contains a $VAR pattern, it is wrapped in double quotes (L1290) instead of single quotes. Double quotes in POSIX sh do not suppress backtick command substitution, allowing injected commands to execute. An attacker who controls arguments passed to spawnSync or spawn with shell: true can execute arbitrary OS commands, bypassing Deno&amp;#39;s permission system. This vulnerability is fixed in 2.7.2.
Gravedad CVSS v3.1: ALTA
Última modificación:
12/03/2026

CVE-2026-32269

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** Parse Server is an open source backend that can be deployed to any infrastructure that can run Node.js. Prior to 9.6.0-alpha.13 and 8.6.39, the OAuth2 authentication adapter does not correctly validate app IDs when appidField and appIds are configured. During app ID validation, a malformed value is sent to the token introspection endpoint instead of the user&amp;#39;s actual access token. Depending on the introspection endpoint&amp;#39;s behavior, this could either cause all OAuth2 logins to fail, or allow authentication from disallowed app contexts if the endpoint returns valid-looking data for the malformed request. Deployments using the OAuth2 adapter with appidField and appIds configured are affected. This vulnerability is fixed in 9.6.0-alpha.13 and 8.6.39.
Gravedad CVSS v4.0: MEDIA
Última modificación:
12/03/2026

CVE-2026-32274

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** Black is the uncompromising Python code formatter. Prior to 26.3.1, Black writes a cache file, the name of which is computed from various formatting options. The value of the --python-cell-magics option was placed in the filename without sanitization, which allowed an attacker who controls the value of this argument to write cache files to arbitrary file system locations. Fixed in Black 26.3.1.
Gravedad CVSS v4.0: ALTA
Última modificación:
12/03/2026

CVE-2026-32239

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** Cap&amp;#39;n Proto is a data interchange format and capability-based RPC system. Prior to 1.4.0, a negative Content-Length value was converted to unsigned, treating it as an impossibly large length instead. In theory, this bug could enable HTTP request/response smuggling. This vulnerability is fixed in 1.4.0.
Gravedad CVSS v4.0: MEDIA
Última modificación:
12/03/2026

CVE-2026-32240

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** Cap&amp;#39;n Proto is a data interchange format and capability-based RPC system. Prior to 1.4.0, when using Transfer-Encoding: chunked, if a chunk&amp;#39;s size parsed to a value of 2^64 or larger, it would be truncated to a 64-bit integer. In theory, this bug could enable HTTP request/response smuggling. This vulnerability is fixed in 1.4.0.
Gravedad CVSS v4.0: MEDIA
Última modificación:
12/03/2026

CVE-2026-32248

Fecha de publicación:
12/03/2026
Idioma:
Inglés
*** Pendiente de traducción *** Parse Server is an open source backend that can be deployed to any infrastructure that can run Node.js. Prior to 9.6.0-alpha.12 and 8.6.38, an unauthenticated attacker can take over any user account that was created with an authentication provider that does not validate the format of the user identifier (e.g. anonymous authentication). By sending a crafted login request, the attacker can cause the server to perform a pattern-matching query instead of an exact-match lookup, allowing the attacker to match an existing user and obtain a valid session token for that user&amp;#39;s account. Both MongoDB and PostgreSQL database backends are affected. Any Parse Server deployment that allows anonymous authentication (enabled by default) is vulnerable. This vulnerability is fixed in 9.6.0-alpha.12 and 8.6.38.
Gravedad CVSS v4.0: CRÍTICA
Última modificación:
12/03/2026