gpt4 book ai didi

http - 代理服务器在代理https请求时做了什么

转载 作者:可可西里 更新时间:2023-11-01 16:21:51 33 4
gpt4 key购买 nike

我使用以下设置使用 apache 构建了一个转发代理服务器:

<VirtualHost *:8088>
ServerAdmin test@gmail.com
DocumentRoot "E:/test"
ServerName www.test.com
ServerAlias test.com
ErrorLog "logs/test.com-error.log"
CustomLog "logs/test.com-access.log" common
<Directory "E:/test">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>

ProxyRequests On
ProxyVia Off
ProxyTimeout 10

<Proxy *>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Proxy>
</VirtualHost>

主机文件

127.0.0.1 localhost

然后我用curl测试代理服务器

curl.exe -v https://www.google.com.hk -x localhost:8088

输出

* About to connect() to proxy localhost port 8088 (#0)
* Trying 127.0.0.1... connected
* Connected to localhost (127.0.0.1) port 8088 (#0)
* Establish HTTP proxy tunnel to www.google.com.hk:443
> CONNECT www.google.com.hk:443 HTTP/1.1
> Host: www.google.com.hk:443
> User-Agent: curl/7.21.7 (amd64-pc-win32) libcurl/7.21.7 OpenSSL/0.9.8r zlib/1.
2.5
> Proxy-Connection: Keep-Alive
>
< HTTP/1.0 200 Connection Established
< Proxy-agent: Apache/2.2.25 (Win32) PHP/5.4.21
<
* Proxy replied OK to CONNECT request
* successfully set certificate verify locations:
* CAfile: D:\curl-ssl\curl-ca-bundle.crt
CApath: none
* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Server finished (14):
* SSLv3, TLS handshake, Client key exchange (16):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSL connection using RC4-SHA
* Server certificate:
* subject: C=US; ST=California; L=Mountain View; O=Google Inc; CN=*.googl
e.com.hk
* start date: 2013-11-20 14:47:22 GMT
* expire date: 2014-03-20 00:00:00 GMT
* subjectAltName: www.google.com.hk matched
* issuer: C=US; O=Google Inc; CN=Google Internet Authority G2
* SSL certificate verify ok.
> GET / HTTP/1.1
> User-Agent: curl/7.21.7 (amd64-pc-win32) libcurl/7.21.7 OpenSSL/0.9.8r zlib/1.
2.5
> Host: www.google.com.hk
> Accept: */*
>
< HTTP/1.1 200 OK
< Date: Thu, 05 Dec 2013 02:21:27 GMT
< Expires: -1
< Cache-Control: private, max-age=0
< Content-Type: text/html; charset=Big5
< Set-Cookie: PREF=ID=12cdbbbf43c234b5:FF=0:NW=1:TM=1386210087:LM=1386210087:S=B
HZ4WAj3fqZicDa_; expires=Sat, 05-Dec-2015 02:21:27 GMT; path=/; domain=.google.c
om.hk
< Set-Cookie: NID=67=EvwPZiG49GZO1AMLw7cTY1Azrqzb77uTpCUv9rOECEJh4PRB523yMIJm8L5
OxxWBeq44qM-Dn8xYUijDmBrvXfL504U4_FSunEfG5UUIDveWbHG2BirORx5Jqk9MVFkd; expires=F
ri, 06-Jun-2014 02:21:27 GMT; path=/; domain=.google.com.hk; HttpOnly
< P3P: CP="This is not a P3P policy! See http://www.google.com/support/accounts/
bin/answer.py?hl=en&answer=151657 for more info."
< Server: gws
< X-XSS-Protection: 1; mode=block
< X-Frame-Options: SAMEORIGIN
< Alternate-Protocol: 443:quic
< Transfer-Encoding: chunked
<
... The google home page HTML ...

我认为 https 代理流程是:

  1. 向代理服务器发送 CONNECT http 请求

  2. 代理服务器将此 CONNECT 请求转发到 www.google.com.hk:443

  3. www.google.com.hk:443 向代理服务器返回 200 Connection Establish 响应

  4. 代理服务器将响应转发给 curl

  5. curl 开始向代理服务器发送 tls 握手数据报(可能是加密的?)

  6. 代理服务器对数据报一无所知,因为数据报是加密的,代理服务器只是使用之前发送 CONNECT 请求的套接字将此数据报转发到 www.google.com.hk:443。

  7. www.google.com.hk:443 发送加密的tls握手数据报给代理服务器

  8. 代理服务器将加密数据转发给curl而不解密

  9. ...经过多次握手,握手结束,开始发送GET请求

  10. curl 向代理服务器发送 GET 请求,此请求数据报已加密

  11. 代理服务器使用上述套接字将加密后的数据报转发到 www.google.com.hk:443

  12. www.google.com.hk:443 返回加密响应

  13. 代理服务器将响应转发给 curl

  14. curl 解密响应并显示 html

不知道我的理解对不对,尤其是在STEP 3之后,curl收到了200 CONNECTION ESTABLISHED的响应。

我想知道代理服务器在收到200 CONNECTION ESTABLISHED响应后做了什么,代理是否解密了请求数据报?

最佳答案

HTTPS 代理可以连接到任何远程资源。如果它连接到 HTTPS 服务器,它不会看到 200 响应,因为响应是加密的。

一般来说,CONNECT 动词的意思是“建立一个不透明的隧道,并在它准备好时告诉我”。观点。所以服务器通过连接到远程服务器从字面上建立一个隧道,一旦建立连接,代理就会向客户端发送肯定的响应。之后客户端可以向代理发送任何内容,代理将简单地将数据中继到远程服务器,从服务器中挑选数据并将其发送回客户端。

这种方案允许使用 HTTPS 代理连接到任何类型的服务器,而不仅仅是 HTTP/HTTPS。

关于http - 代理服务器在代理https请求时做了什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20390369/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com