Instituto Nacional de ciberseguridad. Sección Incibe
Instituto Nacional de Ciberseguridad. Sección INCIBE-CERT

Vulnerabilidades

Con el objetivo de informar, advertir y ayudar a los profesionales sobre las últimas vulnerabilidades de seguridad en sistemas tecnológicos, ponemos a disposición de los usuarios interesados en esta información una base de datos con información en castellano sobre cada una de las últimas vulnerabilidades documentadas y conocidas.

Este repositorio con más de 75.000 registros esta basado en la información de NVD (National Vulnerability Database) – en función de un acuerdo de colaboración – por el cual desde INCIBE realizamos la traducción al castellano de la información incluida. En ocasiones este listado mostrará vulnerabilidades que aún no han sido traducidas debido a que se recogen en el transcurso del tiempo en el que el equipo de INCIBE realiza el proceso de traducción.

Se emplea el estándar de nomenclatura de vulnerabilidades CVE (Common Vulnerabilities and Exposures), con el fin de facilitar el intercambio de información entre diferentes bases de datos y herramientas. Cada una de las vulnerabilidades recogidas enlaza a diversas fuentes de información así como a parches disponibles o soluciones aportadas por los fabricantes y desarrolladores. Es posible realizar búsquedas avanzadas teniendo la opción de seleccionar diferentes criterios como el tipo de vulnerabilidad, fabricante, tipo de impacto entre otros, con el fin de acortar los resultados.

Mediante suscripción RSS o Boletines podemos estar informados diariamente de las últimas vulnerabilidades incorporadas al repositorio.

CVE-2026-48708

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** OliveTin gives access to predefined shell commands from a web interface. In versions 3000.0.0 and prior, the template engine uses a single shared text/template.Template instance (tpl package-level variable in service/internal/tpl/templates.go) across all goroutines. Every action execution calls tpl.Parse(source) followed by t.Execute() on this shared instance with no synchronization. When two or more actions execute concurrently (which is the normal case — each ExecRequest spawns a goroutine), a race condition occurs: one goroutine's Parse overwrites the template tree while another goroutine is calling Execute, causing cross-user command contamination, Go runtime panic, and incorrect command execution. This issue has been resolved in version 3000.13.0.
Gravedad CVSS v3.1: ALTA
Última modificación:
24/06/2026

CVE-2026-48709

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** OliveTin gives access to predefined shell commands from a web interface. In versions 3000.0.0 and prior, The ValidateArgumentType RPC endpoint in service/internal/api/api.go does not perform any authentication or authorization checks. Unlike all other data-returning API endpoints, it does not call auth.UserFromApiCall or checkDashboardAccess. When AuthRequireGuestsToLogin is enabled (the security-conscious configuration), this endpoint remains accessible to unauthenticated users and can be used as an oracle to enumerate valid action binding IDs and their argument configurations. This issue has been fixed in version 3000.13.0.
Gravedad CVSS v3.1: BAJA
Última modificación:
24/06/2026

CVE-2026-48518

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** MultiJuicer is used to run separate Juice Shop instances on a central kubernetes cluster without the need for local instances. In versions 8.0.0 through 10.0.0, the team join endpoint (POST /multi-juicer/api/teams/{team}/join) accepted requests with any Content-Type, including text/plain. Because that content type does not trigger a CORS preflight, an attacker could host a cross-site HTML form that auto-submits to the endpoint and forces a victim&amp;#39;s browser to log in as the attacker&amp;#39;s team. A successful, undetected attacker can cause victims to unwittingly solve Juice Shop challenges under the attacker&amp;#39;s team identity. In a CTF context this lets the attacker inflate their team&amp;#39;s score using other players&amp;#39; activity, and any sensitive data the victim enters into "their" Juice Shop ends up in the attacker&amp;#39;s instance. The vulnerability is exploitable without any prior authentication; the victim<br /> only needs to visit a page the attacker controls while having network access to the MultiJuicer deployment. SameSite=Strict on the session cookie does not mitigate this, because the attack plants a new cookie rather than relying on an existing one. This issue was fixed in version 10.0.1.
Gravedad CVSS v3.1: MEDIA
Última modificación:
16/06/2026

CVE-2026-48124

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** Cursor is a code editor built for programming with AI. In versions prior to 3.0.0, the Cursor Desktop could execute workspace-defined Claude hook commands from .claude/settings.local.json without dedicated user approval. A malicious workspace or agent-created file could configure hooks that run local commands in the user&amp;#39;s context when an agent turn ends. This could allow sandbox escape, persistence across turns, local data access, or follow-on compromise. This issue has been fixed in version 3.0.0.
Gravedad CVSS v4.0: ALTA
Última modificación:
16/06/2026

CVE-2026-47825

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** Spring Cloud Gateway Server forwards the X-Forwarded-For and Forwarded headers from untrusted proxies in certain configuration scenarios. This affects both the WebMVC and WebFlux Gateway Servers.<br /> <br /> Affected versions:<br /> Spring Cloud Gateway 3.1.x (fix 3.1.13).<br /> Spring Cloud Gateway 4.1.x (fix 4.1.13).<br /> Spring Cloud Gateway 4.2.x (fix 4.2.9).<br /> Spring Cloud Gateway 4.3.x (fix 4.3.5).<br /> Spring Cloud Gateway 5.0.x (fix 5.0.2).
Gravedad CVSS v3.1: ALTA
Última modificación:
23/06/2026

CVE-2026-47261

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** Wasmtime is a runtime for WebAssembly. In versions prior to 24.0.9, 36.0.10, and 44.0.2, when a filesystem preopen is given DirPerms::all() and FilePerms::READ without FilePerms::WRITE, this access control mechanism can be bypassed via the wasip2 descriptor.open-at or wasip1 path_open interfaces by opening a file with only the OpenFlags::TRUNCATE oflag. The root cause is that the clause handling OpenFlags::TRUNCATE in crates/wasi/src/filesystem.rs (Dir::open_at, lines 967–969) did not set open_mode |= OpenMode::WRITE;, which is later used for the access control check against FilePerms to determine whether opening the file is permitted; the single-line fix adds that missing assignment, after which the affected calls correctly fail with error-code.not-permitted and ERRNO_PERM respectively. Only wasmtime-wasi embeddings that combine DirPerms::MUTATE with FilePerms::READ are affected by this bug. In particular, the Wasmtime project&amp;#39;s wasmtime-cli&amp;#39;s use of wasmtime-wasi is not affected, because it always sets FilePerms::all() for all preopens. This issue has been fixed in versions 24.0.9, 36.0.10 and44.0.2.
Gravedad CVSS v3.1: ALTA
Última modificación:
16/06/2026

CVE-2026-45437

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** Unauthenticated Cross Site Scripting (XSS) in Product Filter Widget for Elementor
Gravedad CVSS v3.1: ALTA
Última modificación:
15/06/2026

CVE-2026-45439

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** Unauthenticated SQL Injection in Realtyna Organic IDX plugin
Gravedad CVSS v3.1: CRÍTICA
Última modificación:
15/06/2026

CVE-2026-45441

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** Unauthenticated Other Vulnerability Type in WpEvently
Gravedad CVSS v3.1: ALTA
Última modificación:
15/06/2026

CVE-2026-42743

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** Unauthenticated Broken Authentication in Masteriyo - LMS
Gravedad CVSS v3.1: MEDIA
Última modificación:
15/06/2026

CVE-2026-42752

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** Unauthenticated Bypass Vulnerability in Stripe Payments
Gravedad CVSS v3.1: MEDIA
Última modificación:
15/06/2026

CVE-2026-42775

Fecha de publicación:
15/06/2026
Idioma:
Inglés
*** Pendiente de traducción *** Unauthenticated Cross Site Scripting (XSS) in AutomatorWP
Gravedad CVSS v3.1: ALTA
Última modificación:
15/06/2026