Skip to content

Remote Code Execution and Privilege Escalation Via Buffer Overflow and Race Condition

Critical
Anof-cyber published GHSA-q82f-cf62-4xhq Jan 23, 2026

Package

ProxyBridge

Affected versions

3.0

Patched versions

3.1.0

Description

Impact

ProxyBridge Windows versions 3.0 and earlier contain two critical vulnerabilities in the UDP and TCP relay servers that allow remote attackers to execute arbitrary code on ProxyBridge running with Administrator privileges.

Vulnerability 1: Buffer Overflow

The UDP relay server performs unchecked memcpy operations on network data without validating the packet size. An attacker can send packets larger than MAXBUF-10 (65525 bytes) to overflow the send buffer, which causes the application to crash. By carefully crafting the oversized packet, an attacker can exploit this buffer overflow to perform privilege escalation and gain control of the system.


Vulnerability 2: Use-After-Free / Race Condition

The UDP relay server has a critical flaw where it continues to use connection pointers after releasing the mutex lock that protects them. When multiple packets arrive at the same time, this creates a race condition where one thread can free a connection structure while another thread is still using it. This use-after-free behaviour causes the application to crash. An attacker can exploit this race condition in combination with the buffer overflow vulnerability to achieve remote code execution and perform privilege escalation, potentially gaining full control of the system with ADMINISTRATOR privileges.


Impact:

  • Remote Code Execution (RCE) as ADMINISTRATOR
  • Privilege escalation

Patches

Fixed in version 3.1.0:

  • Relay Server accepts connections from localhost redirect
  • Relay Server restricts the external incoming connection with WFP
  • Added buffer overflow protection with bounds checking
  • Fixed use-after-free by copying connection data before mutex release

Severity

Critical

CVSS overall score

This score calculates overall vulnerability severity from 0 to 10 and is based on the Common Vulnerability Scoring System (CVSS).
/ 10

CVSS v3 base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

CVSS v3 base metrics

Attack vector: More severe the more the remote (logically and physically) an attacker can be in order to exploit the vulnerability.
Attack complexity: More severe for the least complex attacks.
Privileges required: More severe if no privileges are required.
User interaction: More severe when no user interaction is required.
Scope: More severe when a scope change occurs, e.g. one vulnerable component impacts resources in components beyond its security scope.
Confidentiality: More severe when loss of data confidentiality is highest, measuring the level of data access available to an unauthorized user.
Integrity: More severe when loss of data integrity is the highest, measuring the consequence of data modification possible by an unauthorized user.
Availability: More severe when the loss of impacted component availability is highest.
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

CVE ID

CVE-2026-24402

Weaknesses

Buffer Copy without Checking Size of Input ('Classic Buffer Overflow')

The product copies an input buffer to an output buffer without verifying that the size of the input buffer is less than the size of the output buffer. Learn more on MITRE.

Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')

The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently. Learn more on MITRE.

Use After Free

The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory belongs to the code that operates on the new pointer. Learn more on MITRE.

Out-of-bounds Write

The product writes data past the end, or before the beginning, of the intended buffer. Learn more on MITRE.

Credits