Logo
componenttinyproxy
Name
tinyproxy
Version
1.11.3
Type
library
Description
Lightweight http(s) proxy daemon
Licenses
GPL-2.0-only
PURL
-
CPE
cpe:2.3:*:tinyproxy_project:tinyproxy:1.11.3:*:*:*:*:*:*:*

Other Versions#


Project
Branch
Version
kirkstone
1.11.0
scarthgap
1.11.1

Patches#


#
Title
Author
Resolve
1
reqs: prevent potential int overflow when parsing chunked
rofl0r <rofl0r@users.noreply.github.com>
CVE-2026-3945
2
reqs: check negative length values when reading chunked data
rofl0r <rofl0r@users.noreply.github.com>
CVE-2026-3945

Vulnerabilities#


Name
Analysis
Description
Exploitable
Tinyproxy through 1.11.3, fixed in commit 09312a1, fails to properly validate the Host header during stathost detection, allowing unauthenticated attackers to access the stats page by injecting a matching Host header or bypass detection via port manipulation. Remote attackers can trigger unauthorized access to internal proxy statistics or misroute requests as transparent proxy connections to circumvent access controls.
Exploitable
Tinyproxy through 1.11.3, fixed in commit 364cdb6, fails to reject requests containing multiple Content-Length headers with differing values, forwarding all duplicate headers to the backend while using the first value to determine how many request body bytes to consume. Remote attackers can desynchronize the proxy and backend parser state, allowing injection of arbitrary HTTP requests to the backend to enable cache poisoning, access control bypass, and request hijacking.
Exploitable
Tinyproxy through 1.11.3, fixed in commit ff45d3b, fails to reconcile conflicting Content-Length and Transfer-Encoding: chunked headers, forwarding both verbatim to the backend while using Content-Length to determine how many request body bytes to consume. Remote attackers can desynchronize the proxy and backend parser state, allowing injection of arbitrary HTTP requests to the backend to enable cache poisoning, access control bypass, and request hijacking.
Patched
An integer overflow vulnerability in the HTTP chunked transfer encoding parser in tinyproxy up to and including version 1.11.3 allows an unauthenticated remote attacker to cause a denial of service (DoS). The issue occurs because chunk size values are parsed using strtol without properly validating overflow conditions (e.g., errno == ERANGE).
Exploitable
Tinyproxy through 1.11.3 is vulnerable to HTTP request parsing desynchronization due to a case-sensitive comparison of the Transfer-Encoding header in src/reqs.c. The is_chunked_transfer function uses strcmp to compare the header value against "chunked", even though RFC 7230 specifies that transfer-coding names are case-insensitive.