Http CONNECT 请求 return 空响应

Http CONNECT request return empty respone

我想使用 TcpClient 阅读 Https 页面。我使用下面的代码

var client = new TcpClient(url, 443);//"127.0.0.1", 8888);// Fiddler port
client.SendTimeout = 30000;
Stream responseStream = client.GetStream();

// send CONNECT request to server
byte[] tunnelRequest = Encoding.ASCII.GetBytes("CONNECT www.google.com:443 HTTP/1.1\r\nUser-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:44.0) Gecko/20100101 Firefox/35.0\r\nProxy-Connection: keep-alive\r\nConnection: keep-alive\r\nHost: www.google.com:443\r\n\r\n");
responseStream.Write(tunnelRequest, 0, tunnelRequest.Length);
responseStream.Flush();

// read CONNECT response 
string connectResponse = ReadResponse(responseStream);
Console.WriteLine("server connect response :  " + connectResponse);

向主机​​发送 CONNECT 请求 (google.com)

CONNECT www.google.com:443 HTTP/1.1
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0
Proxy-Connection: keep-alive
Connection: keep-alive
Host: www.google.com:443

回复必须是这样的

HTTP/1.1 200 Connection Established
StartTime: 22:42:38.774
Connection: close

但是responseStream return什么都没有。当我使用 Fiddler 作为代理时

var client = new TcpClient("127.0.0.1", 8888);

它工作正常并且 return 200 响应。 Fiddler 修复它有什么问题吗?

我使用 windows 8.1 并使用 .Net 2 和 4.5.1 进行测试。

基于 rfc 存在代理时使用的 CONNECT 方法。

Since TLS, in particular, requires end-to-end connectivity to provide authentication and prevent man-in-the-middle attacks, this memo specifies the CONNECT method to establish a tunnel across proxies.

直接沟通的情况下:

var client = new TcpClient("127.0.0.1", 8888);//url, 443);//
client.SendTimeout = 30000;
Stream responseStream = client.GetStream();

// Wrap in SSL stream
SslStream sslStream = new SslStream(responseStream);
sslStream.AuthenticateAsClient(url);

byte[] byts = Encoding.ASCII.GetBytes("GET / HTTP/1.1\r\nHost: www.google.com\r\nConnection: keep-alive\r\n\r\n");
sslStream.Write(byts, 0, byts.Length);

var str = ReadResponse(sslStream);