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

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** In Quick.CMS, the administrative user interface restricts deletion of the primary language by omitting the corresponding option from the interface; however, the underlying language-deletion API endpoint does not enforce an equivalent server-side authorization check. As a result, an authenticated administrator can bypass the UI-level restriction and delete the primary language by sending a direct HTTP request to the API endpoint. Successful deletion of the primary language results in a Denial of Service (DoS) of application.<br /> <br /> <br /> Critically, when combined with a separate Cross-Site Request Forgery (CSRF) vulnerability (CVE-2026-1468) an unauthenticated remote attacker can craft a malicious link, which if visited by an authenticated administrator, will trigger the DoS condition without direct access to the application<br /> <br /> <br /> <br /> <br /> The vendor assessed the likelihood of exploitation as very low and determined that a fix is not necessary.
Gravedad CVSS v4.0: ALTA
Última modificación:
28/07/2026

CVE-2026-63302

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** Quick.CMS is vulnerable to Local File Inclusion (LFI) in the admin.php endpoint via the p parameter. An authenticated attacker with admin privileges can include arbitrary files located within the application&amp;#39;s directory structure via a crafted HTTP request. Successful exploitation allows disclosure of the server&amp;#39;s directory structure and absolute file paths (path disclosure).<br /> <br /> <br /> <br /> The vendor assessed the likelihood of exploitation as very low and determined that a fix is not necessary.
Gravedad CVSS v4.0: MEDIA
Última modificación:
28/07/2026

CVE-2026-17072

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** A flaw was found in GStreamer&amp;#39;s gst-plugins-good. A heap-based out-of-bounds read of 4 bytes can occur when parsing FLAC audio stream headers embedded in a Matroska or WebM container file. The vulnerability is triggered by a boundary check that does not account for the full size of the data being copied, allowing a small read past the end of the allocated buffer. An attacker could exploit this by crafting a malicious Matroska or WebM file and tricking a user into opening it, potentially leaking a small amount of adjacent heap memory.
Gravedad CVSS v3.1: BAJA
Última modificación:
28/07/2026

CVE-2026-59248

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** Allocation of resources without limits vulnerability in ninenines cowlib allows an unauthenticated remote HTTP/2 or HTTP/3 peer to exhaust memory on the vulnerable server (or client) and cause a denial of service.<br /> <br /> The HPACK and QPACK prefixed-integer decoder cow_hpack_common:dec_big_int/3 in src/cow_hpack_common.hrl (invoked from cow_hpack:decode/2 in src/cow_hpack.erl and from cow_qpack:decode_field_section/3 in src/cow_qpack.erl) reads continuation octets until it sees one whose high bit is clear, evaluating Int + (Value bsl M) at each step with the shift M growing by seven per octet. No limit is enforced on the number of continuation octets, on the resulting bit width, or on the value; the decoder consumes whatever encoded length the peer supplies.<br /> <br /> Because Erlang integers are immutable, each intermediate Value bsl M and each accumulator update allocates a fresh bignum whose digit width grows linearly with the number of octets processed so far. Summed across the whole decode, the transient bignum digit materialization is on the order of the square of the encoded length. A single maximal HPACK indexed representation carried inside one HTTP/2 HEADERS plus one CONTINUATION frame at Cowboy&amp;#39;s default max_frame_size_received can force hundreds of megabytes of transient allocation and garbage-collection churn before the resulting header-table index is rejected as invalid. Repeated or concurrent connections multiply the pressure and can drive the Erlang VM to memory exhaustion.<br /> <br /> Cowlib is the HTTP parser used by Cowboy, RabbitMQ&amp;#39;s management plugin, and other Erlang and Elixir HTTP/2 and HTTP/3 servers and clients, so any exposed endpoint that accepts HPACK or QPACK from an untrusted peer is reachable.<br /> <br /> This issue affects cowlib: from 2.0.0 before 2.19.0.
Gravedad CVSS v4.0: ALTA
Última modificación:
28/07/2026

CVE-2026-65624

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** Allocation of Resources Without Limits or Throttling vulnerability in ninenines cowboy allows an unauthenticated remote attacker to exhaust connection process memory over HTTP/1.1.<br /> <br /> The HTTP/1.1 handler in cowboy_http enforces the max_headers limit by counting the number of distinct header names in a map (maps:size(Headers)). When a request contains multiple header lines with the same name, the values are concatenated into a single ever-growing binary stored under that one map key (", " for regular headers, "; " for cookies), so the map size stays at one and the max_headers cap (default 100) is never reached. Because no accumulator bounds the total number of header lines or the total byte size of the header block (only per-line max_header_name_length and max_header_value_length apply), an unauthenticated client can send an arbitrary number of header lines with the same name and grow the connection process&amp;#39;s binary memory to arbitrary size within the request window.<br /> <br /> The impact per connection is bounded by request_timeout (default 5 seconds, not reset by header data), and by max_heap_size when set (the offending connection process is killed once its heap grows past the limit). When max_heap_size is left at the default (unset), sustained abuse can drive the Erlang VM into out-of-memory conditions.<br /> <br /> This issue affects cowboy from 2.0.0-pre.4 before 2.18.0.
Gravedad CVSS v4.0: MEDIA
Última modificación:
28/07/2026

CVE-2026-58246

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** SAP NetWeaver Application Server for ABAP and ABAP Platform writes sensitive session identifier information into a diagnostic trace when the trace is activated by a privileged user. An attacker with access to the resulting trace data could obtain identifiers that allow impersonation of legitimate users during their validity period. This leads to high impact on confidentiality. Integrity and availability are not impacted.
Gravedad CVSS v3.1: MEDIA
Última modificación:
28/07/2026

CVE-2026-16462

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** In PROCON-WEB SCADA the endpoint &amp;#39;GetGridData&amp;#39; is not properly sanitized. This allows a remote unauthenticated attacker to execute arbitrary SQL commands.
Gravedad CVSS v4.0: CRÍTICA
Última modificación:
28/07/2026

CVE-2026-14328

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Eazy Plugin Manager – Powerful Plugin Management Solution for WordPress plugin for WordPress is vulnerable to Privilege Escalation in all versions up to, and including, 4.4.1. This is due to insufficient authorization on the `wp_ajax_pos_get_option` AJAX handler, which verifies only a nonce that is localized to every logged-in admin-area user via `admin_enqueue_scripts` — without any capability check — before returning the value of any arbitrary WordPress option via `get_option()`, combined with the `admin_login_endpoint_handler` REST endpoint (`GET /wp-json/epm/v1/admin/login`) being registered as publicly accessible and authenticating callers solely by a whirlpool hash of values stored in those same options. This makes it possible for authenticated attackers, with Subscriber-level access and above, to read the `site_url`, `connection_key`, and `remote_user_id` values stored in the `eazywp_connecting_info` and `eazywp_connection` options, compute the required `auth_key`, call the `admin/login` REST endpoint to obtain Administrator authentication cookies, and fully take over the site. Exploitation requires the plugin&amp;#39;s remote connection feature to have been configured, as the `eazywp_connecting_info` and `eazywp_connection` options must be populated with valid credentials.
Gravedad CVSS v3.1: ALTA
Última modificación:
28/07/2026

CVE-2026-14785

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Web Directory Free plugin for WordPress is vulnerable to generic SQL Injection via the &amp;#39;levels&amp;#39; parameter in all versions up to, and including, 1.7.13 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.
Gravedad CVSS v3.1: ALTA
Última modificación:
28/07/2026

CVE-2026-11841

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** An attacker may perform unauthenticated read and write operations on sensitive filesystem areas via the AppEngine Fileaccess over HTTP due to improper access restrictions. A critical filesystem directory was unintentionally exposed through the HTTP-based file access feature, allowing access without authentication. This includes device parameter files, enabling an attacker to read and modify application settings, including customer-defined passwords. Additionally, exposure of the custom application directory may allow execution of arbitrary Lua code within the sandboxed AppEngine environment.
Gravedad CVSS v3.1: CRÍTICA
Última modificación:
28/07/2026

CVE-2026-11598

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** The Shortcodify plugin for WordPress is vulnerable to Stored Cross-Site Scripting via &amp;#39;name&amp;#39; Shortcode Attribute in all versions up to, and including, 1.4.3 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.
Gravedad CVSS v3.1: MEDIA
Última modificación:
28/07/2026

CVE-2026-10207

Fecha de publicación:
28/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** The PickPlugins Question Answer plugin for WordPress is vulnerable to SQL Injection in versions up to and including 1.2.73. This is due to insufficient sanitization of user-supplied input via the &amp;#39;id&amp;#39; GET parameter in the user profile template combined with the use of wp_unslash() which removes WordPress&amp;#39;s magic quotes protection, followed by direct concatenation into a SQL query without proper escaping or prepared statements in the qa_user_profile_card() function. This makes it possible for unauthenticated attackers to append additional SQL queries into existing queries, which can be used to extract sensitive information from the database.
Gravedad CVSS v3.1: ALTA
Última modificación:
28/07/2026