8000 Tags · OpenVPN/tap-windows6 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: OpenVPN/tap-windows6

Tags

9.27.0

Toggle 9.27.0's commit message
Fix potential integer overflow in TapSharedSendPacket

Following code:

  unsigned int            fullLength;
  <..>
  fullLength = PacketLength + PrefixLength;

could cause integer overflow, which will result in allocation
of smaller size of memory, which later causes buffer overflow and
a bug check.

Fix by checking overflow condition and fail the IRP in case of
overflow.

CVE: 2024-1305

Reported-by: Vladimir Tokarev <vtokarev@microsoft.com>
Signed-off-by: Lev Stipakov <lev@openvpn.net>

9.26.0

Toggle 9.26.0's commit message
Bump to 9.26

Signed-off-by: Lev Stipakov <lev@openvpn.net>

9.25.0

Toggle 9.25.0's commit message
fix bug: Only send packet when packetlength>=Etherheader(14)+IPv4head…

…er(20), but some Ether Packets have no IP header
0