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

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> The Websocket server can accept various commands coming from localhost. One of them, `connectionInfo` is meant to provide the necessary details to connect to a camera. The handler associated with this command that we call`handle_connection_info` contains multiple instances of string copy that can overflow. The function `handle_connect_info` copies attacker-controlled JSON strings into fixed-size buffers using manual byte-by-byte loops that do not enforce length limits.<br /> <br /> <br /> <br /> <br /> <br /> #### Buffer Overflow in username field (no key present)
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-57266

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> The Websocket server can accept various commands coming from localhost. Many of the commands will take an `index` value that is then used to access various arrays to enter critical sections, perform various actions via function calls, etc. However the `index` value is usually not checked for valid range, and as such it can be used to access multiple arrays out-of-bound.<br /> <br /> <br /> <br /> #### 2wayAudio command index-out-of-bound
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-57267

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> The Websocket server can accept various commands coming from localhost. Many of the commands will take an `index` value that is then used to access various arrays to enter critical sections, perform various actions via function calls, etc. However the `index` value is usually not checked for valid range, and as such it can be used to access multiple arrays out-of-bound.<br /> <br /> <br /> <br /> #### snapshot command index-out-of-bound
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-57268

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> The Websocket server can accept various commands coming from localhost. Many of the commands will take an `index` value that is then used to access various arrays to enter critical sections, perform various actions via function calls, etc. However the `index` value is usually not checked for valid range, and as such it can be used to access multiple arrays out-of-bound.<br /> <br /> <br /> ### saveVideo command index-out-of-bound<br /> <br /> When sending the `saveVideo` command, the `index` field is extracted from the websocket message [1]. Then without checking the range of the index, it is used to trigger a CriticalSection ([2]) and releases it [3]. The release function call ([3]) is executed using a function pointer which will be read out of bounds potentially leading to code execution:<br /> <br /> <br /> <br /> <br /> <br /> v6 = get_entry(a2, "index");<br /> <br /> result = json_is_value_int(v6);<br /> <br /> if ( (_BYTE)result )<br /> <br /> {<br /> <br /> v8 = get_entry(a2, "index");<br /> <br /> index = json_value_to_int(&amp;v8-&gt;value); // [1]<br /> <br /> result = CCriticalSection::EnterCritSection(&amp;this-&gt;crit_sections[index]); //[2]<br /> <br /> if ( result )<br /> <br /> {<br /> <br /> if ( this-&gt;array_of_IPCams[index] )<br /> <br /> {<br /> <br /> if ( this-&gt;array_of_IPCams[index]-&gt;field_20 )<br /> <br /> do_PostMessageA((CViewer *)this-&gt;array_of_IPCams[index], 0x111u, 0x139Fu, v11);<br /> <br /> }<br /> <br /> return (*(int (__thiscall **)(CCriticalSection *))(this-&gt;crit_sections[index].vtbl + 20))(&amp;this-&gt;crit_sections[index]); //[3]<br /> <br /> }<br /> <br /> }
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-57269

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> The Websocket server can accept various commands coming from localhost. Many of the commands will take an `index` value that is then used to access various arrays to enter critical sections, perform various actions via function calls, etc. However the `index` value is usually not checked for valid range, and as such it can be used to access multiple arrays out-of-bound.<br /> <br /> <br /> <br /> #### disconnect command index-out-of-bound
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-13131

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> The Websocket server can accept various commands coming from localhost. Many of the commands will take an `index` value that is then used to access various arrays to enter critical sections, perform various actions via function calls, etc. However the `index` value is usually not checked for valid range, and as such it can be used to access multiple arrays out-of-bound.<br /> <br /> <br /> #### connectInfo command index-out-of-bound
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-13132

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> The Websocket server can accept various commands coming from localhost. Many of the commands will take an `index` value that is then used to access various arrays to enter critical sections, perform various actions via function calls, etc. However the `index` value is usually not checked for valid range, and as such it can be used to access multiple arrays out-of-bound.<br /> <br /> <br /> <br /> #### setStream command index-out-of-bound
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-57264

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> The Websocket server can accept various commands coming from localhost. Many of the commands will take an `index` value that is then used to access various arrays to enter critical sections, perform various actions via function calls, etc. However the `index` value is usually not checked for valid range, and as such it can be used to access multiple arrays out-of-bound.<br /> <br /> <br /> <br /> #### setPIP command index-out-of-bound
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-57265

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> The Websocket server can accept various commands coming from localhost. Many of the commands will take an `index` value that is then used to access various arrays to enter critical sections, perform various actions via function calls, etc. However the `index` value is usually not checked for valid range, and as such it can be used to access multiple arrays out-of-bound.<br /> <br /> <br /> #### audio command index-out-of-bound
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-13125

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** GeoWebPlayer (also called "Web Plugin" in the GV-VMS documentation and "WS Player" for VMS-Cloud) is an addon that can be installed with various GeoVision software (GV-VMS, GV-Cloud, ...). It creates a websocket server that expands the capabilities of the various web-interfaces provided by the GeoVision software and may be necessary for them to function properly.<br /> <br /> In order to access the websocket server, no authentication is required. As such, any malicious website can attempt to open a connection to the server and potentially access sensitive APIs. In particular, it&amp;#39;s possible to call a combination of the `create` method and `getScreenCapture` to retrieve the content of the user&amp;#39;s screen.
Gravedad CVSS v3.1: ALTA
Última modificación:
02/07/2026

CVE-2026-55794

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** Craft CMS is a content management system (CMS). In versions 5.9.0 and above prior to 5.10.0, control panel users with the ability to edit entries can execute unsandboxed Twig code via the HTTP Referrer header, potentially leading to authenticated RCE. The issue happens when a user is saving entries. Strings for a signed redirect URL are being compiled as a Twig template via renderObjectTemplate(), and while a sandboxed alternative already exists (renderSandboxedObjectTemplate()), it is not used in this case. This signed URL can be specified by users, as it is reflected in the “Referer” HTTP request header, which is under attacker control. This issue has been fixed in version 5.10.0.
Gravedad CVSS v4.0: ALTA
Última modificación:
02/07/2026

CVE-2026-50280

Fecha de publicación:
02/07/2026
Idioma:
Inglés
*** Pendiente de traducción *** Craft CMS is a content management system (CMS). In versions 5.0.0-RC1 and above prior to 5.9.21, the EntriesController::actionMoveToSection() endpoint gates the destination section only by viewEntries:$section-&gt;uid rather than requiring saveEntries permission (the source entry is separately checked via Entry::canMove()). As a result, a low-privileged authenticated control-panel user who can move an entry out of its current section can call moveEntryToSection() to rewrite the entry&amp;#39;s sectionId and save it into a section where they have read access but no write access. This breaks the section-level authorization model, letting a user with limited permissions inject content into a protected section and interfere with editorial boundaries, approval workflows, and section-specific business logic. This issue has been fixed in version 5.9.21.
Gravedad CVSS v4.0: MEDIA
Última modificación:
02/07/2026