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

Publication date:
09/06/2026
Adobe Experience Manager Forms JEE versions LTS SP1, 6.5.24.0 and earlier are affected by a stored Cross-Site Scripting (XSS) vulnerability that could be abused by an attacker to inject malicious scripts into vulnerable form fields. Malicious JavaScript may be executed in a victim's browser when they browse to the page containing the vulnerable field, potentially gaining elevated access or control over the victim's account or session. Scope is changed.
Severity CVSS v4.0: Pending analysis
Last modification:
23/07/2026

CVE-2026-28237

Publication date:
09/06/2026
Unrestricted resource allocation in AMD uProf may be exploitable to consume excessive system resources, potentially leading to a loss of availability.
Severity CVSS v4.0: MEDIUM
Last modification:
23/07/2026

CVE-2026-0466

Publication date:
09/06/2026
Improper access control in AMD uProf may allow a local attacker with user privileges to write to the kernel-shared memory section, potentially resulting in crash or denial of service.
Severity CVSS v4.0: MEDIUM
Last modification:
23/07/2026

CVE-2025-54509

Publication date:
09/06/2026
Improper access control for register interface in the Input-Output Memory Management Unit (IOMMU) could allow a privileged attacker to cause non-coherent accesses by the AMD Secure Processor (ASP), potentially resulting in loss of integrity.
Severity CVSS v4.0: MEDIUM
Last modification:
23/07/2026

CVE-2026-9210

Publication date:
09/06/2026
Insufficient input validation vulnerability in the listed NETGEAR models allows authenticated administrators connected to the local network to make unauthorized modification of router software and functionality.
Severity CVSS v4.0: MEDIUM
Last modification:
23/07/2026

CVE-2026-9211

Publication date:
09/06/2026
An unauthenticated user on the local network can gain control of the router and make unauthorized changes to its operation.
Severity CVSS v4.0: MEDIUM
Last modification:
23/07/2026

CVE-2026-9212

Publication date:
09/06/2026
Insufficient authentication and input validation in the listed NETGEAR models allow users connected to the local network to execute commands impacting the product's confidentiality or change certain configurations.
Severity CVSS v4.0: MEDIUM
Last modification:
23/07/2026

CVE-2026-9213

Publication date:
09/06/2026
A vulnerability in the affected NETGEAR gaming routers allows attackers with the ability to intercept and tamper with traffic between the router and the Internet, to execute code on the device.
Severity CVSS v4.0: MEDIUM
Last modification:
23/07/2026

CVE-2026-50508

Publication date:
09/06/2026
Exposure of sensitive information to an unauthorized actor in Windows NTLM allows an unauthorized attacker to perform spoofing over a network.
Severity CVSS v4.0: Pending analysis
Last modification:
23/07/2026

CVE-2026-7383

Publication date:
09/06/2026
Issue summary: A signed integer overflow when sizing the destination<br /> buffer for Unicode output in ASN1_mbstring_ncopy() can lead to a heap<br /> buffer overflow.<br /> <br /> Impact summary: A heap buffer overflow may lead to a crash or possibly<br /> attacker controlled code execution or other undefined behaviour.<br /> <br /> In ASN1_mbstring_copy() and ASN1_mbstring_ncopy() the destination<br /> size for Unicode output is computed in a signed int: by left shift<br /> of the input character count for BMPSTRING (UTF-16) and<br /> UNIVERSALSTRING (UTF-32), and by summing per-character byte counts<br /> for UTF8STRING. The calculation overflows when the input reaches<br /> around 2^30 characters. In the worst case (UNIVERSALSTRING at 2^30<br /> characters) the size wraps to zero, OPENSSL_malloc(1) is called, and<br /> the subsequent character copy writes several gigabytes past the<br /> one-byte allocation.<br /> <br /> X.509 certificate processing routes through ASN1_STRING_set_by_NID(),<br /> whose DIRSTRING_TYPE mask excludes UNIVERSALSTRING and whose per-NID<br /> size limits cap the input length; no network protocol or<br /> certificate-handling path in OpenSSL exercises the overflow.<br /> Triggering the bug requires an application that calls<br /> ASN1_mbstring_copy() or ASN1_mbstring_ncopy() directly, or registers<br /> a custom string type via ASN1_STRING_TABLE_add(), with<br /> attacker-controlled input on the order of half a gigabyte or more.<br /> For these reasons this issue was assigned Low severity.<br /> <br /> The FIPS modules in 4.0, 3.6, 3.5, 3.4 and 3.0 are not affected by<br /> this issue, as the affected code is outside the OpenSSL FIPS module<br /> boundary.
Severity CVSS v4.0: Pending analysis
Last modification:
23/07/2026

CVE-2026-9076

Publication date:
09/06/2026
Issue summary: When CMS password-based decryption (RFC 3211 / PWRI key unwrap)<br /> processes attacker-supplied CMS data, an attacker-chosen stream-mode KEK<br /> cipher can trigger a heap out-of-bounds read in kek_unwrap_key().<br /> <br /> Impact summary: A heap buffer over-read may trigger a crash which leads to<br /> Denial of Service for an application if the input buffer ends at a memory<br /> page boundary and the following page is unmapped. There is no information<br /> disclosure as the over-read bytes are not revealed to the attacker.<br /> <br /> The key unwrapping function performs a check-byte test as specified in the<br /> RFC that reads 7 bytes from a heap allocation that is based on the wrapped<br /> key length from the message. There is a minimum length check based on the<br /> block length of the wrapping cipher. However the cipher is selected from<br /> an OID carried in the attacker&amp;#39;s PWRI keyEncryptionAlgorithm with no<br /> requirement that the cipher be a block cipher. When an attacker selects<br /> a stream-mode cipher the guard will be ineffective and the allocated buffer<br /> containing the unwrapped key can be too small to fit the check-bytes<br /> specified in the RFC and a buffer over-read can happen.<br /> <br /> Applications calling CMS_decrypt() or CMS_decrypt_set1_password()<br /> (equivalently openssl cms -decrypt -pwri_password ...) on untrusted CMS<br /> data are vulnerable to this issue. No password knowledge is required: the<br /> over-read happens during the unwrap attempt before any authentication<br /> succeeds.<br /> <br /> The over-read is limited to a few bytes and is not written to output, so<br /> there is no information disclosure. Triggering a crash requires the<br /> allocation to border unmapped memory, which is unlikely with the normal<br /> allocator.<br /> <br /> The FIPS modules are not affected by this issue.
Severity CVSS v4.0: Pending analysis
Last modification:
23/07/2026

CVE-2026-49957

Publication date:
09/06/2026
Hermes WebUI before version 0.51.296 contains a workspace boundary bypass vulnerability that allows authenticated attackers to circumvent blocked-root path checks by exploiting an early return in the SSH/remote terminal profile workspace resolution logic within _remote_terminal_workspace_candidate(). Attackers can configure a remote terminal working directory to a system directory such as /etc, causing the workspace resolution path to accept it as a trusted local workspace root before the _is_blocked_workspace_path() guard executes, enabling read access to local system files through workspace file-read helpers.
Severity CVSS v4.0: MEDIUM
Last modification:
23/07/2026