【发布时间】:2011-08-04 11:48:25
【问题描述】:
我正在尝试使用套接字通过代理连接到 HTTPS 服务器。据我所知,在使用 HTTP 代理时,应该将套接字连接到它,然后与它进行交互,因为它是真正的服务器。对于 HTTP,此方法有效,但对于 HTTPS 则无效。为什么?
这是连接到 HTTPS 服务器的简单程序
using System;
using System.Text;
using System.Net.Sockets;
using System.Net.Security;
namespace SslTcpClient
{
public class SslTcpClient
{
public static void Main(string[] args)
{
string host = "encrypted.google.com";
string proxy = "127.0.0.1";//host;
int proxyPort = 8888;//443;
// Connect socket
TcpClient client = new TcpClient(proxy, proxyPort);
// Wrap in SSL stream
SslStream sslStream = new SslStream(client.GetStream());
sslStream.AuthenticateAsClient(host);
// Send request
byte[] request = Encoding.UTF8.GetBytes(String.Format("GET https://{0}/ HTTP/1.1\r\nHost: {0}\r\n\r\n", host));
sslStream.Write(request);
sslStream.Flush();
// Read response
byte[] buffer = new byte[2048];
int bytes;
do
{
bytes = sslStream.Read(buffer, 0, buffer.Length);
Console.Write(Encoding.UTF8.GetString(buffer, 0, bytes));
} while (bytes != 0);
client.Close();
Console.ReadKey();
}
}
}
proxy = host 和proxyPort = 443 时连接成功。但是当我将它们设置为 127.0.0.1:8888 (本地主机上的提琴手代理)时,它不起作用。程序挂在sslStream.AuthenticateAsClient(host); 为什么? Fiddler 支持 HTTPS(浏览器可以通过它连接)。
附:不,我不能使用 HttpWebRequest。
【问题讨论】:
-
看来我得先通过代理建立TCP隧道。可以使用 CONNECT 方法完成。但我还是没能成功。