
Cloud Vulnerability DB
A community-led vulnerabilities database
CVE-2026-32854 is a NULL pointer dereference vulnerability in LibVNCServer's HTTP proxy handlers that allows unauthenticated remote attackers to crash the VNC server process via denial of service. It affects LibVNCServer versions 0.9.15 and prior, and was disclosed on March 24, 2026, with a fix available in commit dc78dee. The vulnerability carries a CVSS v3.1 base score of 7.5 (High) and a CVSS v4.0 base score of 6.3 (Medium) (GitHub Advisory, Red Hat Bugzilla).
The vulnerability (CWE-476: NULL Pointer Dereference) exists in two code paths within httpProcessInput() in src/libvncserver/httpd.c. In Issue A (CONNECT handler, line 359), strchr(buf, ':') is called to locate a colon in the request; if absent, it returns NULL, which is then incremented by 1 and passed directly to atoi(), causing a segmentation fault. In Issue B (GET proxy handler, line 372), strchr(buf, '/') is called without a NULL check, and its return value is passed directly to strncmp() when no slash is present, also causing a segmentation fault. Both vulnerabilities are only reachable when the server is started with the non-default -httpd and -enablehttpproxy flags. The fix in commit dc78dee adds NULL checks for both strchr() return values before use (GitHub Advisory, Patch Commit).
Successful exploitation results in a denial of service — an unauthenticated, network-reachable attacker can crash the VNC server process (SIGSEGV) by sending a single malformed HTTP request to the HTTP port (default TCP 5800). There is no impact on confidentiality or integrity; the vulnerability is limited to availability of the affected VNC server instance. An attacker can repeatedly trigger the crash to maintain a persistent denial of service against affected deployments (GitHub Advisory).
A proof-of-concept exploit is publicly available in the GitHub Security Advisory, consisting of simple netcat commands with specific malformed payloads. There is no evidence of in-the-wild exploitation at this time, and no threat actor attribution has been reported. The EPSS score is approximately 0.0137 (1.37%), indicating low probability of exploitation in the near term. The vulnerability is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog (GitHub Advisory, Feedly).
nmap or masscan.-httpd and -enablehttpproxy flags by attempting a standard HTTP connection to port 5800 and observing the response.echo -e "CONNECT nocolon\r\n\r\n" | nc <server_ip> 5800This causes strchr(buf, ':') to return NULL, which is then passed as NULL+1 to atoi(), triggering a SIGSEGV.echo -e "GET noslash\r\n\r\n" | nc <server_ip> 5800This causes strchr(buf, '/') to return NULL, which is passed directly to strncmp(), triggering a SIGSEGV.CONNECT requests without a colon, or GET requests without a slash in the request line; single-packet connections from external IPs to the VNC HTTP port.httpd: CONNECT format invalid. error messages or abrupt process termination entries; system logs (e.g., syslog, journald) recording SIGSEGV or segmentation fault for the VNC server process.Upgrade LibVNCServer to a version that includes commit dc78dee51a7e270e537a541a17befdf2073f5314, which adds NULL checks for strchr() return values in both vulnerable code paths. If immediate patching is not possible, disable the -httpd and -enablehttpproxy server options, as both must be explicitly enabled for the vulnerability to be reachable (both are non-default). Additionally, implement network-level filtering (firewall rules) to restrict access to TCP port 5800 to trusted sources only (GitHub Advisory, Patch Commit).
Red Hat tracked the vulnerability via Bugzilla (Bug 2450845) and assigned it medium severity. The openSUSE project issued security announcements and included the fix in Tumbleweed monthly updates. The vulnerability received coverage in German Linux security news (pro-linux.de) and was noted in the Solus Linux weekly update. No significant researcher commentary or broader media coverage beyond standard vulnerability tracking has been observed (Red Hat Bugzilla).
Source: This report was generated using AI
Free Vulnerability Assessment
Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.
Get a personalized demo
"Best User Experience I have ever seen, provides full visibility to cloud workloads."
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
"We know that if Wiz identifies something as critical, it actually is."