Fix system ipv4 overflow

This commit is contained in:
世界 2022-09-22 16:33:25 +08:00
parent 0032242c96
commit 80ee994727
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -173,7 +173,7 @@ func (p IPv4Packet) PseudoSum() uint32 {
}
func (p IPv4Packet) Valid() bool {
return len(p) >= IPv4HeaderSize && uint16(len(p)) >= p.TotalLen()
return len(p) >= IPv4HeaderSize && p.TotalLen() >= p.HeaderLen() && uint16(len(p)) >= p.TotalLen()
}
func (p IPv4Packet) Verify() error {