rusticata / pcap-parser

PCAP/PCAPNG file format parser written in pure Rust. Fast, zero-copy, safe.
Other
104 stars 24 forks source link

avoid integer overflow in parse_name_record edge case #2

Closed Mrmaxmeier closed 4 years ago

chifflier commented 4 years ago

Indeed, this part can overflow. Another solution would have been to simply cast to u32 or usize before align32 (since an u16 will always fit in these types), but I'll take the verify Thanks!