[tor-bugs] #26306 [- Select a component]: HTTPS proxy doesn't use TLS
Tor Bug Tracker & Wiki
blackhole at torproject.org
Mon Jun 4 22:04:47 UTC 2018
#26306: HTTPS proxy doesn't use TLS
--------------------------------------+--------------------------
Reporter: sf | Owner: (none)
Type: defect | Status: new
Priority: Very Low | Milestone:
Component: - Select a component | Version: Tor: 0.3.3.6
Severity: Major | Keywords: https, proxy
Actual Points: | Parent ID:
Points: | Reviewer:
Sponsor: |
--------------------------------------+--------------------------
Following configuration in GUI
{{{
HTTP/HTTPS proxy
Address: example.com (https://example.com fails to parse)
Port: 443
Credentials: username:password
}}}
generates torrc with:
{{{
HTTPSProxy example.com:443
HTTPSAuthenticator username:password
}}}
When configured this way, Tor sends CONNECT request with my credentials
over plaintext HTTP to port :443.
HTTPSProxy should be able to use HTTPS for proxying. HTTPS proxies are
supported in Firefox, and could be configured via an extension, or a PAC
file (which could be inlined in settings without using an actual file):
{{{
function FindProxyForURL(url, host) {
if (host === "127.0.0.1")
return "DIRECT";
return "HTTPS example.com:443";
}
}}}
--
Ticket URL: <https://trac.torproject.org/projects/tor/ticket/26306>
Tor Bug Tracker & Wiki <https://trac.torproject.org/>
The Tor Project: anonymity online
More information about the tor-bugs
mailing list