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

Publication date:
27/08/2026
EAZ EazyFix 12.9 allows a Security Feature Bypass related to a "Missing Cryptographic Step" associated with "Secure Boot disable."
Severity CVSS v4.0: Pending analysis
Last modification:
27/08/2026

CVE-2026-19092

Publication date:
27/08/2026
The Tutor LMS WordPress plugin before 4.0.6 does not prevent request data from overwriting internal variables while rendering templates, allowing unauthenticated users to invoke arbitrary zero-argument PHP functions and receive their output.
Severity CVSS v4.0: Pending analysis
Last modification:
27/08/2026

CVE-2026-18886

Publication date:
27/08/2026
ServiceNow has remediated an improper access control vulnerability that was identified in the ServiceNow AI platform. This vulnerability could enable an unauthenticated user, in certain circumstances, to create or modify instance data beyond what was intended, resulting in privilege escalation. <br /> <br /> <br /> <br /> <br /> <br /> ServiceNow deployed a security update to hosted instances and ServiceNow provided the update to our partners and self-hosted customers. We are not currently aware of exploitation against ServiceNow instances. <br /> <br /> <br /> <br /> We recommend customers promptly apply appropriate updates or upgrade to a patched release if they have not already done so.
Severity CVSS v4.0: CRITICAL
Last modification:
27/08/2026

CVE-2026-18885

Publication date:
27/08/2026
ServiceNow has remediated a code injection vulnerability that was identified in the ServiceNow AI platform. This vulnerability could enable an unauthenticated user, in certain circumstances, to execute arbitrary code in the ServiceNow platform and gain access to, or modify, instance data beyond what was intended. <br /> <br /> <br /> <br /> <br /> <br /> ServiceNow deployed a security update to hosted instances and ServiceNow provided the update to our partners and self-hosted customers. We are not currently aware of malicious exploitation against ServiceNow instances. <br /> <br /> <br /> <br /> We recommend customers promptly apply appropriate updates or upgrade to a patched release if they have not already done so.
Severity CVSS v4.0: CRITICAL
Last modification:
27/08/2026

CVE-2026-18374

Publication date:
27/08/2026
Passing an effectively empty string to the `,ccs=` syntax extension of the mode argument in the `fopen` function in the GNU C Library version 2.45 or earlier may result in a heap buffer overflow when the mode string input to the function is attacker controlled.<br /> <br /> <br /> <br /> This usage pattern is not seen in applications in common GNU/Linux distributions and applications that process user-supplied values for `ccs` should not pass them through without validation.
Severity CVSS v4.0: Pending analysis
Last modification:
28/08/2026

CVE-2026-10036

Publication date:
27/08/2026
SpeechBrain before 1.1.1 contains an arbitrary code execution vulnerability that allows attackers to execute arbitrary code by supplying a crafted CKPT.yaml checkpoint metadata file parsed with PyYAML&amp;#39;s unsafe loader during candidate enumeration in Checkpointer.recover_if_possible(). Attackers can embed malicious Python object construction tags such as !!python/object/apply in any CKPT.yaml file within the configured checkpoint path to trigger code execution during candidate discovery, even if the malicious checkpoint is never selected for recovery.
Severity CVSS v4.0: HIGH
Last modification:
27/08/2026

CVE-2026-81817

Publication date:
27/08/2026
Affected versions of Flowintel contain an insecure direct object reference / broken object-level authorization issue across numerous task endpoints.<br /> <br /> <br /> The routes generally received both a case identifier and a task identifier, but previously they did not enforce that the task actually belonged to the supplied case. As a result, an authenticated user with editor-level access to one case could potentially substitute the ID of a task from another case and invoke operations against that foreign task.<br /> <br /> <br /> The patch introduces task_case_bound_required, which loads both objects and returns 404 unless the task belongs to the requested case. This protection is applied to edit, delete, note, assignment, status, file, export, MISP-linking, subtask, external-reference, and other task-related endpoints.<br /> <br /> The fix also adds explicit checks that a requested note_id belongs to the current task before returning or exporting it, closing related cross-object access paths.<br /> <br /> Version impacted =&gt;3.3.0
Severity CVSS v4.0: HIGH
Last modification:
27/08/2026

CVE-2026-81818

Publication date:
27/08/2026
Affected versions of Flowintel contain an authorization flaw in the administrative user-edit API.<br /> <br /> <br /> The existing authorization check correctly prevented an organization administrator from editing users in another organization, but it did not prevent them from editing a full administrator within their own organization. As a result, an org admin could modify that full administrator account, including changing its password. The upstream commit explicitly describes the issue as:<br /> <br /> <br /> “Org admin can change the password of a full admin in the same organization.”<br /> <br /> <br /> The fix adds a higher-privilege boundary check:<br /> <br /> <br /> if user_to_edit.is_admin(): return ... 403<br /> <br /> so organization administrators can no longer modify full administrator accounts.<br /> <br /> Version impacted &gt;=3.3.0
Severity CVSS v4.0: HIGH
Last modification:
27/08/2026

CVE-2026-81819

Publication date:
27/08/2026
Affected versions of Flowintel expose the /my_assignment/user API endpoint to any authenticated API user. The endpoint accepts a user_id parameter identifying the user whose assignments should be returned, but previously had no role restriction beyond general API authentication.<br /> <br /> <br /> As a result, a lower-privileged authenticated user could potentially query another user’s assignment information by supplying that user’s identifier.<br /> <br /> <br /> The fix changes:<br /> <br /> <br /> method_decorators = [api_required]<br /> <br /> <br /> to:<br /> <br /> <br /> method_decorators = [admin_or_org_admin_required, api_required]<br /> <br /> so only administrators or organization administrators can perform cross-user assignment queries.<br /> <br /> Version impacted =&gt;3.3.0
Severity CVSS v4.0: MEDIUM
Last modification:
27/08/2026

CVE-2026-81820

Publication date:
27/08/2026
Affected versions of Flowintel construct timeline HTML using attacker-controllable MISP object fields such as:<br /> <br /> <br /> <br /> * <br /> object UUID;<br /> <br /> <br /> * <br /> object name;<br /> <br /> <br /> * <br /> attribute value;<br /> <br /> <br /> * <br /> attribute type;<br /> <br /> <br /> * <br /> comment;<br /> <br /> <br /> * <br /> first/last seen values;<br /> <br /> <br /> * <br /> IDS flag.<br /> <br /> <br /> <br /> <br /> <br /> Those values were concatenated directly into HTML strings before rendering. The upstream commit explicitly states that DOMPurify removed XSS vectors but still allowed other HTML elements, such as forms, through.<br /> <br /> The fix replaces direct string interpolation with DOM construction via document.createElement() and assigns all attacker-controlled values using textContent. The headline is similarly converted to escaped HTML through a temporary element.<br /> <br /> Version impacted =&gt;3.3.0
Severity CVSS v4.0: MEDIUM
Last modification:
27/08/2026

CVE-2026-81826

Publication date:
27/08/2026
Affected versions of Flowintel do not revoke existing authenticated sessions when a user’s password is changed.<br /> <br /> <br /> This means that if an attacker already possesses a valid session—for example, from prior access or a stolen session token—the victim changing their password does not terminate that attacker’s access. The session remains usable until it expires naturally. The upstream commit describes this directly as:<br /> <br /> <br /> “session keeps working until it expires.”<br /> <br /> The fix detects password changes and explicitly invokes _invalidate_user_sessions(user.id) after the database update. This is applied in both edit_user_core() and admin_edit_user_core().<br /> <br /> Version impacted &gt;=3.3.0
Severity CVSS v4.0: CRITICAL
Last modification:
27/08/2026

CVE-2026-81827

Publication date:
27/08/2026
Affected versions of Flowintel incorrectly attempted to validate login email addresses by calling Email(email). That does not perform WTForms field validation; it merely constructs a validator object.<br /> <br /> <br /> Consequently, malformed attacker-controlled email input could continue through the login process and be written to security-relevant logs. The vulnerable code inserted the supplied email into both a warning log and the custom audit logger. Since CR/LF characters were not escaped, an unauthenticated attacker could potentially inject additional physical log lines or forge misleading log entries.<br /> <br /> The patch corrects the validation call to Email()(form, form.email), changes the standard logging call to parameterized logging, and introduces _sanitize_log_fragment() so carriage returns and line feeds are encoded instead of creating new records.<br /> <br /> Version impacted &gt;=3.3.0
Severity CVSS v4.0: MEDIUM
Last modification:
27/08/2026