Description
yauzl (aka Yet Another Unzip Library) version 3.2.0 for Node.js contains an off-by-one error in the NTFS extended timestamp extra field parser within the getLastModDate() function. The while loop condition checks cursor < data.length + 4 instead of cursor + 4 <= data.length, allowing readUInt16LE() to read past the buffer boundary. A remote attacker can cause a denial of service (process crash via ERR_OUT_OF_RANGE exception) by sending a crafted zip file with a malformed NTFS extra field. This affects any Node.js application that processes zip file uploads and calls entry.getLastModDate() on parsed entries. Fixed in version 3.2.1.
Problem types
Product status
3.2.0 (semver) before 3.2.1
3.2.1
Credits
CodeAnt AI Code Reviewer
References
github.com/...ommit/c4695215b05c6adffda613b9051a2a85429b33fe (Patch Commit)
www.codeant.ai/...rch/yauzl-denial-of-service-zip-file-crash (CodeAnt AI Security Research Advisory)
www.npmjs.com/package/yauzl (npm - yauzl)
www.vulncheck.com/...f-by-one-error-in-ntfs-timestamp-parser (VulnCheck Advisory: yauzl 3.2.0 - Denial of Service via Off-by-One Error in NTFS Timestamp Parser)