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

Publication date:
15/06/2026
Unauthenticated Cross Site Scripting (XSS) in MW WP Form
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-48872

Publication date:
15/06/2026
Unauthenticated Sensitive Data Exposure in EmbedPress
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-48873

Publication date:
15/06/2026
Unauthenticated Broken Access Control in Montonio for WooCommerce
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-48874

Publication date:
15/06/2026
Subscriber SQL Injection in GamiPress
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-48708

Publication date:
15/06/2026
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.
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-48709

Publication date:
15/06/2026
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.
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-48835

Publication date:
15/06/2026
Unauthenticated Broken Access Control in Contact Form by WPForms
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-48836

Publication date:
15/06/2026
Unauthenticated Remote Code Execution (RCE) in Easy Invoice
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-48518

Publication date:
15/06/2026
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.
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-47825

Publication date:
15/06/2026
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).
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026

CVE-2026-48124

Publication date:
15/06/2026
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.
Severity CVSS v4.0: HIGH
Last modification:
15/06/2026

CVE-2026-47261

Publication date:
15/06/2026
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.
Severity CVSS v4.0: Pending analysis
Last modification:
15/06/2026