mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-05 04:47:41 +03:00
system: Check UDP invalid packet
This commit is contained in:
parent
da350ecc72
commit
ce9c864d89
1 changed files with 6 additions and 0 deletions
|
@ -326,6 +326,9 @@ func (s *System) processIPv4UDP(packet clashtcpip.IPv4Packet, header clashtcpip.
|
||||||
if packet.FragmentOffset() != 0 {
|
if packet.FragmentOffset() != 0 {
|
||||||
return E.New("ipv4: udp: fragment dropped")
|
return E.New("ipv4: udp: fragment dropped")
|
||||||
}
|
}
|
||||||
|
if !header.Valid() {
|
||||||
|
return E.New("ipv4: udp: invalid packet")
|
||||||
|
}
|
||||||
source := netip.AddrPortFrom(packet.SourceIP(), header.SourcePort())
|
source := netip.AddrPortFrom(packet.SourceIP(), header.SourcePort())
|
||||||
destination := netip.AddrPortFrom(packet.DestinationIP(), header.DestinationPort())
|
destination := netip.AddrPortFrom(packet.DestinationIP(), header.DestinationPort())
|
||||||
if !destination.Addr().IsGlobalUnicast() {
|
if !destination.Addr().IsGlobalUnicast() {
|
||||||
|
@ -349,6 +352,9 @@ func (s *System) processIPv4UDP(packet clashtcpip.IPv4Packet, header clashtcpip.
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *System) processIPv6UDP(packet clashtcpip.IPv6Packet, header clashtcpip.UDPPacket) error {
|
func (s *System) processIPv6UDP(packet clashtcpip.IPv6Packet, header clashtcpip.UDPPacket) error {
|
||||||
|
if !header.Valid() {
|
||||||
|
return E.New("ipv6: udp: invalid packet")
|
||||||
|
}
|
||||||
source := netip.AddrPortFrom(packet.SourceIP(), header.SourcePort())
|
source := netip.AddrPortFrom(packet.SourceIP(), header.SourcePort())
|
||||||
destination := netip.AddrPortFrom(packet.DestinationIP(), header.DestinationPort())
|
destination := netip.AddrPortFrom(packet.DestinationIP(), header.DestinationPort())
|
||||||
if !destination.Addr().IsGlobalUnicast() {
|
if !destination.Addr().IsGlobalUnicast() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue