简体   繁体   中英

Fiddler how to remove HTTPS extensions?

I'm attempting to strip TLS SNI headers. How can I manipulate HTTPS extensions using Fiddlerscript?

Unfortunately, the .NET Framework does not expose the level of granularity you require for the SslStream class (and Windows itself doesn't make it easy either). The only way you can achieve what you're looking for with Fiddler today is to disable TLS1 and offer only Ssl3.

To update your FiddlerScript, click Rules > Customize Rules. Scroll down to the Main() function and add the following line within the function:

CONFIG.oAcceptedServerHTTPSProtocols = System.Security.Authentication.SslProtocols.Ssl3;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM