vibeio-http has a DoS vulnerability in HTTP/1.x chunked encoding parser triggered by maliciously crafted chunk lengths
Moderate severity
GitHub Reviewed
Published
Aug 24, 2026
to the GitHub Advisory Database
•
Updated Aug 24, 2026
Description
Published to the GitHub Advisory Database
Aug 24, 2026
Reviewed
Aug 24, 2026
Last updated
Aug 24, 2026
When using the affected versions of the
vibeio-httpcrate, an attacker could craft a malicious HTTP/1.x request with a large chunk length (betweenusize::MAX - 1andusize::MAXinclusive) and send it, causing the server to crash (integer overflow panic in debug builds, split_to out of bounds panic in release builds).This was fixed in
vibeio-http0.3.2 by erroring on the chunk length if it exceedsusize::MAX - 2(usingchecked_add()instead of+operator), preventing integer overflow.References