CVE-2026-57268: GeoVision GeoWebPlayer Websocket Server out-of-bounds read vulnerability
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.
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.
saveVideo command index-out-of-bound
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:
v6 = getentry(a2, "index");
result = jsonisvalueint(v6);
if ( (BYTE)result )
{
v8 = getentry(a2, "index");
index = jsonvaluetoint(&v8->value); // [1]
result = CCriticalSection::EnterCritSection(&this->critsections[index]); //[2]
if ( result )
{
if ( this->arrayofIPCams[index] )
{
if ( this->arrayofIPCams[index]->field20 )
doPostMessageA((CViewer )this->arrayofIPCams[index], 0x111u, 0x139Fu, v11);
}
return ((int (thiscall )(CCriticalSection ))(this->critsections[index].vtbl + 20))(&this->critsections[index]); //[3]
}
}
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
GeoVision GeoWebPlayer Websocket Serverto a version that resolves this vulnerability.Fixed in V1.1.3.0
Event History
Frequently Asked Questions
What is the severity of CVE-2026-57268?
CVE-2026-57268 has a high severity rating of 8.3.
What does the out-of-bounds read vulnerability in CVE-2026-57268 involve?
CVE-2026-57268 involves an out-of-bounds read in the GeoWebPlayer Websocket Server.
How can I mitigate the risks associated with CVE-2026-57268?
To mitigate CVE-2026-57268, it is recommended to update the GeoWebPlayer to the latest version that addresses this vulnerability.
Who is affected by CVE-2026-57268?
CVE-2026-57268 affects users of the GeoWebPlayer Websocket Server integrated with GeoVision software.
What impact does CVE-2026-57268 have on systems?
CVE-2026-57268 can potentially allow an attacker to exploit out-of-bounds reads, leading to information disclosure or system instability.