fix: add header offset overflow check

- during the header offset calculation, perform overflow check

Tested:
- Local tests
This commit is contained in:
Alexander Zaitsev 2022-01-22 17:56:13 +03:00
parent 06b41010ea
commit 8a666b102b

View file

@ -603,7 +603,10 @@ pub(crate) fn central_header_to_zip_file<R: Read + io::Seek>(
}
// Account for shifted zip offsets.
result.header_start += archive_offset;
result.header_start = result
.header_start
.checked_add(archive_offset)
.ok_or(ZipError::InvalidArchive("Archive header is too large"))?;
Ok(result)
}