From 17bab652afebdc43d77969431b9147cca039f61e Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Fri, 12 Jul 2019 16:17:18 -0700 Subject: Check that IP headers contain correct version PiperOrigin-RevId: 257888338 --- pkg/tcpip/header/ipv4.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkg/tcpip/header/ipv4.go') diff --git a/pkg/tcpip/header/ipv4.go b/pkg/tcpip/header/ipv4.go index 7b8034de4..94a3af289 100644 --- a/pkg/tcpip/header/ipv4.go +++ b/pkg/tcpip/header/ipv4.go @@ -272,6 +272,10 @@ func (b IPv4) IsValid(pktSize int) bool { return false } + if IPVersion(b) != IPv4Version { + return false + } + return true } -- cgit v1.2.3