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-2026-37977

Publication date:
06/04/2026
A flaw was found in Keycloak. A remote attacker can exploit a Cross-Origin Resource Sharing (CORS) header injection vulnerability in Keycloak's User-Managed Access (UMA) token endpoint. This flaw occurs because the `azp` claim from a client-supplied JSON Web Token (JWT) is used to set the `Access-Control-Allow-Origin` header before the JWT signature is validated. When a specially crafted JWT with an attacker-controlled `azp` value is processed, this value is reflected as the CORS origin, even if the grant is later rejected. This can lead to the exposure of low-sensitivity information from authorization server error responses, weakening origin isolation, but only when a target client is misconfigured with `webOrigins: ["*"]`.
Severity CVSS v4.0: Pending analysis
Last modification:
06/04/2026

CVE-2026-5636

Publication date:
06/04/2026
A weakness has been identified in PHPGurukul Online Shopping Portal Project 2.1. This affects an unknown part of the file /cancelorder.php of the component Parameter Handler. This manipulation of the argument oid causes sql injection. The attack may be initiated remotely. The exploit has been made available to the public and could be used for attacks.
Severity CVSS v4.0: MEDIUM
Last modification:
06/04/2026

CVE-2026-31410

Publication date:
06/04/2026
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ksmbd: use volume UUID in FS_OBJECT_ID_INFORMATION<br /> <br /> Use sb-&gt;s_uuid for a proper volume identifier as the primary choice.<br /> For filesystems that do not provide a UUID, fall back to stfs.f_fsid<br /> obtained from vfs_statfs().
Severity CVSS v4.0: Pending analysis
Last modification:
06/04/2026

CVE-2026-5633

Publication date:
06/04/2026
A vulnerability was determined in assafelovic gpt-researcher up to 3.4.3. Affected is an unknown function of the component ws Endpoint. Executing a manipulation of the argument source_urls can lead to server-side request forgery. It is possible to launch the attack remotely. The exploit has been publicly disclosed and may be utilized. The project was informed of the problem early through an issue report but has not responded yet.
Severity CVSS v4.0: MEDIUM
Last modification:
06/04/2026

CVE-2026-5634

Publication date:
06/04/2026
A vulnerability was identified in projectworlds Car Rental Project 1.0. Affected by this vulnerability is an unknown functionality of the file /book_car.php of the component Parameter Handler. The manipulation of the argument fname leads to sql injection. The attack can be initiated remotely. The exploit is publicly available and might be used.
Severity CVSS v4.0: MEDIUM
Last modification:
06/04/2026

CVE-2026-5635

Publication date:
06/04/2026
A security flaw has been discovered in PHPGurukul Online Shopping Portal Project 2.1. Affected by this issue is some unknown functionality of the file /categorywise-products.php of the component Parameter Handler. The manipulation of the argument cid results in sql injection. The attack can be launched remotely. The exploit has been released to the public and may be used for attacks.
Severity CVSS v4.0: MEDIUM
Last modification:
06/04/2026

CVE-2026-31405

Publication date:
06/04/2026
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> media: dvb-net: fix OOB access in ULE extension header tables<br /> <br /> The ule_mandatory_ext_handlers[] and ule_optional_ext_handlers[] tables<br /> in handle_one_ule_extension() are declared with 255 elements (valid<br /> indices 0-254), but the index htype is derived from network-controlled<br /> data as (ule_sndu_type &amp; 0x00FF), giving a range of 0-255. When<br /> htype equals 255, an out-of-bounds read occurs on the function pointer<br /> table, and the OOB value may be called as a function pointer.<br /> <br /> Add a bounds check on htype against the array size before either table<br /> is accessed. Out-of-range values now cause the SNDU to be discarded.
Severity CVSS v4.0: Pending analysis
Last modification:
06/04/2026

CVE-2026-31406

Publication date:
06/04/2026
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> xfrm: Fix work re-schedule after cancel in xfrm_nat_keepalive_net_fini()<br /> <br /> After cancel_delayed_work_sync() is called from<br /> xfrm_nat_keepalive_net_fini(), xfrm_state_fini() flushes remaining<br /> states via __xfrm_state_delete(), which calls<br /> xfrm_nat_keepalive_state_updated() to re-schedule nat_keepalive_work.<br /> <br /> The following is a simple race scenario:<br /> <br /> cpu0 cpu1<br /> <br /> cleanup_net() [Round 1]<br /> ops_undo_list()<br /> xfrm_net_exit()<br /> xfrm_nat_keepalive_net_fini()<br /> cancel_delayed_work_sync(nat_keepalive_work);<br /> xfrm_state_fini()<br /> xfrm_state_flush()<br /> xfrm_state_delete(x)<br /> __xfrm_state_delete(x)<br /> xfrm_nat_keepalive_state_updated(x)<br /> schedule_delayed_work(nat_keepalive_work);<br /> rcu_barrier();<br /> net_complete_free();<br /> net_passive_dec(net);<br /> llist_add(&amp;net-&gt;defer_free_list, &amp;defer_free_list);<br /> <br /> cleanup_net() [Round 2]<br /> rcu_barrier();<br /> net_complete_free()<br /> kmem_cache_free(net_cachep, net);<br /> nat_keepalive_work()<br /> // on freed net<br /> <br /> To prevent this, cancel_delayed_work_sync() is replaced with<br /> disable_delayed_work_sync().
Severity CVSS v4.0: Pending analysis
Last modification:
06/04/2026

CVE-2026-31407

Publication date:
06/04/2026
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> netfilter: conntrack: add missing netlink policy validations<br /> <br /> Hyunwoo Kim reports out-of-bounds access in sctp and ctnetlink.<br /> <br /> These attributes are used by the kernel without any validation.<br /> Extend the netlink policies accordingly.<br /> <br /> Quoting the reporter:<br /> nlattr_to_sctp() assigns the user-supplied CTA_PROTOINFO_SCTP_STATE<br /> value directly to ct-&gt;proto.sctp.state without checking that it is<br /> within the valid range. [..]<br /> <br /> and: ... with exp-&gt;dir = 100, the access at<br /> ct-&gt;master-&gt;tuplehash[100] reads 5600 bytes past the start of a<br /> 320-byte nf_conn object, causing a slab-out-of-bounds read confirmed by<br /> UBSAN.
Severity CVSS v4.0: Pending analysis
Last modification:
06/04/2026

CVE-2026-31408

Publication date:
06/04/2026
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold<br /> <br /> sco_recv_frame() reads conn-&gt;sk under sco_conn_lock() but immediately<br /> releases the lock without holding a reference to the socket. A concurrent<br /> close() can free the socket between the lock release and the subsequent<br /> sk-&gt;sk_state access, resulting in a use-after-free.<br /> <br /> Other functions in the same file (sco_sock_timeout(), sco_conn_del())<br /> correctly use sco_sock_hold() to safely hold a reference under the lock.<br /> <br /> Fix by using sco_sock_hold() to take a reference before releasing the<br /> lock, and adding sock_put() on all exit paths.
Severity CVSS v4.0: Pending analysis
Last modification:
06/04/2026

CVE-2026-31409

Publication date:
06/04/2026
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> ksmbd: unset conn-&gt;binding on failed binding request<br /> <br /> When a multichannel SMB2_SESSION_SETUP request with<br /> SMB2_SESSION_REQ_FLAG_BINDING fails ksmbd sets conn-&gt;binding = true<br /> but never clears it on the error path. This leaves the connection in<br /> a binding state where all subsequent ksmbd_session_lookup_all() calls<br /> fall back to the global sessions table. This fix it by clearing<br /> conn-&gt;binding = false in the error path.
Severity CVSS v4.0: Pending analysis
Last modification:
06/04/2026

CVE-2026-5632

Publication date:
06/04/2026
A vulnerability was found in assafelovic gpt-researcher up to 3.4.3. This impacts an unknown function of the component HTTP REST API Endpoint. Performing a manipulation results in missing authentication. It is possible to initiate the attack remotely. The exploit has been made public and could be used. The project was informed of the problem early through an issue report but has not responded yet.
Severity CVSS v4.0: MEDIUM
Last modification:
06/04/2026