1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# invoker the test https api by tinyproxy
curl -kv https://f.m.suning.com/api/ct.do -x http://192.168.31.111:8989
* Trying 192.168.31.111:8989...
* Connected to 192.168.31.111 (192.168.31.111) port 8989 (#0)
* allocate connect buffer
* Establish HTTP proxy tunnel to f.m.suning.com:443
> CONNECT f.m.suning.com:443 HTTP/1.1
> Host: f.m.suning.com:443
> User-Agent: curl/7.84.0
> Proxy-Connection: Keep-Alive
>
< HTTP/1.0 200 Connection established
< Proxy-agent: tinyproxy/1.8.4
<
* Proxy replied 200 to CONNECT request
* CONNECT phase completed
* ALPN: offers h2
* ALPN: offers http/1.1
* (304) (OUT), TLS handshake, Client hello (1):
* (304) (IN), TLS handshake, Server hello (2):
* TLSv1.2 (IN), TLS handshake, Certificate (11):
* TLSv1.2 (IN), TLS handshake, Server key exchange (12):
* TLSv1.2 (IN), TLS handshake, Server finished (14):
* TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
* TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):
* TLSv1.2 (OUT), TLS handshake, Finished (20):
* TLSv1.2 (IN), TLS change cipher, Change cipher spec (1):
* TLSv1.2 (IN), TLS handshake, Finished (20):
* SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384
* ALPN: server accepted http/1.1
* Server certificate:
* subject: C=CN; ST=\U6C5F\U82CF; L=\U5357\U4EAC; O=\U82CF\U5B81\U6613\U8D2D\U96C6\U56E2\U80A1\U4EFD\U6709\U9650\U516C\U53F8; CN=*.m.suning.com
* start date: Jul 12 01:38:18 2023 GMT
* expire date: Aug 12 01:38:17 2024 GMT
* issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign RSA OV SSL CA 2018
* SSL certificate verify ok.
> GET /api/ct.do HTTP/1.1
> Host: f.m.suning.com
> User-Agent: curl/7.84.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< Server: volc-dcdn
< Content-Type: text/html; charset=UTF-8
< Content-Length: 64
< Connection: keep-alive
< Date: Sun, 21 Jul 2024 06:46:55 GMT
< Set-Cookie: tradeLdc=NJYH;Expires=Sun, 21-Jul-24 18:46:55 GMT
< Cache-Control: max-age=0
< via: n122-228-029-087.bdcdn-zjwzct03.ToB
< x-request-ip: 115.197.173.129
< x-tt-trace-tag: id=5
< x-dsa-trace-id: 172154441599319f2b1b83bfde3c748f03b1c926a4
< X-Dsa-Origin-Status: 200
< server-timing: cdn-cache;desc=MISS, origin;dur=17, edge;dur=0
<
{"api":"time","code":"1","currentTime": 1721544415478,"msg":""}
* Connection #0 to host 192.168.31.111 left intact
|