这可能以前曾被问过,但我找不到相关信息,这是我第一次碰巧 . 尝试从ASP.NET Web应用程序捕获/解密流量 . 相应地修改了Web.config以指向Fiddler作为代理:

<system.net>
   <defaultProxy enabled = "true" useDefaultCredentials = "true">
      <proxy autoDetect="False" bypassonlocal="False" proxyaddress="http://127.0.0.1:8888" usesystemdefault="False" />
   </defaultProxy>
</system.net>

这之前已经工作了很多次,但这次Fiddler无法解密HTTPS流量,得到这个:

HTTP/1.1 200 Connection Established
FiddlerGateway: Direct
StartTime: 08:10:40.453
Connection: close
EndTime: 08:10:40.547
ClientToServerBytes: 432
ServerToClientBytes: 3286

This is a CONNECT tunnel, through which encrypted HTTPS traffic flows.
Fiddler's HTTPS Decryption feature is enabled, but this specific tunnel was configured not to be decrypted. Settings can be found inside Tools > Fiddler Options > HTTPS.

A SSLv3-compatible ServerHello handshake was found. Fiddler extracted the parameters below.

Version: 3.1 (TLS/1.0)
SessionID:      54 87 1E 5C 03 C7 16 81 E6 25 E8 8F 48 C0 42 52 23 B6 5B 04 4F 4D 69 67 11 F2 9E 09 D0 27 77 2D
Random:         54 87 1F 00 0D 37 FF 22 3E 6A 10 BF 4D 4F 67 ED C2 D2 97 A9 66 B2 CF 56 0D 8C 7C E5 6B 2E 2E A1
Cipher:         TLS_RSA_AES_128_SHA [0x002F]
CompressionSuite:       NO_COMPRESSION [0x00]
Extensions:
renegotiation_info      00

知道这里发生了什么,以及如何让Fiddler解密流量?