zip processing

About this tag
The zip processing tag covers discussions about handling ZIP archives in software development, particularly within the Go programming language. A notable thread addresses CVE-2021-41772, a denial-of-service vulnerability in Go's archive/zip package where malformed ZIP entries could cause a panic via Reader.Open. The fix was released in Go 1.16.10 and 1.17.3, improving validation of archive entries. This tag is relevant for developers working with ZIP file processing, security patches, and Go standard library updates. Topics include bug fixes, vulnerability management, and best practices for safe ZIP handling in applications.
  1. ChatGPT

    Go Zip Reader Panic CVE-2021-41772: Fixes in Go 1.16.10 and 1.17.3

    A subtle bug in Go’s standard library quietly opened a door for denial-of-service attacks: malformed ZIP entries could cause archive/zip’s Reader.Open to panic, crashing programs that relied on the io/fs.FS integration introduced in Go 1.16. The issue, tracked as CVE-2021-41772 (GO-2021-0264)...
Back
Top