Hey,
I am conducting some tests on a web app using fiddler. An important test is sending in many of the same request at once.
I am currently using shift+r on a request and sending in 10-50 at once, however fiddler will only send in 10 at once and then sequentially send in the other 40.
Is there a way to send in all 50 at once, or is this just a limit of my network/server.
Regards,
Ben
Hi,
We are trying to use FiddlerCore API with C# for developing automation scripts with Selenium. Everything works perfectly in one of our client machine, whereas when we use the same script in another new machine with little changes (2 GB RAM and Dual core) everything is messed up.
When we start the script, we are calling starting Fiddler by
FiddlerCoreStartupFlags oFCSF = FiddlerCoreStartupFlags.Default;
int iPort = 8877;
Fiddler.FiddlerApplication.Startup(iPort, oFCSF);
Fiddler is started up and holding our application from loading completely. Our AUT needs to mentioned in Exceptions of proxy settings: "Do not use proxy for the addresses beginning with". Since this is getting cleared up after we start Fiddler, our AUT is getting stopped from loading completely and we cannot continue with our testing. Can you please help on this.
Thanks,
C S Harsha
Hi there,
I have two auto responder rule.
1. regex:http://MY_DOMAIN/(.*)
*script:urldecode
static function urldecode(oSession:Session) {
oSession.PathAndQuery = Uri.UnescapeDataString(oSession.PathAndQuery); // url decode
}
2. regex:http://MY_DOMAIN/(.*)
D:\source\design.sts\$1
Can not two rules work together?
I want to pass the local file in response after url decode.
Thanks!
Hi, i'm trying to use Fiddler to test SMTPS communication through a Proxy Tunnel, in the following manner :
- The client exec an Http Connect command in order to establish a tunnel to the destination SMTP server on port 465.
- After the connect succeed, the client starts talking with the server through the created tunnel like a normal SMTPS connection.
This is working successfully if the "decrypt HTTPS traffic" option is disabled.
When the option is enabled and the interception certificate is created, the client - SMTP communication is shut down all of a sudden.
After further analysis, it turned out that the SMTP server actually replies correctly to the proxy with the classic "Service Ready" message, but for an unknown reason the message never reach the client (it seem that Fiddler is not passing it to the Proxy-Client connection). So i am wondering if Fiddler applies some kind of filter to Non-HTTP traffic once the decryption is activated. Is this the case ?
Thank you
I have a rule my fiddlerscript that does the following
if (oSession.utilFindInRequest("mything",false) > 1) {
.SaveResponseBody("c:\\myjson\\" + oSession.SuggestedFilename);
}
It works PERFECTLY well. It saves a the file as TXT, but inside the file it is a JSON, valid JSON. So I use a programm I made in C# that basically reads the files on this folder, and POSTS it to a PHP script I have and this PHP inserts into a mysql database.
But I would like to make Fiddler inject direct into my website. So I tried some workaround like creating a XMLRequest inside my rule in fiddlerscript
fb1 = new ActiveXObject("MSXML2.ServerXMLHTTP.3.0");
[blablabla]
And it works (does create the request)
but my PHP gets the request corrupted (because the json have some # and & and empty stuff etc). The problem is probably with the XMLHTTP3.0.
So I am trying to have my RESPONSEBODY encoded as base64 or something else, and Eric once posted the following for a different user
"nstead, keep the bytes as bytes
// Remove chunking & compression
oS.utilDecodeResponse();
// Get raw bytes
byte[] arrBody = oS.responseBodyBytes;
// Convert to base64
string sBase64 = Convert.ToBase64String(arrBody);"
But I cannot use this line ( byte[] arrBody = oS.responseBodyBytes; ) it does not compile.
also when I base64 encode using
var obytes = System.Text.Encoding.UTF8.GetBytes(oSession.responseBodyBytes);
var base64 = Convert.ToBase64String(obytes);
if I log this base64 var to CONSOLE (Fiddler) and then Decode, it works well (Valid JSON) but if I use once again my XMLHTTPREQUEST it corrupts the JSON.
The problem is with the XMLHTTPREQUEST then, how do I inject a valid JSON from Fiddlerscript to my PHP page? without messing it up because once again, my JSON has symbols like # and a lot of \/ (slashes) that the XMLHTTPREQUEST removes.
Hi All,
I am using a Fiddler Script to rewrite a URL and it was working fine in Fiddler v4.6.20171.9220. Once I upgraded to Fiddler v4.6.20171.14978 the script stopped working. When I verified the parameters response, I saw that oSession.PathAndQuery was not returning correct value. All below properties are returning only the Host information but not the full Url of the Request.
oSession.fullUrl
oSession.PathAndQuery
oSession.url
Can anyone please help if the same issue is noticed and any resolution for the same?
Thanks In Advance.
Hi folks,
some days ago I was debugging an application with fiddler and saw it's request in fiddler, everything was fine.
I was also able to write a simple application which was sending requests to this application and got the expectated answers.
Today, I wanted to debug again to check out some new stuff, sadly I'm no longer receiving any requests in fiddler (btw, the application had an update), but my application is still working, so the web service is still active and running.
I tried different things and settings but fiddler is no longer able to receive the traffic. Afaik, this is no .NET application.
When I'm running "tasklist /m" in console, I get the following output for my application: ntdll.dll, wow64.dll, wow64win.dll, wow64cpu.dll
Anyone, any idea what else I can do/try so that fiddler can receive the requests again?
Greetings
Kai
Hello,
I need to move fiddler from a PC to another, I use fiddler from remote machine,
Not a big deal, I have installed fiddler to the new PC,
But, how can I transfer the certificate to avoid need to reinstall this certificate to all client PC ?
Where is the certificate location ?
Kind regards,
Pascal
v4.6.20171.9220 Built: Wednesday, February 08, 2017 64-bit AMD64, VM: 82.0mb, WS: 114.0mb .NET 4.6.1 WinNT 6.1.7601 SP1
Running on: my-pc-name:8888
Listening to: All Adapters
Gateway: No Gateway
If I use the "show traffic from a process" filter, all traffic is filtered. I see no traffic and if I turn on troubleshooting everything is showing overstrike. If I remove the process filter I see all traffic. In the filters tab "Use Filters" is not checked. I have tried all the troubleshooting suggestions I can find with no luck.
Thanks, John