Approved changes feed: RSS · Atom
cpe:2.3:a:uvnc:ultravnc:*:*:*:*:*:*:*:*
part: a version: * update: *
| Vendor | Uvnc (0d6ffcc6-bcff-556c-8e6a-d4e91af8e263) |
|---|---|
| Product | Ultravnc (d28382af-9c7d-5dcf-aed1-6a3c1cd096f7) |
| Edition | * |
| Language | * |
| Software edition | * |
| Target software | * |
| Target hardware | * |
| Other | * |
| Notes | Imported from purl2cpe mapping |
PURL mappings
| PURL | Source | Last updated |
|---|---|---|
pkg:github/ultravnc/ultravnc |
purl2cpe | 2026-06-01 10:11:32.738875 |
pkg:sourceforge/ultravnc |
purl2cpe | 2026-06-01 10:11:32.738877 |
Vulnerability references
| Identifier | cpeApplicability | Submitted | db.gcve.eu details | Rationale |
|---|---|---|---|---|
CVE:CVE-2026-7840 |
vulnerable | 2026-07-29 01:09:05.274439 |
UltraVNC repeater HTTP server global buffer overflow via long URI (pre-auth RCE)
CRITICAL (9.8)
UltraVNC repeater through 1.8.2.2 contains a global buffer overflow in its embedded HTTP administration server. The functions wi_senderr() and wi_replyhdr() in repeater/webgui/webutils.c write the caller-supplied HTTP request URI into a fixed 1000-byte global buffer (hdrbuf) via unchecked sprintf calls. The HTTP receive buffer accepts URIs up to approximately 150 KB (WI_RXBUFSIZE = 153600), so an unauthenticated attacker who can reach the repeater HTTP port (default TCP 80) can overflow hdrbuf by at least 500 bytes with a single HTTP request containing a URI of 1500 bytes or longer, corrupting adjacent .bss-segment globals. The overflow occurs before any authentication check, making it reachable without credentials. A remote, unauthenticated attacker can achieve arbitrary code execution on the host running the repeater.
Published: 2026-07-01T03:33:28.957Z
Updated: 2026-07-09T04:36:16.157Z |
Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-7839 |
vulnerable | 2026-07-29 01:09:05.274290 |
UltraVNC repeater ships hardcoded default admin password allowing unauthenticated admin access
CRITICAL (9.1)
UltraVNC repeater through 1.8.2.2 initializes the HTTP administration server with a hardcoded default password. In repeater/webgui/settings.c:197, when settings2.txt is absent on first run the repeater writes the literal string "adminadmi2" as the admin password via strcpy_s(saved_password, 64, "adminadmi2"). The HTTP Basic-auth handler wi_decode_auth() checks this password without rate-limiting or lockout. Any remote attacker who can reach the repeater HTTP port (default TCP 80) can authenticate as administrator using the well-known default credential on a fresh or unmodified installation, gaining full control of the repeater configuration including allow/deny rules and session visibility.
Published: 2026-07-01T03:33:27.724Z
Updated: 2026-07-09T04:35:44.027Z |
Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-7838 |
vulnerable | 2026-07-29 01:09:05.274013 |
UltraVNC viewer heap buffer overflow via integer overflow in RFB connection-failure reason length
HIGH (8.8)
UltraVNC viewer through 1.8.2.2 contains an integer overflow leading to a heap buffer overflow in the RFB protocol failure-response parsing path. In vncviewer/ClientConnection.cpp, the 4-byte network-supplied reasonLen field (type CARD32) is passed as reasonLen+1 to CheckBufferSize(). Because both operands are unsigned 32-bit, a reasonLen of 0xFFFFFFFF overflows to 0, causing CheckBufferSize to allocate only 256 bytes. The subsequent ReadString(m_netbuf, reasonLen) call then performs ReadExact for the original 4 GiB length into that 256-byte heap buffer. This overflow is reachable via rfbConnFailed (auth-scheme negotiation) and rfbVncAuthFailed (post-handshake) message types without successful authentication. A malicious VNC server, or any man-in-the-middle on the RFB stream, can trigger this condition when the victim viewer connects, potentially resulting in remote code execution as the user running the viewer. The crash was confirmed with AddressSanitizer on a portable reproduction harness (heap-buffer-overflow WRITE at offset 256).
Published: 2026-07-01T03:33:26.501Z
Updated: 2026-07-09T04:35:58.564Z |
Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-7831 |
vulnerable | 2026-07-29 01:09:05.266753 |
UltraVNC viewer off-by-one stack overflow in ServerInit desktop name parsing
HIGH (7.5)
UltraVNC viewer through 1.8.2.2 contains an off-by-one stack buffer overflow in the RFB ServerInit message handler. In vncviewer/ClientConnection.cpp, when the server-supplied nameLength equals exactly 2024 the code declares a 2024-byte stack buffer _dn[2024] and calls ReadString(_dn, 2024). ReadString writes the NUL terminator at buf[length], i.e., _dn[2024], one byte past the end of the stack buffer. A malicious VNC server can trigger this condition by advertising a desktop name of length 2024 in its ServerInit message. On release builds without stack canaries the single-byte NUL overwrite adjacent stack data. On builds with /GS stack protection the canary is corrupted and the process terminates, resulting in denial of service. User interaction (connecting the viewer to the malicious server) is required.
Published: 2026-07-01T03:33:25.314Z
Updated: 2026-07-09T04:35:54.891Z |
Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-7830 |
vulnerable | 2026-07-29 01:09:05.266617 |
UltraVNC MS-Logon II uses 64-bit Diffie-Hellman and seeded libc rand() enabling credential interception
HIGH (7.4)
UltraVNC through 1.8.2.2 uses inadequate cryptography in the MS-Logon II authentication scheme (rfbUltraVNC_MsLogonIIAuth). In rfb/dh.cpp the Diffie-Hellman key exchange is performed with parameters that fit in an unsigned 64-bit integer (DH_MAX_BITS controls the prime size). A 64-bit DH key can be broken by Pollard's rho algorithm in under one second on current hardware. Additionally, the private exponent is generated by the rng() function, which multiplies three libc rand() values seeded from time(NULL). With approximately 31 bits of internal state and a time-based seed, the private exponent is recoverable in under a minute by a passive observer. A network attacker who can observe the MS-Logon II handshake (via sniffing, recording, or man-in-the-middle) can derive the shared DH key and decrypt the encapsulated username and password, resulting in full credential disclosure. This affects legacy MS-Logon II connections; MS-Logon III (X25519 + AES-256-GCM) is unaffected.
Published: 2026-07-01T03:33:24.106Z
Updated: 2026-07-09T04:35:51.099Z |
Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-7829 |
vulnerable | 2026-07-29 01:09:05.266371 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-7828 |
vulnerable | 2026-07-29 01:09:05.266174 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-44042 |
vulnerable | 2026-07-29 00:52:14.033207 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-44041 |
vulnerable | 2026-07-29 00:52:14.033067 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-44040 |
vulnerable | 2026-07-29 00:52:14.032874 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2026-4962 |
vulnerable | 2026-06-08 08:07:02.712091 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2022-24750 |
vulnerable | 2026-06-08 05:41:01.548396 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2020-37133 |
vulnerable | 2026-06-08 05:25:50.217071 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2020-37132 |
vulnerable | 2026-06-08 05:25:50.216540 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8280 |
vulnerable | 2026-06-08 05:14:23.800633 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8277 |
vulnerable | 2026-06-08 05:14:23.790930 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8276 |
vulnerable | 2026-06-08 05:14:23.790163 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8275 |
vulnerable | 2026-06-08 05:14:23.789677 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8274 |
vulnerable | 2026-06-08 05:14:23.789229 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8273 |
vulnerable | 2026-06-08 05:14:23.788568 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8272 |
vulnerable | 2026-06-08 05:14:23.788073 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8271 |
vulnerable | 2026-06-08 05:14:23.787664 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8270 |
vulnerable | 2026-06-08 05:14:23.787310 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8269 |
vulnerable | 2026-06-08 05:14:23.786661 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8268 |
vulnerable | 2026-06-08 05:14:23.786035 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8267 |
vulnerable | 2026-06-08 05:14:23.785595 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8266 |
vulnerable | 2026-06-08 05:14:23.785196 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8265 |
vulnerable | 2026-06-08 05:14:23.784851 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8264 |
vulnerable | 2026-06-08 05:14:23.784384 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8263 |
vulnerable | 2026-06-08 05:14:23.783677 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8262 |
vulnerable | 2026-06-08 05:14:23.780534 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8261 |
vulnerable | 2026-06-08 05:14:23.780131 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8260 |
vulnerable | 2026-06-08 05:14:23.779647 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8259 |
vulnerable | 2026-06-08 05:14:23.779089 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2019-8258 |
vulnerable | 2026-06-08 05:14:23.775815 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
CVE:CVE-2018-15361 |
vulnerable | 2026-06-08 05:10:53.990931 | db.gcve.eu details were skipped to keep the page responsive. | Imported from gcve-enriched-dumps CVE data |
Contribute
You can submit an edit proposal for this CPE entry or suggest a related product/vendor addition using the action button above.