Bug 488502 (CVE-2009-0801)
Summary: | CVE-2009-0801 squid: remote bypass of access controls | ||||||
---|---|---|---|---|---|---|---|
Product: | [Other] Security Response | Reporter: | Vincent Danen <vdanen> | ||||
Component: | vulnerability | Assignee: | Red Hat Product Security <security-response-team> | ||||
Status: | CLOSED WONTFIX | QA Contact: | |||||
Severity: | low | Docs Contact: | |||||
Priority: | low | ||||||
Version: | unspecified | CC: | aglotov, bressers, henrik, mbacovsk | ||||
Target Milestone: | --- | Keywords: | Security | ||||
Target Release: | --- | ||||||
Hardware: | All | ||||||
OS: | Linux | ||||||
URL: | http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-0801 | ||||||
Whiteboard: | |||||||
Fixed In Version: | squid 3.2.0.11 | Doc Type: | Bug Fix | ||||
Doc Text: |
It was found that when transparent interception mode was enabled in squid a remote attacker could bypass access controls implemented for certain web elements like Flash and Java and communicate with restricted intranet sites via crafted Host headers.
|
Story Points: | --- | ||||
Clone Of: | Environment: | ||||||
Last Closed: | 2016-04-07 11:17:10 UTC | Type: | --- | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Bug Depends On: | 488503, 488504, 488505, 488506, 488507, 488508, 865991, 1303061 | ||||||
Bug Blocks: | |||||||
Attachments: |
|
Description
Vincent Danen
2009-03-04 17:51:01 UTC
Some additional references: http://www.theregister.co.uk/2009/02/23/serious_proxy_server_flaw/ http://marc.info/?l=squid-dev&m=123542836103750&w=4 And some additional notes: This seems to have low impact due to a user having to visit a malicious untrusted site to load active content, or to load malicious active content from a trusted site. It only affects proxies in transparent mode and same-origin policies in browsers should prevent an attacker from re-using auth credentials like cookies, and does NOT affect proxies in reverse mode (active content being flash or javascript). As well, this should only be able to affect regular HTTP connections since HTTPS does not use Host headers. There are some good comments on theregister (#8 and #9) that discuss why this may not be overly serious in real-world use. Also, there is nothing yet from the squid devs. As in most matters there is a tradeoff between efficienty, simplicity and "security" in this matter. Imho (as an individual) the main security flaw is allowing untrusted "applets" direct network access bypassing the HTTP stack of the browser they run within. Having a browser plugin implement their own HTTP stack is... From what I can see, there is still no upstream fix for this. This is being tracked upstream here: http://bugs.squid-cache.org/show_bug.cgi?id=3243 Created attachment 515548 [details]
Upstream patch
Statement: (none) Upstream has corrected this in 3.2.0.11: http://www.squid-cache.org/Advisories/SQUID-2011_1.txt Regarding older squid versions, the advisory states: "Due to the design of request handling processes in older Squid patches and fixed releases for older versions of Squid are not being provided at this time." Upstream bug also indicates that the fix is not backportable to pre-3.2 versions, as it depends on other internal changes done during the 3.2 development. SQUID-2011:1 is less clear, as it says upstream does not provide any backports to older version as this time, not saying if it's planned for the future. As for patch in comment #6, it seems incomplete and missing all the hostHeaderVerify() code. Henrik, do you know of any good place that describes what checks exactly are now performed by Squid? Based on my reading so far, it seems the core is the check of client TCP connection destination IP / port against HTTP header info for consistency. Though I don't think that info is always available to Squid (e.g. when connections are dnat-ed to proxy from gateway host). Any pointer or corrections are appreciated. (In reply to comment #6) > Created attachment 515548 [details] > Upstream patch This seems to be: http://bazaar.launchpad.net/~squid/squid/3.2/revision/11253 While these are also part of the fix: http://bazaar.launchpad.net/~squid/squid/3.2/revision/11252 http://bazaar.launchpad.net/~squid/squid/3.2/revision/11266 http://bazaar.launchpad.net/~squid/squid/3.2/revision/11267 Release notes change with some brief info: http://bazaar.launchpad.net/~squid/squid/3.2/revision/11302 I have not kept a close eye on these changs. If you need some clarification I think the best is to post your question to squid-dev. As you correctly note this won't work at all if you DNAT externally to the Squid box as you then overwrite the original destination IP:port irrecoverably. Such setups is considered broken and have always been. Better to use policy routing and do the IP interception on the Squid box preserving data properly (i.e. WCCP, route maps, policy routes etc on the gateway..) Fedora 16+ have 3.2.0.16, which contains the fix. |