CVE-2026-57268 (GCVE-0-2026-57268)
Vulnerability from cvelistv5
Published
2026-07-02 02:20
Modified
2026-07-02 12:35
Severity ?
VLAI Severity ?
EPSS score ?
CWE
- CWE-129 - Improper validation of array index
Summary
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 = get_entry(a2, "index");
result = json_is_value_int(v6);
if ( (_BYTE)result )
{
v8 = get_entry(a2, "index");
index = json_value_to_int(&v8->value); // [1]
result = CCriticalSection::EnterCritSection(&this->crit_sections[index]); //[2]
if ( result )
{
if ( this->array_of_IPCams[index] )
{
if ( this->array_of_IPCams[index]->field_20 )
do_PostMessageA((CViewer *)this->array_of_IPCams[index], 0x111u, 0x139Fu, v11);
}
return (*(int (__thiscall **)(CCriticalSection *))(this->crit_sections[index].vtbl + 20))(&this->crit_sections[index]); //[3]
}
}
References
| URL | Tags | |||||||
|---|---|---|---|---|---|---|---|---|
|
||||||||
Impacted products
| Vendor | Product | Version | ||
|---|---|---|---|---|
| GeoVision Inc. | GeoWebPlayer |
Version: V1.1.1.0 |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-57268",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "total"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-07-02T12:35:11.850544Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-07-02T12:35:19.946Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"packageName": "GeoWebPlayer",
"platforms": [
"Windows",
"64 bit"
],
"product": "GeoWebPlayer",
"vendor": "GeoVision Inc.",
"versions": [
{
"status": "affected",
"version": "V1.1.1.0"
},
{
"status": "unaffected",
"version": "V1.1.3.0"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:a:geovision_inc.:geowebplayer:v1.1.1.0:*:windows:*:*:*:*:*",
"vulnerable": true
},
{
"criteria": "cpe:2.3:a:geovision_inc.:geowebplayer:v1.1.1.0:*:64_bit:*:*:*:*:*",
"vulnerable": true
},
{
"criteria": "cpe:2.3:a:geovision_inc.:geowebplayer:v1.1.3.0:*:windows:*:*:*:*:*",
"vulnerable": false
},
{
"criteria": "cpe:2.3:a:geovision_inc.:geowebplayer:v1.1.3.0:*:64_bit:*:*:*:*:*",
"vulnerable": false
}
],
"negate": false,
"operator": "OR"
}
],
"operator": "OR"
}
],
"credits": [
{
"lang": "en",
"type": "finder",
"value": "Philippe Laulheret of Cisco Talos"
},
{
"lang": "en",
"type": "remediation reviewer",
"value": "Kelly Patterson of Cisco Talos"
},
{
"lang": "en",
"type": "coordinator",
"value": "Robert Sherwin of Cisco Talos"
}
],
"datePublic": "2026-06-24T00:39:00.000Z",
"descriptions": [
{
"lang": "en",
"supportingMedia": [
{
"base64": false,
"type": "text/html",
"value": "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.\u003cbr\u003e\u003cbr\u003eThe 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.\u003cdiv\u003e\u003cbr\u003e\u003c/div\u003e\u003cdiv\u003e\u003cdiv\u003e### saveVideo command index-out-of-bound\u003cbr\u003e\u003cbr\u003eWhen 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:\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cbr\u003e v6 = get_entry(a2, \"index\");\n\u003cbr\u003e result = json_is_value_int(v6);\n\u003cbr\u003e if ( (_BYTE)result )\n\u003cbr\u003e {\n\u003cbr\u003e v8 = get_entry(a2, \"index\");\n\u003cbr\u003e index = json_value_to_int(\u0026amp;v8-\u0026gt;value); // [1]\n\u003cbr\u003e result = CCriticalSection::EnterCritSection(\u0026amp;this-\u0026gt;crit_sections[index]); //[2]\n\u003cbr\u003e if ( result )\n\u003cbr\u003e {\n\u003cbr\u003e if ( this-\u0026gt;array_of_IPCams[index] )\n\u003cbr\u003e {\n\u003cbr\u003e if ( this-\u0026gt;array_of_IPCams[index]-\u0026gt;field_20 )\n\u003cbr\u003e do_PostMessageA((CViewer *)this-\u0026gt;array_of_IPCams[index], 0x111u, 0x139Fu, v11);\n\u003cbr\u003e }\n\u003cbr\u003e return (*(int (__thiscall **)(CCriticalSection *))(this-\u0026gt;crit_sections[index].vtbl + 20))(\u0026amp;this-\u0026gt;crit_sections[index]); //[3]\n\u003cbr\u003e }\n\u003cbr\u003e }\u003c/div\u003e\u003c/div\u003e"
}
],
"value": "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.\n\nThe 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.\n\n\n### saveVideo command index-out-of-bound\n\nWhen 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:\n\n\n\n\n\n v6 = get_entry(a2, \"index\");\n\n result = json_is_value_int(v6);\n\n if ( (_BYTE)result )\n\n {\n\n v8 = get_entry(a2, \"index\");\n\n index = json_value_to_int(\u0026v8-\u003evalue); // [1]\n\n result = CCriticalSection::EnterCritSection(\u0026this-\u003ecrit_sections[index]); //[2]\n\n if ( result )\n\n {\n\n if ( this-\u003earray_of_IPCams[index] )\n\n {\n\n if ( this-\u003earray_of_IPCams[index]-\u003efield_20 )\n\n do_PostMessageA((CViewer *)this-\u003earray_of_IPCams[index], 0x111u, 0x139Fu, v11);\n\n }\n\n return (*(int (__thiscall **)(CCriticalSection *))(this-\u003ecrit_sections[index].vtbl + 20))(\u0026this-\u003ecrit_sections[index]); //[3]\n\n }\n\n }"
}
],
"impacts": [
{
"capecId": "CAPEC-540",
"descriptions": [
{
"lang": "en",
"value": "CAPEC-540 Overread Buffers"
}
]
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"format": "CVSS",
"scenarios": [
{
"lang": "en",
"value": "GENERAL"
}
]
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-129",
"description": "CWE-129 Improper validation of array index",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-07-02T02:20:11.291Z",
"orgId": "0df08a0e-a200-4957-9bb0-084f562506f9",
"shortName": "GV"
},
"references": [
{
"tags": [
"vendor-advisory"
],
"url": "https://www.geovision.com.tw/cyber_security.php"
},
{
"tags": [
"third-party-advisory"
],
"url": "https://talosintelligence.com/vulnerability_reports/TALOS-2026-2373"
}
],
"solutions": [
{
"lang": "en",
"supportingMedia": [
{
"base64": false,
"type": "text/html",
"value": "The vulnerability has been patched with GeoWebPlayer V1.1.3.0\u0026nbsp;"
}
],
"value": "The vulnerability has been patched with GeoWebPlayer V1.1.3.0"
}
],
"source": {
"discovery": "EXTERNAL"
},
"title": "GeoVision GeoWebPlayer Websocket Server out-of-bounds read vulnerability",
"x_generator": {
"engine": "Vulnogram 1.0.2"
}
}
},
"cveMetadata": {
"assignerOrgId": "0df08a0e-a200-4957-9bb0-084f562506f9",
"assignerShortName": "GV",
"cveId": "CVE-2026-57268",
"datePublished": "2026-07-02T02:20:11.291Z",
"dateReserved": "2026-06-24T05:48:03.740Z",
"dateUpdated": "2026-07-02T12:35:19.946Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"vulnrichment": {
"containers": "{\"cna\": {\"providerMetadata\": {\"orgId\": \"0df08a0e-a200-4957-9bb0-084f562506f9\", \"shortName\": \"GV\", \"dateUpdated\": \"2026-07-02T02:20:11.291Z\"}, \"title\": \"GeoVision GeoWebPlayer Websocket Server out-of-bounds read vulnerability\", \"datePublic\": \"2026-06-24T00:39:00.000Z\", \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"cweId\": \"CWE-129\", \"description\": \"CWE-129 Improper validation of array index\", \"type\": \"CWE\"}]}], \"impacts\": [{\"capecId\": \"CAPEC-540\", \"descriptions\": [{\"lang\": \"en\", \"value\": \"CAPEC-540 Overread Buffers\"}]}], \"affected\": [{\"vendor\": \"GeoVision Inc.\", \"product\": \"GeoWebPlayer\", \"platforms\": [\"Windows\", \"64 bit\"], \"packageName\": \"GeoWebPlayer\", \"versions\": [{\"status\": \"affected\", \"version\": \"V1.1.1.0\"}, {\"status\": \"unaffected\", \"version\": \"V1.1.3.0\"}], \"defaultStatus\": \"unaffected\"}], \"cpeApplicability\": [{\"operator\": \"OR\", \"nodes\": [{\"operator\": \"OR\", \"negate\": false, \"cpeMatch\": [{\"vulnerable\": true, \"criteria\": \"cpe:2.3:a:geovision_inc.:geowebplayer:v1.1.1.0:*:windows:*:*:*:*:*\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:a:geovision_inc.:geowebplayer:v1.1.1.0:*:64_bit:*:*:*:*:*\"}, {\"vulnerable\": false, \"criteria\": \"cpe:2.3:a:geovision_inc.:geowebplayer:v1.1.3.0:*:windows:*:*:*:*:*\"}, {\"vulnerable\": false, \"criteria\": \"cpe:2.3:a:geovision_inc.:geowebplayer:v1.1.3.0:*:64_bit:*:*:*:*:*\"}]}]}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"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.\\n\\nThe 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.\\n\\n\\n### saveVideo command index-out-of-bound\\n\\nWhen 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:\\n\\n\\n\\n\\n\\n v6 = get_entry(a2, \\\"index\\\");\\n\\n result = json_is_value_int(v6);\\n\\n if ( (_BYTE)result )\\n\\n {\\n\\n v8 = get_entry(a2, \\\"index\\\");\\n\\n index = json_value_to_int(\u0026v8-\u003evalue); // [1]\\n\\n result = CCriticalSection::EnterCritSection(\u0026this-\u003ecrit_sections[index]); //[2]\\n\\n if ( result )\\n\\n {\\n\\n if ( this-\u003earray_of_IPCams[index] )\\n\\n {\\n\\n if ( this-\u003earray_of_IPCams[index]-\u003efield_20 )\\n\\n do_PostMessageA((CViewer *)this-\u003earray_of_IPCams[index], 0x111u, 0x139Fu, v11);\\n\\n }\\n\\n return (*(int (__thiscall **)(CCriticalSection *))(this-\u003ecrit_sections[index].vtbl + 20))(\u0026this-\u003ecrit_sections[index]); //[3]\\n\\n }\\n\\n }\", \"supportingMedia\": [{\"type\": \"text/html\", \"base64\": false, \"value\": \"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.\u003cbr\u003e\u003cbr\u003eThe 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.\u003cdiv\u003e\u003cbr\u003e\u003c/div\u003e\u003cdiv\u003e\u003cdiv\u003e### saveVideo command index-out-of-bound\u003cbr\u003e\u003cbr\u003eWhen 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:\\n\u003cbr\u003e\\n\u003cbr\u003e\\n\u003cbr\u003e v6 = get_entry(a2, \\\"index\\\");\\n\u003cbr\u003e result = json_is_value_int(v6);\\n\u003cbr\u003e if ( (_BYTE)result )\\n\u003cbr\u003e {\\n\u003cbr\u003e v8 = get_entry(a2, \\\"index\\\");\\n\u003cbr\u003e index = json_value_to_int(\u0026amp;v8-\u0026gt;value); // [1]\\n\u003cbr\u003e result = CCriticalSection::EnterCritSection(\u0026amp;this-\u0026gt;crit_sections[index]); //[2]\\n\u003cbr\u003e if ( result )\\n\u003cbr\u003e {\\n\u003cbr\u003e if ( this-\u0026gt;array_of_IPCams[index] )\\n\u003cbr\u003e {\\n\u003cbr\u003e if ( this-\u0026gt;array_of_IPCams[index]-\u0026gt;field_20 )\\n\u003cbr\u003e do_PostMessageA((CViewer *)this-\u0026gt;array_of_IPCams[index], 0x111u, 0x139Fu, v11);\\n\u003cbr\u003e }\\n\u003cbr\u003e return (*(int (__thiscall **)(CCriticalSection *))(this-\u0026gt;crit_sections[index].vtbl + 20))(\u0026amp;this-\u0026gt;crit_sections[index]); //[3]\\n\u003cbr\u003e }\\n\u003cbr\u003e }\u003c/div\u003e\u003c/div\u003e\"}]}], \"references\": [{\"url\": \"https://www.geovision.com.tw/cyber_security.php\", \"tags\": [\"vendor-advisory\"]}, {\"url\": \"https://talosintelligence.com/vulnerability_reports/TALOS-2026-2373\", \"tags\": [\"third-party-advisory\"]}], \"metrics\": [{\"format\": \"CVSS\", \"scenarios\": [{\"lang\": \"en\", \"value\": \"GENERAL\"}], \"cvssV3_1\": {\"version\": \"3.1\", \"attackVector\": \"NETWORK\", \"attackComplexity\": \"HIGH\", \"privilegesRequired\": \"NONE\", \"userInteraction\": \"REQUIRED\", \"scope\": \"CHANGED\", \"confidentialityImpact\": \"HIGH\", \"integrityImpact\": \"HIGH\", \"availabilityImpact\": \"HIGH\", \"baseSeverity\": \"HIGH\", \"baseScore\": 8.3, \"vectorString\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:H\"}}], \"solutions\": [{\"lang\": \"en\", \"value\": \"The vulnerability has been patched with GeoWebPlayer V1.1.3.0\", \"supportingMedia\": [{\"type\": \"text/html\", \"base64\": false, \"value\": \"The vulnerability has been patched with GeoWebPlayer V1.1.3.0\u0026nbsp;\"}]}], \"credits\": [{\"lang\": \"en\", \"value\": \"Philippe Laulheret of Cisco Talos\", \"type\": \"finder\"}, {\"lang\": \"en\", \"value\": \"Kelly Patterson of Cisco Talos\", \"type\": \"remediation reviewer\"}, {\"lang\": \"en\", \"value\": \"Robert Sherwin of Cisco Talos\", \"type\": \"coordinator\"}], \"source\": {\"discovery\": \"EXTERNAL\"}, \"x_generator\": {\"engine\": \"Vulnogram 1.0.2\"}}, \"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-57268\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"total\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-07-02T12:35:11.850544Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-07-02T12:35:16.401Z\"}}]}",
"cveMetadata": "{\"cveId\": \"CVE-2026-57268\", \"assignerOrgId\": \"0df08a0e-a200-4957-9bb0-084f562506f9\", \"state\": \"PUBLISHED\", \"assignerShortName\": \"GV\", \"dateReserved\": \"2026-06-24T05:48:03.740Z\", \"datePublished\": \"2026-07-02T02:20:11.291Z\", \"dateUpdated\": \"2026-07-02T12:35:19.946Z\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
Loading…
Loading…
Sightings
| Author | Source | Type | Date |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.
Loading…
Loading…