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-65893

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** This vulnerability exists in CP PLUS EZ-P21 IP Camera due to an insecure debug feature enabled in the firmware.<br /> <br /> An attacker with physical access could exploit this vulnerability by placing arbitrary code on removable media and triggering their execution through the debug mechanism.<br /> <br /> <br /> <br /> Successful exploitation of this vulnerability could allow an attacker to execute arbitrary code with elevated privileges on the targeted device.
Gravedad CVSS v4.0: ALTA
Última modificación:
27/07/2026

CVE-2026-65894

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** This vulnerability exists in CP PLUS EZ-P21 IP Camera due to improper authentication of HTTP endpoints. A remote attacker could exploit this vulnerability by conducting brute-force attacks against HTTP endpoint on the targeted device.<br /> <br /> <br /> <br /> Successful exploitation of this vulnerability could allow an attacker to gain unauthorized access to live video snapshots from the targeted device.
Gravedad CVSS v4.0: ALTA
Última modificación:
27/07/2026

CVE-2026-64531

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> net: openvswitch: reject oversized nested action attrs<br /> <br /> Open vSwitch stores generated flow actions as nlattrs, whose nla_len<br /> field is u16. Commit a1e64addf3ff ("net: openvswitch: remove<br /> misbehaving actions length check") allowed the total sw_flow_actions<br /> stream to grow beyond 64 KiB, which is valid, but also removed the last<br /> guard preventing a generated nested action attribute from exceeding<br /> U16_MAX.<br /> <br /> An oversized generated container can thus be closed with a truncated<br /> nla_len. A later dump or teardown then walks a structurally different<br /> stream than the one that was validated. In particular, an oversized<br /> nested CLONE/CT action may cause subsequent bytes in the generated<br /> stream to be interpreted as independent actions.<br /> <br /> Keep the larger total-action-stream behavior, but make nested action<br /> close reject generated containers that do not fit in nla_len, and return<br /> the error through all callers. For recursive SAMPLE, CLONE, DEC_TTL, and<br /> CHECK_PKT_LEN builders, trim resource-owning action-list tails in reverse<br /> construction order before discarding failed wrappers, so resources copied<br /> into the rejected tails are released before the wrappers are removed.<br /> <br /> Most failed outer wrappers are discarded by truncating actions_len after<br /> child resources have been released. CHECK_PKT_LEN also trims its parent<br /> after branch resources are gone. SET/TUNNEL close failures unwind their<br /> known tun_dst ownership directly, and SET_TO_MASKED has no external<br /> ownership and truncates on close failure.
Gravedad CVSS v3.1: ALTA
Última modificación:
30/07/2026

CVE-2026-64532

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> fs/ntfs3: bound NTFS_DE view.data_off in UpdateRecordData{Root,Allocation}<br /> <br /> In do_action()&amp;#39;s UpdateRecordDataRoot (fslog.c:3489) and<br /> UpdateRecordDataAllocation (fslog.c:3697) cases, the memmove<br /> destination is `Add2Ptr(e, le16_to_cpu(e-&gt;view.data_off))`,<br /> where e-&gt;view.data_off comes from an on-disk NTFS_DE inside<br /> an INDEX_ROOT or INDEX_BUFFER. Neither case validates<br /> view.data_off + dlen against e-&gt;size; the existing<br /> check_if_index_root / check_if_alloc_index helpers walk the<br /> entry chain and validate the entry&amp;#39;s offset, but not its<br /> internal view fields.<br /> <br /> The neighbouring read sites (e.g., fs/ntfs3/index.c when<br /> iterating view entries) check view.data_off + view.data_size<br /> size. Apply the same bound at the two memmove sites.<br /> <br /> Reproduced under UML+KASAN on mainline 8d90b09e6741 via<br /> pr_warn-only probe instrumentation: with view.data_off forced<br /> to 0xFFFC, the memmove writes 32 bytes past the end of the<br /> NTFS_DE.<br /> <br /> This is similar in shape to Pavitra Jha&amp;#39;s 2026-05-02 patch<br /> "fs/ntfs3: prevent oob in case UpdateRecordDataRoot"<br /> () which<br /> proposes calling ntfs3_bad_de_range(); that helper does not<br /> exist in mainline. This patch uses inline checks.
Gravedad CVSS v3.1: ALTA
Última modificación:
30/07/2026

CVE-2026-64533

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> fs/ntfs3: validate lcns_follow in log_replay conversion<br /> <br /> log_replay() converts DIR_PAGE_ENTRY_32 records into DIR_PAGE_ENTRY<br /> records when replaying version 0 restart tables.<br /> <br /> During this conversion, the memmove() length is derived directly from<br /> the on-disk lcns_follow field:<br /> <br /> memmove(&amp;dp-&gt;vcn, &amp;dp0-&gt;vcn_low,<br /> 2 * sizeof(u64) +<br /> le32_to_cpu(dp-&gt;lcns_follow) * sizeof(u64));<br /> <br /> check_rstbl() validates restart table structure, but does not constrain<br /> per-entry lcns_follow values relative to the entry size. A malformed<br /> filesystem image can provide an oversized lcns_follow value, causing<br /> the conversion memmove() to access memory beyond the bounds of the<br /> allocated restart table buffer.<br /> <br /> The same field is later used to bound iteration over page_lcns[],<br /> so validating lcns_follow during conversion also prevents downstream<br /> out-of-bounds access from the same malformed metadata.<br /> <br /> Compute the maximum valid lcns_follow from the already-validated<br /> restart table entry size and reject entries that exceed this bound.<br /> Reuse the existing t16/t32 scratch variables already declared in<br /> log_replay() to avoid introducing new declarations.<br /> <br /> [almaz.alexandrovich@paragon-software.com: fixed the conflicts]
Gravedad CVSS v3.1: ALTA
Última modificación:
30/07/2026

CVE-2026-64534

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> nvmet-tcp: check INIT_FAILED before nvmet_req_uninit in digest error path<br /> <br /> In nvmet_tcp_try_recv_ddgst(), when a data digest mismatch is detected,<br /> nvmet_req_uninit() is called unconditionally. However, if the command<br /> arrived via the nvmet_tcp_handle_req_failure() path, nvmet_req_init()<br /> had returned false and percpu_ref_tryget_live() was never executed. The<br /> unconditional percpu_ref_put() inside nvmet_req_uninit() then causes a<br /> refcount underflow, leading to a WARNING in<br /> percpu_ref_switch_to_atomic_rcu, a use-after-free diagnostic, and<br /> eventually a permanent workqueue deadlock.<br /> <br /> Check cmd-&gt;flags &amp; NVMET_TCP_F_INIT_FAILED before calling<br /> nvmet_req_uninit(), matching the existing pattern in<br /> nvmet_tcp_execute_request().
Gravedad CVSS v3.1: CRÍTICA
Última modificación:
30/07/2026

CVE-2026-64535

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> nvmet-tcp: Fix potential UAF when ddgst mismatch<br /> <br /> Shivam Kumar found via vulnerability testing:<br /> When data digest is enabled on an NVMe/TCP connection and a digest<br /> mismatch occurs on a non-final H2C_DATA PDU during an R2T-based<br /> data transfer, the digest error handler in nvmet_tcp_try_recv_ddgst()<br /> calls nvmet_req_uninit() — which performs percpu_ref_put() on the<br /> submission queue — but does NOT mark the command as completed. It<br /> does not set cqe-&gt;status, does not modify rbytes_done, and does not<br /> clear any flag. When the subsequent fatal error triggers queue<br /> teardown, nvmet_tcp_uninit_data_in_cmds() iterates all commands,<br /> checks nvmet_tcp_need_data_in() for each one, and finds that the<br /> already-uninited command still appears to need data (because<br /> rbytes_done status == 0). It therefore calls<br /> nvmet_req_uninit() a second time on the same command — a double<br /> percpu_ref_put against a single percpu_ref_get.
Gravedad CVSS v3.1: CRÍTICA
Última modificación:
30/07/2026

CVE-2026-64536

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> staging: rtl8723bs: fix OOB reads in is_ap_in_tkip() IE loop<br /> <br /> The loop in is_ap_in_tkip() iterates over IEs without verifying that<br /> enough bytes remain before dereferencing the IE header or its payload:<br /> <br /> - pIE-&gt;element_id and pIE-&gt;length are read without checking that<br /> i + sizeof(*pIE) data + 12,<br /> which requires pIE-&gt;length &gt;= 16. For WLAN_EID_RSN it compares<br /> pIE-&gt;data + 8, requiring pIE-&gt;length &gt;= 12. Neither requirement<br /> is checked.<br /> <br /> Add the missing IE header and payload bounds checks and guard each<br /> data access with an explicit pIE-&gt;length minimum, matching the<br /> pattern established in update_beacon_info().
Gravedad CVSS v3.1: ALTA
Última modificación:
30/07/2026

CVE-2026-14837

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** Multiple Lenze products are affected by an improper signature verification vulnerability in the SSH enablement mechanism. A low-privileged local attacker can bypass verification of the SSH enable file signature and enable SSH access on the device. Successful exploitation may result in unauthorized administrative access and complete system compromise.
Gravedad CVSS v4.0: ALTA
Última modificación:
30/07/2026

CVE-2026-9830

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** The bookingpress-appointment-booking-pro WordPress plugin before 5.7.3 does not correctly invoke its REST permission callback, leaving every route in one of its API namespaces reachable without authentication and allowing unauthenticated attackers to read customer booking data and modify other users&amp;#39; bookings.
Gravedad CVSS v3.1: ALTA
Última modificación:
27/07/2026

CVE-2026-66412

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** Leantime 3.6.2 and prior contains a broken access control vulnerability that allows authenticated users to read milestone data from projects they are not assigned to by supplying arbitrary integer milestone IDs to the tickets.getMilestone JSON-RPC endpoint. Attackers can enumerate integer milestone IDs through the JSON-RPC API to access project planning information, milestone titles, descriptions, and timelines across all projects on the instance regardless of project membership.
Gravedad CVSS v4.0: ALTA
Última modificación:
28/07/2026

CVE-2026-14820

Fecha de publicación:
27/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Quiz and Survey Master (QSM) WordPress plugin before 11.1.3 does not implement rate limiting or standard failed-login auditing on its front-end credential-check functionality and returns distinct responses for valid and invalid accounts, allowing unauthenticated attackers to enumerate valid usernames and to brute-force passwords while bypassing brute-force protection Quiz and Survey Master (QSM) WordPress plugin before 11.1.3.
Gravedad CVSS v3.1: MEDIA
Última modificación:
27/07/2026