UltravncApplication · Uvnc

CVE-2026-44040

MEDIUM · 6.5 CVSS v3.1 Published 2026-07-01
Fix available
A fix is available. Upgrade to after 1.8.2.2 or later.
See remediation →
74/100
Remediation priority · Elevated
Remotely reachable No privileges Zero-click 7 weeks old

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
UltraVNC through 1.8.2.2 uses a cryptographically weak pseudo-random number generator to produce VNC authentication challenge bytes. In rfb/vncauth.c:119-129, the vncRandomBytes() function seeds libc rand() with time(0) + getpid() + rand() and generates a 16-byte challenge. The combined seed space is approximately 31 bits (libc rand() internal state) and is entirely determined by publicly-observable values (wall-clock time and process ID). An attacker who can observe the authentication exchange can enumerate the seed space and predict the challenge within seconds, enabling forgery or offline brute-forcing of responses. Note: on Windows, the active code path may use vncEncryptBytes2.cpp which calls CryptGenRandom; reachability on shipped Windows binaries requires compile-graph verification and is under investigation.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · high confidence

UltraVNC through 1.8.2.2 uses a cryptographically weak PRNG in vncRandomBytes() seeded with time(0) + getpid() + rand(), producing only ~31 bits of entropy. Since the seed relies on publicly observable values (wall-clock time and process ID), an attacker who intercepts the VNC authentication exchange can enumerate the seed space and predict the 16-byte challenge within seconds, enabling authentication forgery or offline brute-forcing of responses.

MitigationReplace the weak vncRandomBytes() implementation with a cryptographically secure PRNG (CSPRNG) such as CryptGenRandom on Windows, Arc4Random on macOS, or /dev/urandom on Unix/Linux systems. Ensure the challenge generation uses at least 128 bits of entropy from the system's entropy pool.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.

NVD · CPE data
UltravncApplication
Affected:<= 1.8.2.2

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
Low
Privileges
None
User interaction
None
Scope
Unchanged
Confidentiality
Low
Integrity
Low
Availability
None

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Check UltraVNC installation and version
    Look for UltraVNC installation directory (commonly C:\Program Files\UltraVNC or C:\Program Files (x86)\UltraVNC on Windows). Check the version by right-clicking winvnc.exe or uvnc_service.exe, selecting Properties, and viewing the File Version tab. Also check the built-in version info via 'winvnc.exe -version' or 'uvnc_service.exe -version' if supported.
    Affected if The installed version is 1.8.2.2 or any earlier version (1.8.x series). The version number in the file properties will be less than or equal to 1.8.2.2.
  2. Verify VNC service or process is running
    Open Task Manager or use command 'tasklist /FI "IMAGENAME eq winvnc.exe"' or 'sc query winvnc' to check if the UltraVNC server (winvnc.exe) or service (uvnc_service) is active. Also check for listening TCP port 5900 (or custom VNC port) using 'netstat -an | findstr 5900'.
    Affected if The UltraVNC server process is running and accepting VNC connections on port 5900 (or a configured alternative port). This is required for the weak PRNG to be used in authentication challenges.
  3. Identify vulnerable vncRandomBytes usage in binaries
    Examine the UltraVNC binary (winvnc.exe or uvnc_service.exe) for the presence of the weak PRNG function. If you have access to the binary or debug symbols, search for the function name 'vncRandomBytes' or its call pattern involving time(), getpid(), and rand(). On Windows, you can use 'strings winvnc.exe | findstr -i random' to look for related function references.
    Affected if The binary contains the vncRandomBytes() implementation using time(0) + getpid() + rand() for seeding. This can be confirmed by binary analysis or source code review if accessible.
  4. Test authentication challenge predictability (if permitted in your environment)
    Capture multiple VNC authentication handshakes by connecting to the UltraVNC server and recording the 16-byte challenge sent by the server (the first 16 bytes of the VNC authentication protocol). Compare challenges at different times - if the same timestamp produces identical challenges, the PRNG is weak. Note: This is an observational check and may require multiple connection attempts.
    Affected if The authentication challenge can be reproduced or predicted based on known timestamps. If challenges repeat predictably or can be enumerated within seconds using the known seed formula, the system is vulnerable.

You are affected if UltraVNC version 1.8.2.2 or earlier is installed and the VNC server service is running, using the weak vncRandomBytes() PRNG for authentication challenge generation.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

From vendor data
Upgrade available Upgrade to a release after 1.8.2.2
Interim mitigation

Replace the weak vncRandomBytes() implementation with a cryptographically secure PRNG (CSPRNG) such as CryptGenRandom on Windows, Arc4Random on macOS, or /dev/urandom on Unix/Linux systems. Ensure the challenge generation uses at least 128 bits of entropy from the system's entropy pool.

Fix this in Ultravnc Scoped from the published advisory
  • Consultation3.0 h
  • Implementation6.0 h
  • Testing3.0 h
  • Review / QA2.0 h
14.0 hours of engineering $2,490
Get the upgrade done

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $3,984.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2026-44040 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2026-44040 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data