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

Publication date:
27/07/2026
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.
Severity CVSS v4.0: Pending analysis
Last modification:
30/07/2026

CVE-2026-64532

Publication date:
27/07/2026
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.
Severity CVSS v4.0: Pending analysis
Last modification:
30/07/2026

CVE-2026-64533

Publication date:
27/07/2026
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]
Severity CVSS v4.0: Pending analysis
Last modification:
30/07/2026

CVE-2026-64534

Publication date:
27/07/2026
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().
Severity CVSS v4.0: Pending analysis
Last modification:
30/07/2026

CVE-2026-64535

Publication date:
27/07/2026
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.
Severity CVSS v4.0: Pending analysis
Last modification:
30/07/2026

CVE-2026-64536

Publication date:
27/07/2026
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().
Severity CVSS v4.0: Pending analysis
Last modification:
30/07/2026

CVE-2026-14837

Publication date:
27/07/2026
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.
Severity CVSS v4.0: HIGH
Last modification:
30/07/2026

CVE-2026-9830

Publication date:
27/07/2026
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.
Severity CVSS v4.0: Pending analysis
Last modification:
27/07/2026

CVE-2026-66412

Publication date:
27/07/2026
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.
Severity CVSS v4.0: HIGH
Last modification:
28/07/2026

CVE-2026-14820

Publication date:
27/07/2026
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.
Severity CVSS v4.0: Pending analysis
Last modification:
27/07/2026

CVE-2026-14827

Publication date:
27/07/2026
The Calendar WordPress plugin before 1.3.18 does not properly escape a user-supplied event field before outputting it inside an HTML attribute on a public-facing page, allowing users with the Contributor role to inject arbitrary JavaScript that executes in the browser of anyone viewing the calendar.
Severity CVSS v4.0: Pending analysis
Last modification:
27/07/2026

CVE-2026-13400

Publication date:
27/07/2026
Simply Schedule Appointments is vulnerable to unauthenticated Stored Cross-Site Scripting in all versions up to and including 1.6.12.2. The root cause is a sanitization-ordering defect: the rendered notification content is decoded back into live HTML after it has already passed through the Simply Schedule Appointments WordPress plugin before 1.6.12.4&amp;#39;s wp_kses_post() filter, so a double-encoded payload survives intake and is reintroduced as an executable element at render time.
Severity CVSS v4.0: Pending analysis
Last modification:
27/07/2026