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

Publication date:
04/08/2026
URL redirection to untrusted site (&amp;#39;open redirect&amp;#39;) vulnerability in Bilin Software and Informatics Consultancy Inc. HUMANIST Digital Human Resources allows Phishing.<br /> <br /> This issue affects HUMANIST Digital Human Resources: from 26.0 before 26.1.
Severity CVSS v4.0: Pending analysis
Last modification:
04/08/2026

CVE-2026-15721

Publication date:
04/08/2026
Cleartext storage of sensitive information vulnerability in Bilin Software and Informatics Consultancy Inc. HUMANIST Digital Human Resources allows SQL Injection.<br /> <br /> This issue affects HUMANIST Digital Human Resources: from 26.0 before 26.1.
Severity CVSS v4.0: Pending analysis
Last modification:
04/08/2026

CVE-2026-18772

Publication date:
04/08/2026
Improperly controlled sequential memory allocation vulnerability in Samsung Open Source rlottie allows Exponential Data Expansion.
Severity CVSS v4.0: Pending analysis
Last modification:
11/08/2026

CVE-2026-14192

Publication date:
04/08/2026
Improper neutralization of input during web page generation (&amp;#39;cross-site scripting&amp;#39;) vulnerability in Bilin Software and Informatics Consultancy Inc. HUMANIST Digital Human Resources allows Stored XSS.<br /> <br /> This issue affects HUMANIST Digital Human Resources: from 26.0 before 26.1.
Severity CVSS v4.0: Pending analysis
Last modification:
04/08/2026

CVE-2026-14175

Publication date:
04/08/2026
Unrestricted upload of file with dangerous type vulnerability in Bilin Software and Informatics Consultancy Inc. HUMANIST Digital Human Resources allows Upload a Web Shell to a Web Server.<br /> <br /> This issue affects HUMANIST Digital Human Resources: from 26.0 before 26.1.
Severity CVSS v4.0: Pending analysis
Last modification:
04/08/2026

CVE-2026-14194

Publication date:
04/08/2026
Improper Limitation of a Pathname to a Restricted Directory (&amp;#39;Path Traversal&amp;#39;) vulnerability in Bilin Software and Informatics Consultancy Inc. HUMANIST Digital Human Resources allows Path Traversal.<br /> <br /> This issue affects HUMANIST Digital Human Resources: from 26.0 before 26.1.
Severity CVSS v4.0: Pending analysis
Last modification:
04/08/2026

CVE-2026-18759

Publication date:
04/08/2026
The background service of ABP or AES runs as NT AUTHORITY\SYSTEM and implements a file-based inter-process communication (IPC) mechanism protected by AES encryption. Because the encryption key file is readable by standard users and protected using DPAPI. Any authenticated local user can recover the key and forge valid IPC requests. Furthermore, the service does not check the identity of the requesting process and validates destination paths using an insufficient substring check. A local attacker can submit crafted encrypted requests containing directory traversal sequences to perform arbitrary file reads and arbitrary file writes as NT AUTHORITY\SYSTEM, leading to full local privilege escalation.<br /> Affected products and versions include: ABP (ASUSTOR Backup Plan) 2.0.7.10171 and earlier as well as AES (ASUSTOR EZSync) 1.1.1.3113 and earlier.
Severity CVSS v4.0: HIGH
Last modification:
04/08/2026

CVE-2026-67243

Publication date:
04/08/2026
freo2 provided by refirio contains an unrestricted upload of file with dangerous type vulnerability. A user with the highest-level administrative privileges for the product may upload an executable file and execute arbitrary OS commands.
Severity CVSS v4.0: HIGH
Last modification:
04/08/2026

CVE-2026-18753

Publication date:
04/08/2026
The<br /> product firmware contains an embedded, static RSA private key utilized by the<br /> Lighttpd web server for TLS termination. Exposure of this private key allows<br /> malicious actors to breach the confidentiality and integrity of HTTPS<br /> communications, enabling traffic decryption and server spoofing.
Severity CVSS v4.0: Pending analysis
Last modification:
04/08/2026

CVE-2026-18754

Publication date:
04/08/2026
The<br /> product firmware contains an embedded, static RSA private key utilized by the<br /> Lighttpd web server for TLS termination. Exposure of this private key allows<br /> malicious actors to breach the confidentiality and integrity of HTTPS<br /> communications, enabling traffic decryption and server spoofing.
Severity CVSS v4.0: Pending analysis
Last modification:
04/08/2026

CVE-2026-18755

Publication date:
04/08/2026
A DLL hijacking vulnerability in GeoVision GV-ASManager allows a local attacker with write access to an unsafe search directory to execute arbitrary code. By placing a crafted dynamic-link library (DLL) file into the application search path prior to the legitimate library, the malicious code is loaded and executed under the security privileges of the GV-ASManager process.
Severity CVSS v4.0: Pending analysis
Last modification:
04/08/2026

CVE-2026-64565

Publication date:
04/08/2026
In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> Input: ims-pcu - fix heap-buffer-overflow in ims_pcu_process_data()<br /> <br /> The `ims_pcu_process_data()` processes incoming URB data byte by byte.<br /> However, it fails to check if the `read_pos` index exceeds<br /> IMS_PCU_BUF_SIZE.<br /> <br /> If a malicious USB device sends a packet larger than IMS_PCU_BUF_SIZE,<br /> `read_pos` will increment indefinitely. Moreover, since `read_pos` is<br /> located immediately after `read_buf`, the attacker can overwrite<br /> `read_pos` itself to arbitrarily control the index.<br /> <br /> This manipulated `read_pos` is subsequently used in<br /> `ims_pcu_handle_response()` to copy data into `cmd_buf`, leading to a<br /> heap buffer overflow.<br /> <br /> Specifically, an attacker can overwrite the `cmd_done.wait.head` located<br /> at offset 136 relative to `cmd_buf` in the `ims_pcu_handle_response()`.<br /> Consequently, when the driver calls `complete(&amp;pcu-&gt;cmd_done)`, it<br /> triggers a control flow hijack by using the manipulated pointer.<br /> <br /> Fix this by adding a bounds check for `read_pos` before writing to<br /> `read_buf`. If the packet is too long, discard it, log a warning,<br /> and reset the parser state.<br /> <br /> [dtor: factor out resetting packet state, reset checksum as well]
Severity CVSS v4.0: Pending analysis
Last modification:
04/08/2026