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

Publication date:
04/06/2026
The FieldX MDM adb messaging topic passes unverified payloads directly into Runtime.exec(), allowing command/instruction injection.
Severity CVSS v4.0: CRITICAL
Last modification:
04/06/2026

CVE-2026-49186

Publication date:
04/06/2026
The local MQTT broker does not enforce topic-level Access Control Lists (ACLs). This allows any client to subscribe using wildcard characters (# or +) to enumerate hidden network devices or publish rogue control commands.
Severity CVSS v4.0: HIGH
Last modification:
04/06/2026

CVE-2026-44917

Publication date:
04/06/2026
OpenStack Ironic before 35.0.2 allows a malicious authenticated project admin or manager to read local files on the Ironic conductor via a pxe_template.
Severity CVSS v4.0: Pending analysis
Last modification:
04/06/2026

CVE-2026-41283

Publication date:
04/06/2026
OpenStack Mistral through 22.0.0 allows Arbitrary Remote Code Execution when the API is exposed. There are endpoints that allow code execution, which can lead to exfiltration of service credentials.
Severity CVSS v4.0: Pending analysis
Last modification:
08/07/2026

CVE-2026-41010

Publication date:
04/06/2026
ReleaseJob#unpack builds job_dir = File.join(@release_dir, &amp;#39;jobs&amp;#39;, name) and job_tgz = File.join(@release_dir, &amp;#39;jobs&amp;#39;, "#{name}.tgz") where name returns @job_meta[&amp;#39;name&amp;#39;], a value taken verbatim from the jobs: array of the attacker-supplied release.MF inside the uploaded tarball. These paths are then interpolated into a shell string: Bosh::Common::Exec.sh("tar -C #{job_dir} -xf #{job_tgz} 2&gt;&amp;1", :on_error =&gt; :return). Bosh::Common::Exec.sh executes via %x{#{command}} (bosh-common/lib/bosh/common/exec.rb:53), i.e. /bin/sh -c, so any shell metacharacters in name are interpreted. FileUtils.mkdir_p(job_dir) on line 49 creates the literal directory (no shell) and succeeds even when the name contains $()/;, so execution reaches the sh call.<br /> <br /> Affected versions:<br /> - BOSH Director: all versions prior to v282.1.12 (inclusive); fixed in v282.1.12 or later
Severity CVSS v4.0: HIGH
Last modification:
04/06/2026

CVE-2026-41860

Publication date:
04/06/2026
CWE-326 in BOSH allows a local attacker to steal Basic-auth credentials or redirect UAA token requests via MITM. HttpRequestHelper#create_async_endpoint and #send_http_get_request_synchronous hard-code OpenSSL::SSL::VERIFY_NONE, enabling an attacker to intercept traffic between bosh-monitor and the BOSH director or UAA and steal credentials.<br /> <br /> Affected versions:<br /> - BOSH: all versions prior to v282.1.9 (inclusive); fixed in v282.1.9 or later
Severity CVSS v4.0: HIGH
Last modification:
04/06/2026

CVE-2026-8829

Publication date:
04/06/2026
HTML::Entities versions before 3.84 for Perl read freed heap memory in _decode_entities.<br /> <br /> The XS routine backing HTML::Entities::_decode_entities cached a pointer (repl) into the entity-value SV returned by hv_fetch on the entity2char hash. When the input SV was identical to a value SV in that hash, and that value contained its own key as an entity reference, a later call to grow_gap() reallocated the SV&amp;#39;s PV buffer and freed the backing allocation that repl still pointed into. The subsequent copy loop read repl_len bytes from the freed allocation.<br /> <br /> The read may disclose adjacent heap contents into the destination SV.
Severity CVSS v4.0: Pending analysis
Last modification:
28/06/2026

CVE-2026-41011

Publication date:
04/06/2026
PackagePersister.validate_tgz builds "tar -tf #{tgz} 2&gt;&amp;1" where tgz = File.join(release_dir, &amp;#39;packages&amp;#39;, "#{name}.tgz") and name = package_meta[&amp;#39;name&amp;#39;] comes directly from release.MF inside the uploaded tarball. The string is passed to Bosh::Common::Exec.sh, which executes via %x{} — i.e., /bin/sh -c. No Shellwords.escape is applied. The Models::Package Sequel validation (VALID_ID = /^[-0-9A-Za-z_+.]+$/i) would reject the name, but in create_package (lines 74–79) the shell-out in save_package_source_blob runs before package.save, so validation fires too late.<br /> <br /> Affected versions:<br /> - BOSH: all versions prior to v282.1.12 (inclusive); fixed in v282.1.12 or later
Severity CVSS v4.0: HIGH
Last modification:
04/06/2026

CVE-2026-41858

Publication date:
04/06/2026
Weak Randomness / Insecure Cryptographic Primitive (CWE-338) in Get-RandomPassword in BOSH-Ecosystem / windows-utilities-release allows a network attacker to estimate VM boot time and reconstruct a small candidate list to recover the Administrator password. The randomize_password job exists solely to lock the local Administrator account behind an unguessable password as a hardening control. Because the password is derived from a predictable, clock-seeded PRNG, a network attacker who can estimate VM boot time can reconstruct a small candidate list and recover the Administrator password, defeating the hardening control.<br /> <br /> Affected versions:<br /> - windows-utilities-release: all versions prior to v0.23.0 (inclusive); fixed in v0.23.0 or later
Severity CVSS v4.0: Pending analysis
Last modification:
04/06/2026

CVE-2026-41859

Publication date:
04/06/2026
A network man-in-the-middle between nats-sync and the BOSH director can steal the director credentials (Basic auth header or UAA client secret) and can tamper with the VM list that is written into the NATS authorization file. Stolen credentials grant administrative director access. UsersSync#bosh_api_response_body builds a Net::HTTP client with verify_mode = OpenSSL::SSL::VERIFY_NONE for every director call (/info, /deployments, /deployments//vms).<br /> <br /> Affected versions:<br /> - BOSH: all versions prior to v282.1.9 (inclusive); fixed in v282.1.9 or later
Severity CVSS v4.0: HIGH
Last modification:
04/06/2026

CVE-2026-10597

Publication date:
04/06/2026
OMICARD EDM developed by ITPison has a Insecure Direct Object Reference vulnerability, allowing unauthenticated remote attackers to modify a specific parameter to obtain user&amp;#39;s email address.
Severity CVSS v4.0: MEDIUM
Last modification:
04/06/2026

CVE-2026-10737

Publication date:
04/06/2026
The SP Project &amp; Document Manager plugin for WordPress is vulnerable to unauthorized access due to a missing capability check on the view_file function in all versions up to, and including, 4.71. This makes it possible for unauthenticated attackers to read file metadata and obtain download links for arbitrary files stored inside project folders on the server, which can contain sensitive information. The authorization gate uses a negated nonce check OR-chained with permission checks, meaning a missing or invalid nonce causes the entire condition to evaluate to true and bypass all preceding capability and ownership checks. The secondary fallback check only denies access for root-level files (pid == 0), leaving all files stored inside project folders fully exposed to unauthenticated users who supply only a valid file ID in a POST request to admin-ajax.php.
Severity CVSS v4.0: Pending analysis
Last modification:
04/06/2026