Vulnerabilities

With the aim of informing, warning and helping professionals with the latest security vulnerabilities in technology systems, we have made a database available for users interested in this information, which is in Spanish and includes all of the latest documented and recognised vulnerabilities.

This repository, with over 75,000 registers, is based on the information from the NVD (National Vulnerability Database) – by virtue of a partnership agreement – through which INCIBE translates the included information into Spanish.

On occasions this list will show vulnerabilities that have still not been translated, as they are added while the INCIBE team is still carrying out the translation process. The CVE  (Common Vulnerabilities and Exposures) Standard for Information Security Vulnerability Names is used with the aim to support the exchange of information between different tools and databases.

All vulnerabilities collected are linked to different information sources, as well as available patches or solutions provided by manufacturers and developers. It is possible to carry out advanced searches, as there is the option to select different criteria to narrow down the results, some examples being vulnerability types, manufacturers and impact levels, among others.

Through RSS feeds or Newsletters we can be informed daily about the latest vulnerabilities added to the repository. Below there is a list, updated daily, where you can discover the latest vulnerabilities.

CVE-2022-50295

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> io_uring/msg_ring: Fix NULL pointer dereference in io_msg_send_fd()<br /> <br /> Syzkaller produced the below call trace:<br /> <br /> BUG: KASAN: null-ptr-deref in io_msg_ring+0x3cb/0x9f0<br /> Write of size 8 at addr 0000000000000070 by task repro/16399<br /> <br /> CPU: 0 PID: 16399 Comm: repro Not tainted 6.1.0-rc1 #28<br /> Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.11.0-2.el7<br /> Call Trace:<br /> <br /> dump_stack_lvl+0xcd/0x134<br /> ? io_msg_ring+0x3cb/0x9f0<br /> kasan_report+0xbc/0xf0<br /> ? io_msg_ring+0x3cb/0x9f0<br /> kasan_check_range+0x140/0x190<br /> io_msg_ring+0x3cb/0x9f0<br /> ? io_msg_ring_prep+0x300/0x300<br /> io_issue_sqe+0x698/0xca0<br /> io_submit_sqes+0x92f/0x1c30<br /> __do_sys_io_uring_enter+0xae4/0x24b0<br /> ....<br /> RIP: 0033:0x7f2eaf8f8289<br /> RSP: 002b:00007fff40939718 EFLAGS: 00000246 ORIG_RAX: 00000000000001aa<br /> RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f2eaf8f8289<br /> RDX: 0000000000000000 RSI: 0000000000006f71 RDI: 0000000000000004<br /> RBP: 00007fff409397a0 R08: 0000000000000000 R09: 0000000000000039<br /> R10: 0000000000000000 R11: 0000000000000246 R12: 00000000004006d0<br /> R13: 00007fff40939880 R14: 0000000000000000 R15: 0000000000000000<br /> <br /> Kernel panic - not syncing: panic_on_warn set ...<br /> <br /> We don&amp;#39;t have a NULL check on file_ptr in io_msg_send_fd() function,<br /> so when file_ptr is NUL src_file is also NULL and get_file()<br /> dereferences a NULL pointer and leads to above crash.<br /> <br /> Add a NULL check to fix this issue.
Severity CVSS v4.0: Pending analysis
Last modification:
04/12/2025

CVE-2022-50293

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> btrfs: do not BUG_ON() on ENOMEM when dropping extent items for a range<br /> <br /> If we get -ENOMEM while dropping file extent items in a given range, at<br /> btrfs_drop_extents(), due to failure to allocate memory when attempting to<br /> increment the reference count for an extent or drop the reference count,<br /> we handle it with a BUG_ON(). This is excessive, instead we can simply<br /> abort the transaction and return the error to the caller. In fact most<br /> callers of btrfs_drop_extents(), directly or indirectly, already abort<br /> the transaction if btrfs_drop_extents() returns any error.<br /> <br /> Also, we already have error paths at btrfs_drop_extents() that may return<br /> -ENOMEM and in those cases we abort the transaction, like for example<br /> anything that changes the b+tree may return -ENOMEM due to a failure to<br /> allocate a new extent buffer when COWing an existing extent buffer, such<br /> as a call to btrfs_duplicate_item() for example.<br /> <br /> So replace the BUG_ON() calls with proper logic to abort the transaction<br /> and return the error.
Severity CVSS v4.0: Pending analysis
Last modification:
04/12/2025

CVE-2022-50292

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> drm/msm/dp: fix bridge lifetime<br /> <br /> Device-managed resources allocated post component bind must be tied to<br /> the lifetime of the aggregate DRM device or they will not necessarily be<br /> released when binding of the aggregate device is deferred.<br /> <br /> This can lead resource leaks or failure to bind the aggregate device<br /> when binding is later retried and a second attempt to allocate the<br /> resources is made.<br /> <br /> For the DP bridges, previously allocated bridges will leak on probe<br /> deferral.<br /> <br /> Fix this by amending the DP parser interface and tying the lifetime of<br /> the bridge device to the DRM device rather than DP platform device.<br /> <br /> Patchwork: https://patchwork.freedesktop.org/patch/502667/
Severity CVSS v4.0: Pending analysis
Last modification:
04/12/2025

CVE-2022-50291

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> kcm: annotate data-races around kcm-&gt;rx_psock<br /> <br /> kcm-&gt;rx_psock can be read locklessly in kcm_rfree().<br /> Annotate the read and writes accordingly.<br /> <br /> We do the same for kcm-&gt;rx_wait in the following patch.<br /> <br /> syzbot reported:<br /> BUG: KCSAN: data-race in kcm_rfree / unreserve_rx_kcm<br /> <br /> write to 0xffff888123d827b8 of 8 bytes by task 2758 on cpu 1:<br /> unreserve_rx_kcm+0x72/0x1f0 net/kcm/kcmsock.c:313<br /> kcm_rcv_strparser+0x2b5/0x3a0 net/kcm/kcmsock.c:373<br /> __strp_recv+0x64c/0xd20 net/strparser/strparser.c:301<br /> strp_recv+0x6d/0x80 net/strparser/strparser.c:335<br /> tcp_read_sock+0x13e/0x5a0 net/ipv4/tcp.c:1703<br /> strp_read_sock net/strparser/strparser.c:358 [inline]<br /> do_strp_work net/strparser/strparser.c:406 [inline]<br /> strp_work+0xe8/0x180 net/strparser/strparser.c:415<br /> process_one_work+0x3d3/0x720 kernel/workqueue.c:2289<br /> worker_thread+0x618/0xa70 kernel/workqueue.c:2436<br /> kthread+0x1a9/0x1e0 kernel/kthread.c:376<br /> ret_from_fork+0x1f/0x30 arch/x86/entry/entry_64.S:306<br /> <br /> read to 0xffff888123d827b8 of 8 bytes by task 5859 on cpu 0:<br /> kcm_rfree+0x14c/0x220 net/kcm/kcmsock.c:181<br /> skb_release_head_state+0x8e/0x160 net/core/skbuff.c:841<br /> skb_release_all net/core/skbuff.c:852 [inline]<br /> __kfree_skb net/core/skbuff.c:868 [inline]<br /> kfree_skb_reason+0x5c/0x260 net/core/skbuff.c:891<br /> kfree_skb include/linux/skbuff.h:1216 [inline]<br /> kcm_recvmsg+0x226/0x2b0 net/kcm/kcmsock.c:1161<br /> ____sys_recvmsg+0x16c/0x2e0<br /> ___sys_recvmsg net/socket.c:2743 [inline]<br /> do_recvmmsg+0x2f1/0x710 net/socket.c:2837<br /> __sys_recvmmsg net/socket.c:2916 [inline]<br /> __do_sys_recvmmsg net/socket.c:2939 [inline]<br /> __se_sys_recvmmsg net/socket.c:2932 [inline]<br /> __x64_sys_recvmmsg+0xde/0x160 net/socket.c:2932<br /> do_syscall_x64 arch/x86/entry/common.c:50 [inline]<br /> do_syscall_64+0x2b/0x70 arch/x86/entry/common.c:80<br /> entry_SYSCALL_64_after_hwframe+0x63/0xcd<br /> <br /> value changed: 0xffff88812971ce00 -&gt; 0x0000000000000000<br /> <br /> Reported by Kernel Concurrency Sanitizer on:<br /> CPU: 0 PID: 5859 Comm: syz-executor.3 Not tainted 6.0.0-syzkaller-12189-g19d17ab7c68b-dirty #0<br /> Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 09/22/2022
Severity CVSS v4.0: Pending analysis
Last modification:
04/12/2025

CVE-2022-50296

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK<br /> <br /> When CONFIG_CPUMASK_OFFSTACK and CONFIG_DEBUG_PER_CPU_MAPS is selected,<br /> cpu_max_bits_warn() generates a runtime warning similar as below while<br /> we show /proc/cpuinfo. Fix this by using nr_cpu_ids (the runtime limit)<br /> instead of NR_CPUS to iterate CPUs.<br /> <br /> [ 3.052463] ------------[ cut here ]------------<br /> [ 3.059679] WARNING: CPU: 3 PID: 1 at include/linux/cpumask.h:108 show_cpuinfo+0x5e8/0x5f0<br /> [ 3.070072] Modules linked in: efivarfs autofs4<br /> [ 3.076257] CPU: 0 PID: 1 Comm: systemd Not tainted 5.19-rc5+ #1052<br /> [ 3.099465] Stack : 9000000100157b08 9000000000f18530 9000000000cf846c 9000000100154000<br /> [ 3.109127] 9000000100157a50 0000000000000000 9000000100157a58 9000000000ef7430<br /> [ 3.118774] 90000001001578e8 0000000000000040 0000000000000020 ffffffffffffffff<br /> [ 3.128412] 0000000000aaaaaa 1ab25f00eec96a37 900000010021de80 900000000101c890<br /> [ 3.138056] 0000000000000000 0000000000000000 0000000000000000 0000000000aaaaaa<br /> [ 3.147711] ffff8000339dc220 0000000000000001 0000000006ab4000 0000000000000000<br /> [ 3.157364] 900000000101c998 0000000000000004 9000000000ef7430 0000000000000000<br /> [ 3.167012] 0000000000000009 000000000000006c 0000000000000000 0000000000000000<br /> [ 3.176641] 9000000000d3de08 9000000001639390 90000000002086d8 00007ffff0080286<br /> [ 3.186260] 00000000000000b0 0000000000000004 0000000000000000 0000000000071c1c<br /> [ 3.195868] ...<br /> [ 3.199917] Call Trace:<br /> [ 3.203941] [] show_stack+0x38/0x14c<br /> [ 3.210666] [] dump_stack_lvl+0x60/0x88<br /> [ 3.217625] [] __warn+0xd0/0x100<br /> [ 3.223958] [] warn_slowpath_fmt+0x7c/0xcc<br /> [ 3.231150] [] show_cpuinfo+0x5e8/0x5f0<br /> [ 3.238080] [] seq_read_iter+0x354/0x4b4<br /> [ 3.245098] [] new_sync_read+0x17c/0x1c4<br /> [ 3.252114] [] vfs_read+0x138/0x1d0<br /> [ 3.258694] [] ksys_read+0x70/0x100<br /> [ 3.265265] [] do_syscall+0x7c/0x94<br /> [ 3.271820] [] handle_syscall+0xc4/0x160<br /> [ 3.281824] ---[ end trace 8b484262b4b8c24c ]---
Severity CVSS v4.0: Pending analysis
Last modification:
04/12/2025

CVE-2022-50288

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> qlcnic: prevent -&gt;dcb use-after-free on qlcnic_dcb_enable() failure<br /> <br /> adapter-&gt;dcb would get silently freed inside qlcnic_dcb_enable() in<br /> case qlcnic_dcb_attach() would return an error, which always happens<br /> under OOM conditions. This would lead to use-after-free because both<br /> of the existing callers invoke qlcnic_dcb_get_info() on the obtained<br /> pointer, which is potentially freed at that point.<br /> <br /> Propagate errors from qlcnic_dcb_enable(), and instead free the dcb<br /> pointer at callsite using qlcnic_dcb_free(). This also removes the now<br /> unused qlcnic_clear_dcb_ops() helper, which was a simple wrapper around<br /> kfree() also causing memory leaks for partially initialized dcb.<br /> <br /> Found by Linux Verification Center (linuxtesting.org) with the SVACE<br /> static analysis tool.
Severity CVSS v4.0: Pending analysis
Last modification:
03/12/2025

CVE-2022-50289

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ocfs2: fix memory leak in ocfs2_stack_glue_init()<br /> <br /> ocfs2_table_header should be free in ocfs2_stack_glue_init() if<br /> ocfs2_sysfs_init() failed, otherwise kmemleak will report memleak.<br /> <br /> BUG: memory leak<br /> unreferenced object 0xffff88810eeb5800 (size 128):<br /> comm "modprobe", pid 4507, jiffies 4296182506 (age 55.888s)<br /> hex dump (first 32 bytes):<br /> c0 40 14 a0 ff ff ff ff 00 00 00 00 01 00 00 00 .@..............<br /> 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................<br /> backtrace:<br /> [] __register_sysctl_table+0xca/0xef0<br /> [] 0xffffffffa0050037<br /> [] do_one_initcall+0xdb/0x480<br /> [] do_init_module+0x1cf/0x680<br /> [] load_module+0x6441/0x6f20<br /> [] __do_sys_finit_module+0x12f/0x1c0<br /> [] do_syscall_64+0x3f/0x90<br /> [] entry_SYSCALL_64_after_hwframe+0x63/0xcd
Severity CVSS v4.0: Pending analysis
Last modification:
03/12/2025

CVE-2022-50294

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> wifi: libertas: fix memory leak in lbs_init_adapter()<br /> <br /> When kfifo_alloc() failed in lbs_init_adapter(), cmd buffer is not<br /> released. Add free memory to processing error path.
Severity CVSS v4.0: Pending analysis
Last modification:
03/12/2025

CVE-2022-50286

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline<br /> <br /> When converting files with inline data to extents, delayed allocations<br /> made on a file system created with both the bigalloc and inline options<br /> can result in invalid extent status cache content, incorrect reserved<br /> cluster counts, kernel memory leaks, and potential kernel panics.<br /> <br /> With bigalloc, the code that determines whether a block must be<br /> delayed allocated searches the extent tree to see if that block maps<br /> to a previously allocated cluster. If not, the block is delayed<br /> allocated, and otherwise, it isn&amp;#39;t. However, if the inline option is<br /> also used, and if the file containing the block is marked as able to<br /> store data inline, there isn&amp;#39;t a valid extent tree associated with<br /> the file. The current code in ext4_clu_mapped() calls<br /> ext4_find_extent() to search the non-existent tree for a previously<br /> allocated cluster anyway, which typically finds nothing, as desired.<br /> However, a side effect of the search can be to cache invalid content<br /> from the non-existent tree (garbage) in the extent status tree,<br /> including bogus entries in the pending reservation tree.<br /> <br /> To fix this, avoid searching the extent tree when allocating blocks<br /> for bigalloc + inline files that are being converted from inline to<br /> extent mapped.
Severity CVSS v4.0: Pending analysis
Last modification:
23/12/2025

CVE-2022-50285

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> mm,hugetlb: take hugetlb_lock before decrementing h-&gt;resv_huge_pages<br /> <br /> The h-&gt;*_huge_pages counters are protected by the hugetlb_lock, but<br /> alloc_huge_page has a corner case where it can decrement the counter<br /> outside of the lock.<br /> <br /> This could lead to a corrupted value of h-&gt;resv_huge_pages, which we have<br /> observed on our systems.<br /> <br /> Take the hugetlb_lock before decrementing h-&gt;resv_huge_pages to avoid a<br /> potential race.
Severity CVSS v4.0: Pending analysis
Last modification:
04/12/2025

CVE-2022-50283

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> mtd: core: add missing of_node_get() in dynamic partitions code<br /> <br /> This fixes unbalanced of_node_put():<br /> [ 1.078910] 6 cmdlinepart partitions found on MTD device gpmi-nand<br /> [ 1.085116] Creating 6 MTD partitions on "gpmi-nand":<br /> [ 1.090181] 0x000000000000-0x000008000000 : "nandboot"<br /> [ 1.096952] 0x000008000000-0x000009000000 : "nandfit"<br /> [ 1.103547] 0x000009000000-0x00000b000000 : "nandkernel"<br /> [ 1.110317] 0x00000b000000-0x00000c000000 : "nanddtb"<br /> [ 1.115525] ------------[ cut here ]------------<br /> [ 1.120141] refcount_t: addition on 0; use-after-free.<br /> [ 1.125328] WARNING: CPU: 0 PID: 1 at lib/refcount.c:25 refcount_warn_saturate+0xdc/0x148<br /> [ 1.133528] Modules linked in:<br /> [ 1.136589] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 6.0.0-rc7-next-20220930-04543-g8cf3f7<br /> [ 1.146342] Hardware name: Freescale i.MX8DXL DDR3L EVK (DT)<br /> [ 1.151999] pstate: 600000c5 (nZCv daIF -PAN -UAO -TCO -DIT -SSBS BTYPE=--)<br /> [ 1.158965] pc : refcount_warn_saturate+0xdc/0x148<br /> [ 1.163760] lr : refcount_warn_saturate+0xdc/0x148<br /> [ 1.168556] sp : ffff800009ddb080<br /> [ 1.171866] x29: ffff800009ddb080 x28: ffff800009ddb35a x27: 0000000000000002<br /> [ 1.179015] x26: ffff8000098b06ad x25: ffffffffffffffff x24: ffff0a00ffffff05<br /> [ 1.186165] x23: ffff00001fdf6470 x22: ffff800009ddb367 x21: 0000000000000000<br /> [ 1.193314] x20: ffff00001fdfebe8 x19: ffff00001fdfec50 x18: ffffffffffffffff<br /> [ 1.200464] x17: 0000000000000000 x16: 0000000000000118 x15: 0000000000000004<br /> [ 1.207614] x14: 0000000000000fff x13: ffff800009bca248 x12: 0000000000000003<br /> [ 1.214764] x11: 00000000ffffefff x10: c0000000ffffefff x9 : 4762cb2ccb52de00<br /> [ 1.221914] x8 : 4762cb2ccb52de00 x7 : 205d313431303231 x6 : 312e31202020205b<br /> [ 1.229063] x5 : ffff800009d55c1f x4 : 0000000000000001 x3 : 0000000000000000<br /> [ 1.236213] x2 : 0000000000000000 x1 : ffff800009954be6 x0 : 000000000000002a<br /> [ 1.243365] Call trace:<br /> [ 1.245806] refcount_warn_saturate+0xdc/0x148<br /> [ 1.250253] kobject_get+0x98/0x9c<br /> [ 1.253658] of_node_get+0x20/0x34<br /> [ 1.257072] of_fwnode_get+0x3c/0x54<br /> [ 1.260652] fwnode_get_nth_parent+0xd8/0xf4<br /> [ 1.264926] fwnode_full_name_string+0x3c/0xb4<br /> [ 1.269373] device_node_string+0x498/0x5b4<br /> [ 1.273561] pointer+0x41c/0x5d0<br /> [ 1.276793] vsnprintf+0x4d8/0x694<br /> [ 1.280198] vprintk_store+0x164/0x528<br /> [ 1.283951] vprintk_emit+0x98/0x164<br /> [ 1.287530] vprintk_default+0x44/0x6c<br /> [ 1.291284] vprintk+0xf0/0x134<br /> [ 1.294428] _printk+0x54/0x7c<br /> [ 1.297486] of_node_release+0xe8/0x128<br /> [ 1.301326] kobject_put+0x98/0xfc<br /> [ 1.304732] of_node_put+0x1c/0x28<br /> [ 1.308137] add_mtd_device+0x484/0x6d4<br /> [ 1.311977] add_mtd_partitions+0xf0/0x1d0<br /> [ 1.316078] parse_mtd_partitions+0x45c/0x518<br /> [ 1.320439] mtd_device_parse_register+0xb0/0x274<br /> [ 1.325147] gpmi_nand_probe+0x51c/0x650<br /> [ 1.329074] platform_probe+0xa8/0xd0<br /> [ 1.332740] really_probe+0x130/0x334<br /> [ 1.336406] __driver_probe_device+0xb4/0xe0<br /> [ 1.340681] driver_probe_device+0x3c/0x1f8<br /> [ 1.344869] __driver_attach+0xdc/0x1a4<br /> [ 1.348708] bus_for_each_dev+0x80/0xcc<br /> [ 1.352548] driver_attach+0x24/0x30<br /> [ 1.356127] bus_add_driver+0x108/0x1f4<br /> [ 1.359967] driver_register+0x78/0x114<br /> [ 1.363807] __platform_driver_register+0x24/0x30<br /> [ 1.368515] gpmi_nand_driver_init+0x1c/0x28<br /> [ 1.372798] do_one_initcall+0xbc/0x238<br /> [ 1.376638] do_initcall_level+0x94/0xb4<br /> [ 1.380565] do_initcalls+0x54/0x94<br /> [ 1.384058] do_basic_setup+0x1c/0x28<br /> [ 1.387724] kernel_init_freeable+0x110/0x188<br /> [ 1.392084] kernel_init+0x20/0x1a0<br /> [ 1.395578] ret_from_fork+0x10/0x20<br /> [ 1.399157] ---[ end trace 0000000000000000 ]---<br /> [ 1.403782] ------------[ cut here ]------------
Severity CVSS v4.0: Pending analysis
Last modification:
04/12/2025

CVE-2022-50282

Publication date:
15/09/2025
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> chardev: fix error handling in cdev_device_add()<br /> <br /> While doing fault injection test, I got the following report:<br /> <br /> ------------[ cut here ]------------<br /> kobject: &amp;#39;(null)&amp;#39; (0000000039956980): is not initialized, yet kobject_put() is being called.<br /> WARNING: CPU: 3 PID: 6306 at kobject_put+0x23d/0x4e0<br /> CPU: 3 PID: 6306 Comm: 283 Tainted: G W 6.1.0-rc2-00005-g307c1086d7c9 #1253<br /> Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.13.0-1ubuntu1.1 04/01/2014<br /> RIP: 0010:kobject_put+0x23d/0x4e0<br /> Call Trace:<br /> <br /> cdev_device_add+0x15e/0x1b0<br /> __iio_device_register+0x13b4/0x1af0 [industrialio]<br /> __devm_iio_device_register+0x22/0x90 [industrialio]<br /> max517_probe+0x3d8/0x6b4 [max517]<br /> i2c_device_probe+0xa81/0xc00<br /> <br /> When device_add() is injected fault and returns error, if dev-&gt;devt is not set,<br /> cdev_add() is not called, cdev_del() is not needed. Fix this by checking dev-&gt;devt<br /> in error path.
Severity CVSS v4.0: Pending analysis
Last modification:
04/12/2025