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

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> vdpa/mlx5: Fix buffer length in create_direct_keys()<br /> <br /> We have seen in our CI the following KASAN message:<br /> BUG: KASAN: slab-out-of-bounds in cmd_exec+0x550/0xca0 [mlx5_core]<br /> Read of size 272 at addr 0000000176795020 by task qemu-system-s39/82764<br /> [...]<br /> [] cmd_exec+0x550/0xca0 [mlx5_core]<br /> [] mlx5_cmd_exec_cb+0x25c/0x4f0 [mlx5_core]<br /> [] mlx5_vdpa_exec_async_cmds+0x22e/0x5e0 [mlx5_vdpa]<br /> [] create_direct_keys+0x954/0xef0 [mlx5_vdpa]<br /> [...]<br /> The buggy address is located 4128 bytes inside of<br /> allocated 4384-byte region [0000000176794000, 0000000176795120)<br /> <br /> So in essence we read 16 bytes beyond 4384-byte allocation.<br /> create_direct_keys calculates the pointer and length for in and out<br /> buffers.<br /> The size calculation for in includes the entire structure<br /> size (out + in + mtt[]) but the pointer passed to cmd_exec points only<br /> to the &amp;#39;in&amp;#39; field, skipping the &amp;#39;out&amp;#39; field.<br /> <br /> This causes mlx5_copy_to_msg() to read beyond the allocated buffer<br /> by sizeof(out) bytes when copying command data.<br /> <br /> Properly calculate the input size to match the pointer and allocation size.
Gravedad CVSS v3.1: CRÍTICA
Última modificación:
25/08/2026

CVE-2026-74698

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> net/mlx5e: fix BQL reset on SQ re-activation<br /> <br /> mlx5e_queue_start() deactivates and re-activates all channels but closes<br /> only the queue being restarted. mlx5e_activate_txqsq() then<br /> unconditionally calls netdev_tx_reset_queue(), zeroing the BQL counters<br /> of channels that kept their in-flight TX WQEs. The next completion then<br /> over-charges and trips the BUG_ON() in dql_completed():<br /> <br /> kernel BUG at lib/dynamic_queue_limits.c:99!<br /> RIP: 0010:dql_completed+0x23d/0x280<br /> Call Trace:<br /> <br /> mlx5e_poll_tx_cq+0x668/0xa60<br /> mlx5e_napi_poll+0x5b/0x7b0<br /> net_rx_action+0x15a/0x580<br /> <br /> Reset BQL only when the SQ has no bytes in flight (sq-&gt;cc == sq-&gt;pc).<br /> <br /> In the case that reset is skipped, the outstanding WQEs will eventually<br /> complete and rebalance the dql. The dql-&gt;limit is carried across the<br /> reset.
Gravedad: Pendiente de análisis
Última modificación:
22/08/2026

CVE-2026-74699

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> drm/xe: Fix memory leak in exec_queue_set_hang_replay_state()<br /> <br /> The q-&gt;replay_state is blindly overwritten, which can potentially leak<br /> memory that was previously allocated by vmemdup_user().<br /> Return an error if q-&gt;replay_state is not empty.<br /> <br /> Discovered using AI-assisted static analysis confirmed by Intel Product<br /> Security.<br /> <br /> (cherry picked from commit f6b6cc1118bdbc4265fa8b3bdf8565b26f13e56e)
Gravedad: Pendiente de análisis
Última modificación:
22/08/2026

CVE-2026-74695

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> netfilter: nf_flow_table: drop existing skb dst before skb_dst_set_noref()<br /> <br /> Incoming skbs passing through netfilter flowtable offload hooks (or XFRM<br /> offload path) might already carry a ref-counted dst_entry assigned during<br /> earlier RX or routing steps.<br /> <br /> Calling skb_dst_set_noref() when skb already holds a ref-counted dst<br /> overwrites skb-&gt;_skb_refdst, leaking the previous dst_entry reference<br /> count and triggering a DEBUG_NET_WARN_ON_ONCE assertion in<br /> skb_dst_check_unset():<br /> <br /> WARNING: at skb_dst_check_unset include/linux/skbuff.h:1170<br /> WARNING: at skb_dst_set_noref include/linux/skbuff.h:1234<br /> WARNING: at nf_flow_offload_ip_hook+0xf6c/0x2b60 net/netfilter/nf_flow_table_ip.c:864<br /> <br /> Drop any existing dst_entry reference with skb_dst_drop(skb) before<br /> setting the non-referenced flowtable destination.
Gravedad CVSS v3.1: ALTA
Última modificación:
25/08/2026

CVE-2026-74696

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> tcp: fix TFO max_qlen accounting across reuseport migration<br /> <br /> A listener&amp;#39;s TCP_FASTOPEN max_qlen stops being accurate and lets through<br /> far more pending Fast Open requests than it was configured for.<br /> <br /> This only shows up with SO_REUSEPORT listener migration, where closing a<br /> listener hands its still-pending TFO children over to a surviving one.<br /> <br /> fastopenq.qlen is charged in tcp_fastopen_create_child() when the child<br /> is created and uncharged in reqsk_fastopen_remove() when the handshake<br /> completes. The uncharge follows rsk_listener of the request the child<br /> points at, and inet_reqsk_clone() has repointed the child at a new<br /> request owned by the new listener, so the ++ and the -- land on two<br /> different sockets. The new listener&amp;#39;s qlen drifts negative and its<br /> limit no longer binds.<br /> <br /> Charge the new listener during migration, like reqsk_queue_migrated()<br /> already does for queue-&gt;young and queue-&gt;qlen.
Gravedad CVSS v3.1: ALTA
Última modificación:
25/08/2026

CVE-2026-74697

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> bnxt_en: Disable EOP for TPA on all chips to prevent data corruption<br /> <br /> EOP (End of frame padding) on the AGG ring may cause overlapping of<br /> zero padding at the end of one segment with the next segment&amp;#39;s data.<br /> If Relaxed Ordering (RO) is enabled, the zero padding may overwrite<br /> valid data in the next segment and corrupt the data. Older chips<br /> (P5 and older) do not automatically disable RO when EOP is enabled.<br /> On some ARM systems, data corruption was reported on 57508 (P5)<br /> chips with RO enabled.<br /> <br /> Always disable EOP on all chips on the AGG rings when TPA is enabled<br /> to fix the data corruption.
Gravedad CVSS v3.1: ALTA
Última modificación:
25/08/2026

CVE-2026-74700

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> net/sched: cls_api: Always acquire rtnl_lock when destroying locked classifiers<br /> <br /> Another challenge with unlocked filters.<br /> There is a short window in tc_new_tfilter where a tcf_proto can be found<br /> and briefly referenced by a totally unrelated, unlocked classifier&amp;#39;s request<br /> and cause a race.<br /> <br /> Feng created a poc which created this race with two threads, one creating a<br /> u32 filter and other a flower filter in the same chain/prio:<br /> <br /> 1. Both threads enter tc_new_tfilter, both find the chain empty, both<br /> drop filter_chain_lock<br /> 2. u32 finishes tcf_proto_create("u32") first, calls<br /> tcf_chain_tp_insert_unique() -&gt; inserts u32_tp into the chain<br /> 3. flower finishes tcf_proto_create("flower") later, calls<br /> tcf_chain_tp_insert_unique() -&gt; tcf_chain_tp_find() now sees u32_tp<br /> already there, takes a reference on it, destroys flower&amp;#39;s own tp_new<br /> and returns u32_tp to the caller.<br /> <br /> Flower then hits the kind mismatch check (because it requested for kind<br /> "flower" but tp-&gt;ops-&gt;kind is "u32") and goes through the errout path<br /> which calls tcf_proto_put() on u32_tp. If the u32 thread has already<br /> gone through its own errout (its change() call failed on the PoC&amp;#39;s empty<br /> options) and dropped its create and insert refs, flower&amp;#39;s put is the<br /> last one and drops u32_tp&amp;#39;s refcnt to zero.<br /> <br /> At this point tp-&gt;ops-&gt;destroy() runs in a context that never took<br /> rtnl_lock. When that happens, it might cause a UAF like the following<br /> (illustrated by the PoC):<br /> <br /> [ +0.000710] BUG: KASAN: slab-use-after-free in u32_init (net/sched/cls_u32.c:393)<br /> [ +0.000281] Read of size 8 at addr ffff888120022f00 by task poc_feng_xue/524<br /> <br /> Call Trace:<br /> u32_init (net/sched/cls_u32.c:393)<br /> tc_new_tfilter (net/sched/cls_api.c:2378)<br /> <br /> Allocated by task 526:<br /> u32_init (net/sched/cls_u32.c:378)<br /> tc_new_tfilter (net/sched/cls_api.c:2378)<br /> <br /> Freed by task 522:<br /> kfree<br /> u32_destroy (net/sched/cls_u32.c:662)<br /> tcf_proto_destroy (net/sched/cls_api.c:446)<br /> tcf_proto_put (net/sched/cls_api.c:459)<br /> tc_new_tfilter (net/sched/cls_api.c:2459)<br /> <br /> Fix this by having tcf_proto_destroy() take rtnl_lock around<br /> tp-&gt;ops-&gt;destroy() for locked classifiers whenever rtnl is not held.<br /> <br /> To explain why I used a temp variable "not_lockless" I&amp;#39;d like to point to a<br /> semi-related note on rtnl_held vs TCF_PROTO_OPS_DOIT_UNLOCKED (adding here<br /> for future cleanup if deemed necessary):<br /> The rtnl_held parameter and the TCF_PROTO_OPS_DOIT_UNLOCKED flag are<br /> redundant sources of truth for whether rtnl_lock is held. Among the nine<br /> classifier destroy(..rtnl_held..) callbacks, only flower consults the<br /> rtnl_held parameter which it propagates to tc_setup_cb_destroy()<br /> and tc_setup_cb_call(). The other eight (u32, flow, bpf, cgroup, route, basic,<br /> fw, mall) ignore it entirely;-&gt; those that call tc_setup_cb_destroy()<br /> (u32, bpf, mall) hardcode true always instead of forwarding the parameter.<br /> <br /> A future cleanup should remove the rtnl_held parameter from the destroy callback<br /> signature entirely and have callers rely solely on their knowledge whether<br /> they are running in an unlocked context.
Gravedad CVSS v3.1: ALTA
Última modificación:
25/08/2026

CVE-2026-74701

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> net/openvswitch: check Ethernet header length in key_extract()<br /> <br /> When a packet arrives on an ARPHRD_NONE device (e.g. TUN),<br /> ovs_flow_key_extract() trusts the user-provided skb-&gt;protocol field: if<br /> it is ETH_P_TEB, the packet is classified as MAC_PROTO_ETHERNET and<br /> key_extract() is called without ensuring the skb has ETH_HLEN (14) bytes<br /> of linear data. key_extract() unconditionally pulls 2 * ETH_ALEN bytes<br /> for MAC addresses and parse_ethertype() pulls 2 more, either of which<br /> triggers a kernel BUG in __skb_pull() when the linear area is too small.<br /> <br /> kernel BUG at include/linux/skbuff.h:2848!<br /> RIP: 0010:key_extract+0xa7e/0xd90 net/openvswitch/flow.c:933<br /> ovs_flow_key_extract+0x419/0xa70<br /> ovs_vport_receive+0x222/0x390<br /> netdev_frame_hook+0x3e0/0x630<br /> tun_get_user+0x2d0c/0x38e0<br /> <br /> Fixed by calling check_header() in key_extract() before accessing the<br /> Ethernet header.
Gravedad CVSS v3.1: ALTA
Última modificación:
25/08/2026

CVE-2026-74702

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> vhost-scsi: reject feature changes after endpoint<br /> <br /> vhost_scsi_setup_vq_cmds() runs from VHOST_SCSI_SET_ENDPOINT and allocates<br /> each command&amp;#39;s protection scatterlist array (prot_sgl) according to the<br /> acknowledged VIRTIO_SCSI_F_T10_PI bit. The command pools are not rebuilt<br /> when VHOST_SET_FEATURES changes that bit later.<br /> <br /> Although virtio feature bits must not change after feature negotiation,<br /> vhost_scsi_set_features() currently accepts such a request after the<br /> endpoint is active and updates acked_features. Enabling T10-PI after<br /> endpoint setup therefore leaves prot_sgl NULL while the I/O path follows<br /> the new feature bit.<br /> <br /> For a 129-page protection payload, vhost_scsi_mapal() passes the missing<br /> first chunk to sg_alloc_table_chained():<br /> <br /> sg_alloc_table_chained(table, 129, first_chunk=NULL,<br /> nents_first_chunk=inline_sg_cnt)<br /> <br /> sg_pool_index() then hits:<br /> <br /> BUG_ON(nents &gt; SG_CHUNK_SIZE); /* 129 &gt; 128 */<br /> <br /> The kernel reported the following call trace and register state:<br /> <br /> Call Trace:<br /> <br /> ? __sg_alloc_table+0x1d8/0x250<br /> ? __pfx_vhost_run_work_list+0x10/0x10 [vhost]<br /> sg_alloc_table_chained+0x59/0xf0<br /> ? __pfx_sg_pool_alloc+0x10/0x10<br /> ? vhost_scsi_calc_sgls.constprop.0+0x43/0x60 [vhost_scsi]<br /> vhost_scsi_handle_vq+0xf02/0x1700 [vhost_scsi]<br /> ? __pfx_vhost_scsi_handle_vq+0x10/0x10 [vhost_scsi]<br /> vhost_scsi_handle_kick+0x37/0x50 [vhost_scsi]<br /> vhost_run_work_list+0x8e/0xd0 [vhost]<br /> vhost_task_fn+0xe1/0x210<br /> ret_from_fork+0x348/0x540<br /> <br /> <br /> RIP: 0010:0x4<br /> CR2 = 0x4<br /> RSP: 0018:ffffc90000dbf940 EFLAGS: 00010202<br /> RAX: ffffffff82396810 RBX: ffff88811dc28b80 RCX: 0000000000000000<br /> RDX: 0000000000000000 RSI: 0000000000000820 RDI: 0000000000000081<br /> <br /> VHOST_F_LOG_ALL is a vhost-specific runtime feature and remains the only<br /> exception.<br /> <br /> Reject changes to any feature other than VHOST_F_LOG_ALL while the<br /> endpoint is active. This preserves the existing runtime log toggle while<br /> preventing feature-dependent command resources and data-path state from<br /> becoming inconsistent. Userspace must clear the endpoint before changing<br /> any other negotiated feature and set the endpoint up again afterward.
Gravedad CVSS v3.1: ALTA
Última modificación:
25/08/2026

CVE-2026-74703

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> vhost-scsi: Validate T10 PI scatterlist counts<br /> <br /> When T10 PI is negotiated, vhost-scsi splits protection bytes from<br /> the data iterator before mapping the request scatterlists. A malformed<br /> request can claim protection bytes that cover or exceed the full payload<br /> length. The former leaves no data bytes to map, while the latter<br /> underflows exp_data_len before advancing the iterator. Both cases can let<br /> a zero data SGL count reach sg_alloc_table_chained(), which triggers<br /> BUG_ON(!nents).<br /> <br /> Reject protection lengths that cover or exceed the payload before<br /> subtracting prot_bytes and advancing the iterator. Also propagate<br /> negative errors from the protection SGL calculation before calling the<br /> allocator, matching the data SGL path.
Gravedad CVSS v3.1: ALTA
Última modificación:
25/08/2026

CVE-2026-74693

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> net: prestera: validate firmware header length<br /> <br /> prestera_fw_hdr_parse() reads the firmware header before checking<br /> that the firmware image contains that header.<br /> <br /> Reject images shorter than struct prestera_fw_header before decoding the<br /> magic and version fields.
Gravedad: Pendiente de análisis
Última modificación:
22/08/2026

CVE-2026-74694

Fecha de publicación:
22/08/2026
Idioma:
Inglés
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> net/ncsi: fix heap OOB read in NCSI_CMD_SEND_CMD payload length<br /> <br /> ncsi_send_cmd_nl() takes the number of bytes to copy from the<br /> attacker-controlled ncsi_pkt_hdr.length field of the in-band packet<br /> header, while the source buffer is the NCSI_ATTR_DATA netlink<br /> attribute whose readable size is nla_len() - sizeof(ncsi_pkt_hdr).<br /> The two length sources are never cross-checked: only<br /> nla_len() &gt;= sizeof(struct ncsi_pkt_hdr) is enforced.<br /> <br /> With hdr-&gt;length set larger than the attribute payload (up to 65535<br /> against at most 2032 readable bytes), ncsi_cmd_handler_oem() copies<br /> past the end of the netlink attribute buffer with unsafe_memcpy(),<br /> leaking up to ~64KB of kernel heap memory into the transmitted NCSI<br /> command packet. The destination skb is sized by the declared payload,<br /> so the write side does not overflow - this is a pure OOB read /<br /> information leak, reachable with CAP_NET_ADMIN on systems with a<br /> registered NCSI device (e.g. OpenBMC on Aspeed BMC SoCs, where<br /> NET_NCSI=y is standard).<br /> <br /> Reject commands whose declared payload extends past the end of the<br /> data attribute.<br /> <br /> The issue was found by the autokbug dynamic kernel fuzzer at Tencent<br /> Yunding Lab.
Gravedad: Pendiente de análisis
Última modificación:
22/08/2026