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 últimas 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 últimas 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 últimas vulnerabilidades incorporadas al repositorio.

CVE-2026-77791

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** Uncontrolled Resource Consumption vulnerability in Apache Tomcat during sending of WebSocket close message enabled a DoS attack.<br /> <br /> <br /> <br /> This issue affects Apache Tomcat: from 11.0.0-M5 through 11.0.25, from 10.1.8 through 10.1.59, from 9.0.74 through 9.0.121.<br /> <br /> <br /> <br /> The following versions were EOL at the time the CVE was created but are <br /> known to be affected: from 8.5.88 through 8.5.100. Other unsupported versions may also be affected.<br /> <br /> <br /> <br /> <br /> Users are recommended to upgrade to version 11.0.26, 10.1.60 or 9.0.122, which fix the issue.
Gravedad CVSS v3.1: ALTA
Última modificación:
23/09/2026

CVE-2026-12370

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** ZohoCorp ManageEngine OpManager, NetFlow Analyzer, and Network Configuration Manager versions 12.8.667 and below were vulnerable to a Server-Side Template Injection vulnerability in Configlet processing, which could lead to Remote Code Execution.
Gravedad CVSS v3.1: ALTA
Última modificación:
23/09/2026

CVE-2026-14913

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** ZohoCorp ManageEngine OpManager and Firewall Analyzer versions 12.8.669 and below were vulnerable to an SQL Injection vulnerability in Rule Management Search Reports.
Gravedad CVSS v3.1: ALTA
Última modificación:
23/09/2026

CVE-2026-15358

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** ZohoCorp ManageEngine OpManager and Network Configuration Manager versions before 12.8.671 were vulnerable to an unauthorized Path Traversal vulnerability.
Gravedad CVSS v3.1: ALTA
Última modificación:
23/09/2026

CVE-2026-96442

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** A code execution flaw was found in Emacs, affecting versions prior to 31.2. The Flymake mode using language backends other than Lisp would execute arbitrary code from the edited file while performing syntax checking. Viewing or editing untrusted files using Emacs could lead to arbitrary code execution with the privileges of the user running Emacs.
Gravedad CVSS v3.1: ALTA
Última modificación:
23/09/2026

CVE-2026-96455

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Reachy Mini daemon exposes an HTTP API for managing the robot. Its app installation endpoint, POST /apps/install in src/reachy_mini/daemon/app/routers/apps.py, has no authentication. The handler&amp;#39;s only dependency is Depends(get_app_manager), which just hands back the manager object from application state, so nothing in the chain ever checks a credential.<br /> <br /> <br /> <br /> The endpoint takes an AppInfo body naming a Hugging Face Space. The daemon downloads that Space and installs it as a Python package through install_package in src/reachy_mini/apps/sources/local_common_venv.py, using uv or pip. Installing a Python package runs the package&amp;#39;s own build and setup code, so whoever chooses the Space chooses what code the robot runs. Anyone can publish a public Hugging Face Space, so this is not a meaningful restriction on the attacker.<br /> <br /> <br /> <br /> How far this reaches depends on the model. In _resolve_bind_host in src/reachy_mini/daemon/app/main.py the daemon binds 0.0.0.0 when it runs as the wireless version and 127.0.0.1 otherwise, with the vendor&amp;#39;s own comment explaining that the robot has to be reachable on the LAN. On a wireless unit, then, any host on the same network can install and run code on the robot without credentials.<br /> <br /> <br /> <br /> One related change has already shipped but does not fix this. Version 1.8.2 replaced the wildcard CORS policy with an allow list of localhost and Tauri origins. That closes the browser drive-by route, where a web page the victim visits silently calls the endpoint in the background. It has no effect on this issue: CORS is enforced by browsers and governs whether script may read a response, while a direct HTTP request from another machine on the network involves no browser, no preflight and no CORS check at all.
Gravedad CVSS v3.1: ALTA
Última modificación:
23/09/2026

CVE-2026-96456

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Reachy Mini Bluetooth service asks a connecting device for a PIN before it will accept commands. The check protects the session but not the caller, so an attacker in Bluetooth range can ride along on someone else&amp;#39;s successful authentication.<br /> <br /> <br /> <br /> The authenticated state is kept in a single shared flag on the service instance rather than per device. BlueZ passes the calling device&amp;#39;s identity to the characteristic write handler in the options argument, but WriteValue(self, value, options) in src/reachy_mini/daemon/app/services/bluetooth/bluetooth_service.py ignores options entirely. The handler therefore has no idea which device sent a given write, and it cannot tell the authenticated one from any other.<br /> <br /> <br /> <br /> Once any device completes the PIN exchange, the flag is set and every nearby device can send CMD_ commands until it resets. An attacker simply waits within radio range for a legitimate user to authenticate, then writes commands into the same window. No PIN is ever guessed or brute-forced.<br /> <br /> <br /> <br /> This is the second step of a three-step chain that JFrog documented against the robot. The first is the unrestricted file upload in the media sounds API, tracked as CVE-2026-55419, which places an attacker-controlled script on the filesystem. This issue then provides command access over Bluetooth. The third is the Bluetooth command handler path traversal, tracked as CVE-2026-62661, which runs that script as root.
Gravedad CVSS v3.1: MEDIA
Última modificación:
23/09/2026

CVE-2026-90950

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Paid Membership Subscriptions WordPress plugin before 3.1.0 does not verify the reCAPTCHA on its registration handler when a form field is absent from the request, allowing unauthenticated users to create accounts without solving the reCAPTCHA the site has enabled.
Gravedad CVSS v3.1: MEDIA
Última modificación:
23/09/2026

CVE-2026-87070

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Forminator Forms WordPress plugin before 1.57.2.1 does not verify that a request came from a trusted proxy before preferring client-supplied forwarding headers over the connecting address, and it uses that value both to enforce its per-visitor voting limit and to record who submitted an entry. Unauthenticated visitors can therefore vote without limit on any poll and can choose the address stored against every submission they make.
Gravedad CVSS v3.1: MEDIA
Última modificación:
23/09/2026

CVE-2026-87071

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Forminator Forms WordPress plugin before 1.57.2.1 does not restrict which metadata keys a form submission may supply, and does not exclude the keys WordPress reserves for its own use, so unauthenticated visitors submitting a public form that collects post content can attach metadata of their choosing to the post their submission creates.
Gravedad CVSS v3.1: MEDIA
Última modificación:
23/09/2026

CVE-2026-87848

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** The MPCX Lightbox WordPress plugin 1.2.2 through 1.2.5 does not have any authorisation or authentication on one of its AJAX actions available to unauthenticated users, nor does it check the status of the requested post, allowing unauthenticated visitors to retrieve the title, content or excerpt of arbitrary posts, including private, draft, pending, trashed and password-protected ones.
Gravedad CVSS v3.1: BAJA
Última modificación:
23/09/2026

CVE-2026-87978

Fecha de publicación:
23/09/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Paymob for WooCommerce WordPress plugin before 4.1.14 does not verify the request signature on one branch of its payment webhook, allowing unauthenticated attackers to mark arbitrary WooCommerce orders as paid without any payment.
Gravedad CVSS v3.1: MEDIA
Última modificación:
23/09/2026