I use Fiddler to debug HTTP requests for a browser extension, but I found out whenever I start capturing traffic, I would immediately get disconnected from Freenode IRC.
How should I set Fiddler up, so that it can ignore any incoming and outgoing traffic to Freenode IRC, while allowing me to capture other traffics for the browser extension? I'm assuming by ignoring the traffic to and from Freenode, I wouldn't get any disconnections.
If I am wrong, can someone explain why it is happening, and what is the recommended way to prevent this from happening?
Thanks.
Hi,
I'm very new to fiddler and trying to understand how i can use it to identify the authentication being passed/used to login to a website?
The end goal would be to use something like PowerShell to automate logging into a site and perhaps posting a message or downloading a file, but i'm struggling to understand how can capture the details?
I have followed some guides for how to use powershell to login facebook, but this ins't the same for every site. Some allow the creds to be passed in the header, or JSON body, some pass using a form action. So how can i use fiddler to identify which method i need to use?
Hope this makes sense?
Thanks
I have three fiddler instances running one is base instance running on 7777 port and second is viewer running on 8888 and third instance is a viewer running on 9999 port. When i want to clear the sessions from the fiddler i am using Execaction.exe dailydump (code below) to delete the sessions. But on using this i am able to clear the session of last viewer that i have opened and the sessions in second and first instances remains to be uncleared.
So the question is using execaction.exe how can we point to particular instance of fiddler in this scenario second instance that is running as viewer and first instance that is base instance. So how can we point and execute the execaction.exe to particular instance of fiddler.
Please looking for some support and help here.
Dailydump code:
case “dailydump”:
FiddlerObject.UI.actSelectAll();
if(FiddlerObject.UI.lvSessions.SelectedItems.Count > 0){
FiddlerObject.UI.actSaveSessionsToZip(String.Format(“C:\\temp\\{0:yyyy-MM-dd_HHmmss}.saz”,DateTime.UtcNow));
FiddlerObject.UI.actRemoveAllSessions();
}
i somehow can´t reach the objects in a nested json. I easily can reach the element test, but how to reach this_month inside "stats"? this is my json:
{"test":"OK","stats":{"this_month":"1653","this_week":"1653"}}
I want to highlight the URL when the URI contains specific word at the time of loading/importing files (saz/har/etc).
I found note which says we can do this using "OnBeforeResponse" and "OnBeforeRequest" but those are while capturing session.
if (oSession.uriContains("com")) {
oSession["ui-backcolor"] = "blue";
oSession["ui-color"] = "#D3D3D3";
oSession["ui-bold"]="QuickExec";
}
But my case is, when reviewing the already captured session, I want fiddler to highlight specific words in the URI.
Good day everyone. I hope that somebody help me with that question - I want to know how I can to modify request headers and body when I Post some information by https connection.I will be very grateful if you’ll write step by step how to do it.