It would be really great if you could export the request inspector to a cURL request where a user can repeat the request or send the cURL string to others for testing. PostMan provides a code pull-down menu that allows the user to export the http request to a variety of formats like a c# (restSharp), cURL, Python, etc.
I realize it may be too much to expect all of the exports that PostMan supports. However, cURL is the one that I needed the most in all my years of using Fiddler. Frequently we need to send the original or modified request in the inspector to a colleague to try.
Hi,
I've got W2012R2 with WPF app. This WPF app makes wrong HTTP call to a WCF service. However, when I run Fiddler on this local machine, I see no packets from this app. Moreover, Fiddler doesn't show this WPF app in available processes for intercepting. How can I make Fiddler intercept all HTTP traffic from a WPF app?
Hi,
I am using fiddlercore to analyze network traffic. Now I want to store the session recorded in a HAR file and load it later from the HAR file itself.
I am able to save the session in a SAZ file and load the same session later from SAZ file.
So, is there a way to convert SAZ file to HAR file.
OR
Store all session as HAR file.
And, load the session recorded from HAR file.
Thanks in advance !!
Regards,
Kallol Ghose
Hi,
I am using FiddlerCore to perform the below functions in order
- Running fiddler core and storing the sessions in a SAZ file
- Uploading the SAZ file and load sessions
- Using autoresponder to respond to a session from the loaded session(if it exists)
I am using the following code to auto-respond
foreach (Session loadedSession in loadSessions)
{
if (loadedSession.fullUrl.Equals(oS.fullUrl))
{
Console.WriteLine("Session Available in Loaded Session");
oS.utilCreateResponseAndBypassServer();
oS.requestBodyBytes = loadedSession.responseBodyBytes;
oS.oResponse.headers = loadedSession.oResponse.headers;
break;
}
}
Where loadSessions are loaded from SAZ file
But I am not getting receiving any response if i open the pages for which the session have been loaded.
What am I doing wrong and what should be the correct approach.
Thanks in advance !!!!
Whenever I surf into example.com/*/* (as in 1 folder deep), I want the referer to be bla.com instead of the real referer.
Can you assist in how to create such a rule?
Thanks!
I am using PKI for my web application. From the browser i am able to select the client certificate and website is working fine. I want to debug our website through Fiddler. But through fiddler i am unable to send the client certificate to server. I modified fillder's CustomeRules.js file as below.
static function OnBeforeRequest(oSession: Session)
{
oSession["https-Client-Certificate"] = "E:\\Cer\\AuthCer.cer";
//Other Code....
}
But still no change. I am getting below error in chrome
This site can’t be reached.
Please help me to solve this issue
Hi,
I have big issue with fiddler in Windows Server 2012 and IE 11.
When I run fiddler, it offers me WinConfig option to click from top left corner but it throws errors:
Unable to use
NetIsoEnumAppContainers to get AppContainer list.
ErrorCode: 0x0
Attempting manual
registry crawl; some information will be unavailable.
I am receiving error: Failed to get AppContainer info as WinConfig action.
My Windows Firewall Service in services.msc is started and windows firewalls for domain, public and private network are off.
I read that for someone starting the Windows Firewall Service resolved the issue but it is already started on my server.
I read on internet:
https://blogs.msdn.microsoft.com/fiddler/2011/12/10/revisiting-fiddler-and-win8-immersive-applications/
https://mymemorysucks.wordpress.com/2013/11/12/issues-with-fiddler-on-windows-8-1-and-ie-11/
https://blogs.msdn.microsoft.com/fiddler/2011/12/10/revisiting-fiddler-and-win8-immersive-applications/
What else should I do how to resolve it?
Thanks
Hello.
I would like to understand the meaning of the statistics tab.
It is clear to me what is the request count, Bytes and Bytes received, but are the bytes from the sent/received from my ? Or does it refer to all the bytes generated after the request left my ?
Request Count: 1
Bytes Sent: 182 (headers:182; body:0)
Bytes Received: 183 (headers:183; body:0)
Tunnel Sent: 841
Tunnel Received: 5.880
What means the yellow highlight color on the Fiddler2?
All this calls are for images and those 2 in yellow are not presented on Internet Explorer 11 (but ok on Chrome, Firefox and Edge).
Searching the Fiddler's documentation
"The default text coloring of the Session entries derives from the HTTP Status (red for errors, yellow for authentication demands)"
This says text coloring so I don't know if it is the same 'yellow', because there is no problem in authentication...
Hi,
Is there any API in JAVA to handle the Fiddler operations using a java program. I have found that there are utility using .NET can the same be achieved using a JAVA program.
Thanks in advance !!!