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-2025-48863

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** Rejected reason: This CVE id was assigned but later discarded.
Gravedad: Pendiente de análisis
Última modificación:
23/12/2025

CVE-2025-48864

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** Rejected reason: This CVE id was assigned but later discarded.
Gravedad: Pendiente de análisis
Última modificación:
23/12/2025

CVE-2025-67108

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** eProsima Fast-DDS v3.3 was discovered to contain improper validation for ticket revocation, resulting in insecure communications and connections.
Gravedad CVSS v3.1: CRÍTICA
Última modificación:
02/01/2026

CVE-2025-50526

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** Netgear EX8000 V1.0.0.126 was discovered to contain a command injection vulnerability via the switch_status function.
Gravedad CVSS v3.1: CRÍTICA
Última modificación:
02/01/2026

CVE-2025-45493

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** Netgear EX8000 V1.0.0.126 is vulnerable to Command Injection via the iface parameter in the action_bandwidth function.
Gravedad CVSS v3.1: MEDIA
Última modificación:
05/01/2026

CVE-2025-65865

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** An integer overflow in eProsima Fast-DDS v3.3 allows attackers to cause a Denial of Service (DoS) via a crafted input.
Gravedad CVSS v3.1: ALTA
Última modificación:
06/01/2026

CVE-2024-10398

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** Rejected reason: This CVE id was assigned but later discarded.
Gravedad: Pendiente de análisis
Última modificación:
23/12/2025

CVE-2024-9684

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** FreyrSCADA/IEC-60870-5-104 server v21.06.008 allows remote attackers to cause a denial of service by sending specific message sequences.
Gravedad CVSS v3.1: ALTA
Última modificación:
15/04/2026

CVE-2023-5093

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** Rejected reason: This CVE id was assigned to an issue which was later deemed not security relevant.
Gravedad: Pendiente de análisis
Última modificación:
23/12/2025

CVE-2023-5094

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** Rejected reason: This CVE id was assigned to an issue which was later deemed not security relevant.
Gravedad: Pendiente de análisis
Última modificación:
23/12/2025

CVE-2025-66845

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** A reflected Cross-Site Scripting (XSS) vulnerability has been identified in TechStore version 1.0. The user_name endpoint reflects the id query parameter directly into the HTML response without output encoding or sanitization, allowing execution of arbitrary JavaScript code in a victim’s browser.
Gravedad CVSS v3.1: MEDIA
Última modificación:
05/01/2026

CVE-2025-68340

Fecha de publicación:
23/12/2025
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> team: Move team device type change at the end of team_port_add<br /> <br /> Attempting to add a port device that is already up will expectedly fail,<br /> but not before modifying the team device header_ops.<br /> <br /> In the case of the syzbot reproducer the gre0 device is<br /> already in state UP when it attempts to add it as a<br /> port device of team0, this fails but before that<br /> header_ops-&gt;create of team0 is changed from eth_header to ipgre_header<br /> in the call to team_dev_type_check_change.<br /> <br /> Later when we end up in ipgre_header() struct ip_tunnel* points to nonsense<br /> as the private data of the device still holds a struct team.<br /> <br /> Example sequence of iproute2 commands to reproduce the hang/BUG():<br /> ip link add dev team0 type team<br /> ip link add dev gre0 type gre<br /> ip link set dev gre0 up<br /> ip link set dev gre0 master team0<br /> ip link set dev team0 up<br /> ping -I team0 1.1.1.1<br /> <br /> Move team_dev_type_check_change down where all other checks have passed<br /> as it changes the dev type with no way to restore it in case<br /> one of the checks that follow it fail.<br /> <br /> Also make sure to preserve the origial mtu assignment:<br /> - If port_dev is not the same type as dev, dev takes mtu from port_dev<br /> - If port_dev is the same type as dev, port_dev takes mtu from dev<br /> <br /> This is done by adding a conditional before the call to dev_set_mtu<br /> to prevent it from assigning port_dev-&gt;mtu = dev-&gt;mtu and instead<br /> letting team_dev_type_check_change assign dev-&gt;mtu = port_dev-&gt;mtu.<br /> The conditional is needed because the patch moves the call to<br /> team_dev_type_check_change past dev_set_mtu.<br /> <br /> Testing:<br /> - team device driver in-tree selftests<br /> - Add/remove various devices as slaves of team device<br /> - syzbot
Gravedad CVSS v3.1: MEDIA
Última modificación:
26/02/2026