๐Ÿ” CVE Alert

CVE-2026-45352

MEDIUM 5.3

cpp-httplib DoS: Negative chunk-size in chunked Transfer-Encoding

CVSS Score
5.3
EPSS Score
0.1%
EPSS Percentile
18th

cpp-httplib is a C++11 single-file header-only cross platform HTTP/HTTPS library. Prior to 0.43.4, negative chunk-size in chunked Transfer-Encoding causes unbounded memory allocation and process crash. The ChunkedDecoder::read_payload function in cpp-httplib (httplib.h) parses the chunk-size field of HTTP chunked transfer encoding using std::strtoul(). Per the C standard (ยง7.22.1.4), strtoul silently accepts a leading minus sign, performing unsigned wrap-around: strtoul("-2", โ€ฆ, 16) returns ULONG_MAX โˆ’ 1 (0xFFFFFFFFFFFFFFFE). The library's only guard (line 12833) rejects ULONG_MAX (the result of "-1"), but any other negative value such as "-2" passes validation. The resulting near-maximum value is stored in chunk_remaining and controls how many bytes the server's read loop consumes from the network. This vulnerability is fixed in 0.43.4.

CWE CWE-20 CWE-1285 CWE-770
Vendor yhirose
Product cpp-httplib
Published May 29, 2026
Last Updated Jun 2, 2026
Stay Ahead of the Next One

Get instant alerts for yhirose cpp-httplib

Be the first to know when new medium vulnerabilities affecting yhirose cpp-httplib are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
Low

Affected Versions

yhirose / cpp-httplib
< 0.43.4

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/yhirose/cpp-httplib/security/advisories/GHSA-h6wq-j5mv-f3q8