Questions tagged [fiddlercore]

FiddlerCore allows you to integrate HTTP/HTTPS traffic viewing and modification capabilities into your .NET application, without any of the Fiddler UI

152 questions
1
vote
2 answers

Using custom certificate in FiddlerCore

This is the process I followed :-` var certX = Fiddler.CertMaker.oCertProvider.GetCertificateForHost(""); File.WriteAllBytes(@"D:\PFX.pfx", certX.Export(X509ContentType.SerializedCert)); Once done with this. I restarted the Demo…
KillerTheLord
  • 167
  • 3
  • 9
1
vote
0 answers

Not able to open HTTPS site (eg: google,facebook) on Startup of Fiddler (FiddlerCore) in C#

I know this question has been asked earlier but no proper answer has been given. I downloaded the Windows application with code from http://weblog.west-wind.com/posts/2014/Jul/29/Using-FiddlerCore-to-capture-HTTP-Requests-with-NET which is a simple…
Muzammil Ansari
  • 143
  • 1
  • 12
1
vote
1 answer

FiddlerCore C# HTTPS events not firing

Right I have the following code: public partial class Form1 : Form { delegate void UpdateUI(); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { if…
Mrk Fldig
  • 3,550
  • 5
  • 25
  • 54
1
vote
0 answers

How can I wrap fiddlercore with another proxy (in Qt)

I'm working with Qt webkit and fiddlercore. Generally I'm making a web-browser. I exposed fiddlercore as a COM for Qt to access. My program reads http response contents with fiddler.I know Qt can handle similar things with QNetworkAccessManager but…
user3819226
  • 329
  • 1
  • 3
  • 14
1
vote
0 answers

Capture Lightstreamer HTTP Data using Fiddler?

I am using Fiddler to catch updates sent to a page via LightStreamer. I am creating a FiddlerCore proxy and connecting a Selenium ChromeDriver instance to it. My automation navigates Chrome to the page, and data comes through the proxy. Once…
janderson
  • 843
  • 4
  • 13
  • 26
1
vote
1 answer

Specify IP End Point in FiddlerCore

I'm using FiddlerCore on a server with multiple network cards/IP's. How can I specify which IP End Point FiddlerCore should use? I'm looking for an interface similar to BindIPEndPointDelegate, as shown in Sending HttpWebRequest through a specific…
Peter
  • 9,445
  • 6
  • 55
  • 103
1
vote
0 answers

Can I watch URL request/response on my android app

I'm developing an android web browser-ish app. I need to watch (or filter) every request/response when user browsing internet through it. Under windows I can use fiddlercore to do so. I think NSURL protocol should work on iOS. Is there a way to do…
user3819226
  • 329
  • 1
  • 3
  • 14
1
vote
0 answers

Python HTTP Request Capture/Modify

I need to replace the SWF file that some web page loads in my browser with a local one, for which i need to capture the http request and edit the route. I can do this manually with Fiddler, but i need to automatize the process. There exists an API…
Nico
  • 53
  • 5
1
vote
1 answer

Listen to a specific application using C# and FiddlerCore

I'am trying to integrate C# Web Browser control and Fiddler Core. I wan't to do this by letting Fiddler Core to listen to the Web Browser control without affecting any internet explorer or other internet browsers. The diagram below should show what…
arvstracthoughts
  • 660
  • 1
  • 7
  • 21
1
vote
1 answer

Programatically adding an application to Windows 8 Loopback exceptions

I am finding myself out of my depth when trying to programatically add a Windows 8 'Metro' application to the Loopback exceptions list using the code provided by Microsoft below: // Call this API to enumerate all of the AppContainers on the system…
1
vote
1 answer

Fiddler settings in fiddlercore

How do i enable the highlighted Fiddler option in FiddlerCore? Use PAC Script http://i.stack.imgur.com/QzvrH.png I've looked through all the docs and have browsed through all available settings presented by Fiddler.CONFIG and FiddlerCoreStartupFlags…
1
vote
1 answer

Capture raw HTTPS request and response with FiddlerCore

I have task crate tracer which will store raw HTTP traffic with headers and body between localhost and SOAP API. I found that good solution for that is FiddlerCore. Application work only with HTTPS. Currently I got only my request. But want to see…
korvinko
  • 650
  • 3
  • 10
  • 22
1
vote
1 answer

Fiddler(core) - modify built-in pac script

I noticed today that Fiddler has the ability to deliver a PAC file rather than setting its self up as a system-wide proxy. For example if you set your autoconfig URL in Internet Explorer to http://localhost:8888/proxy.pac fiddler delivers the…
1
vote
1 answer

Fiddler (FiddlerCore) response work slow when inserting script

I try to create proxy server with fiddlercore and when i use event BeforeResponse code work very slow. What i'm attempt to do is to insert script at the top of the current browsed page. Why is below code so slow is it need to be inserted some kind…
tonni
  • 1,155
  • 3
  • 16
  • 34
1
vote
1 answer

FiddlerCore and ContetType

I have this array public static string[] BINARY_OPTIONS = { "script", "image", "stylesheet", "object", "xmlhttprequest", "object-subrequest", "subdocument", "document", …
clzola
  • 1,513
  • 2
  • 23
  • 36