Greetings,
I'm banging my head against a wall here and would like to see if anyone here can provide any insight.
I've added this to my web.config:
<
system.net
><
br
> <
defaultProxy
enabled
=
"true"
><
br
> <
proxy
proxyaddress
=
"http://127.0.0.1:8888"
bypassonlocal
=
"False"
/><
br
> </
defaultProxy
><
br
></
system.net
>
I'm capturing non HTTPS traffic. Great.
All my HTTPS traffic comes through as "Tunnel To", yes, I have "Decrypt SSL" selected and the root certificate trusted.
I've put this into my protocols: <client>;ssl3;tls1.0;tls1.1;tls1.2
When I make a call, to get this error in the fiddler logs. "The client and server cannot communicate, because they do not possess a common algorithm for pipe".
This works outside of Fiddler, so Fiddler is having some sort of issue handshaking.
I ran a scan on the the first endpoint that errored out on in the logs (It can't handshake with any https endpoint):
SSLv2 not offered (OK)
SSLv3 not offered (OK)
TLS 1 offered
TLS 1.1 offered
TLS 1.2 offered (OK)
I then did some research and added this to my script:
if (oSession.HTTPMethodIs("CONNECT") && oSession.HostnameIs("dev-wsv-OMITTED.OMITTED.ad"))<
br
> { <
br
> oSession["x-OverrideSslProtocols"] = "tls1.0";<
br
> }
This had no impact.
So the $64,000 question is, why can't Fiddler handshake with any endpoints when the server can? Any advice or input would be great!
Thanks!
Hello guys,
I'm facing with decoding in Fiddler. As you can see on the picture, this request cannot be decoded and I don't know why. Anyone has an idea how to manage with that?
Hey guys hope to get this problem resolved, been having it a while now. Ok im just not able to capture any https traffic when using firefox. Everytime i go to a https page i get a error when fiddler is capturing traffic.
I attached the screen shot of the error i get from firefox, also a screen shot of my https options inside of fiddler. Also im using firefox 48.0, and my fiddler version is this => Telerik Fiddler Web Debugger (v4.6.2.32002) Built: Tuesday, July 26, 2016
Hope to hear back from you guys thanks.
I am trying to replace Coldfusion generated file with my saved response.
When I replace the CFM document with the one form my drive by using the autoresponder, I get this:
Resource interpreted as Document but transferred with MIME type application/octet-stream
.. and than Chrome tries to download and save the file.
Any ideas? I've tried to make Chrome th edefault program to open this kind of file, but it didn't help.
Hi,
Using Fiddler last version over Windows Server 2012 R2
I started fiddler to debug some things and closed it, know all applications try to connect to tcp 8888 for web requests, but fiddler process has exited.
a restart or an uninstall doesn't fix this problem.
Where is this information saved so that Browsers (proxy settings are already blank) and Apps try to use fiddler's proxy? how can I clear it?
Many thanks.
My fiddler has stopped working. Is there a new file or anything I can do to fix the problem?
Hey,
I'm quite new with Fiddler and want to test what I can use it for.
I would like to configure my Proxy with an UI within Fiddler without the need to click myself through the Fiddler Options.
I already wrote a Fiddler plugin, but I can't find any method to change the Proxy Configuration through scripting.
Does anyone have an approach to solve my issue?
Thank you very much in advance !
I'm trying to decompress post body name and value pairs that are being sent by my android handset in a gzip format. I'm fairly new to this product so any help would be appreciated.