SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-50126

MEDIUM · CVSS 4 EPSS 0.12% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-18 · Last synced 2026-09-17

CyberRota Analysis

AI-Generated

Adaguc-server versions prior to 7.2.2 are vulnerable to a memory-safety fault that can be exploited by processing a malformed GeoJSON document, leading to a crash of the backend process. This vulnerability affects the coordinate parsing functionality, which does not properly validate input, allowing for out-of-bounds reads or NULL pointer dereferences. Organizations using Adaguc-server, particularly those handling GeoJSON data in their workflows, should prioritize upgrading to version 7.2.2 to mitigate potential disruptions.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-50126
Severity
MEDIUM
CVSS
4
EPSS
0.12%

Original NVD Description

Adaguc-server is an open source geographical information system to visualize, combine, compare and share real-time meteorological, climatological and remote sensing data via OGC standards. Versions prior to 7.2.2 crash with a memory-safety fault when it parses a GeoJSON document whose geometry contains a malformed coordinate. The coordinate parser in `adagucserverEC/CConvertGeoJSON.cpp` indexes `pt.u.array.values[0]` and `pt.u.array.values[1]` and uses `polygon.u.array.length` as a loop bound without first validating the JSON node type or the coordinate length. A coordinate that is an empty array, a one-element array, a scalar, or `null` leads to an out-of-bounds heap read or a NULL pointer dereference. The same unchecked pattern is present in four geometry branches: `Polygon`, `LineString`, `MultiLineString` and `MultiPolygon`. The vulnerable parser runs whenever the server processes a local GeoJSON file, either a configured GeoJSON dataset or a GeoJSON file exposed through the `AutoResource` feature and requested by an unauthenticated WMS request. A crafted GeoJSON file reliably crashes the backend process that handles that request. Version 7.2.2 patches the vulnerability.