Handle invalid zip header

This commit is contained in:
Robin Syihab 2017-12-04 01:19:44 +07:00 committed by GitHub
parent cb5a919a31
commit c99d7c2758
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,6 +58,10 @@ impl CentralDirectoryEnd
let search_upper_bound = file_length.checked_sub(HEADER_SIZE + ::std::u16::MAX as u64).unwrap_or(0);
if file_length < HEADER_SIZE {
return Err(ZipError::InvalidArchive("Invalid zip header"));
}
let mut pos = file_length - HEADER_SIZE;
while pos >= search_upper_bound
{