Telerik Forums
Fiddler Forum
3 answers
2.1K+ views
I know how to do this using the right click menu "Reissue Sequentially" but I'm not sure how to do same thing using fiddler script.

For example I have two or more requests need to be generated in strict order. 

var RequestA="POST xxxxx";
FiddlerObject.utilIssueRequest(RequestA);           

var RequestB="POST xxxxx";
FiddlerObject.utilIssueRequest(RequestB);           

I guess Fiddler will try to submit these requests in order but cannot guarantee that "later requests will be submitted only when earlier requests are finished" due to network lags.

I googled and found something related but I'm not sure if the following can do exactly what I want. 

    var b=false;
    while(!b){
        try{
              FiddlerObject.utilIssueRequest(s);   
              b=true;
        }
      catch   {
      }

Any suggestions?
    

Eric Lawrence
Telerik team
 answered on 26 Mar 2015
7 answers
365 views
Hi Eric,

I've created a chained HTTP/HTTPS proxy with fiddler. The whole system works as following:
proxy1 is deployed at client side. It encrypts the requested host and content, then pass it to proxy2 at server side. proxy2 decrypts the request, pass it to target websites, then encrypts the response and send it back to proxy1.

Everything works fine but for HTTPS. The source code and Wireshark pcap file are as following. Please kindly let me know how to get this work.

Server code

Client code

Pcap file


Regards,
Jack Wang
Eric Lawrence
Telerik team
 answered on 25 Mar 2015
1 answer
229 views
In fiddler toolbar, there is a remove button (X icon).
When we click it, there are submenus:
- Remove All
- Images
- CONNECTs
- etc

My question is, how to add a submenu in this toolbar button.
I want to add submenu "Remove CSSs", when clicked will remove all sessions that requested css files.
Any idea how to achieve this?


thanks
Eric Lawrence
Telerik team
 answered on 24 Mar 2015
4 answers
255 views
I am attempting to create a plugin to allow the WebTest export to enable me to achieve the following:

1. Add the ReportingName to each WebTest request from using a combination of form element values.
2. Replace a value with a WebTest parameter: {{exampleParameter}}

Current issue:
1. I can't seem to retrieve the ReportingName setter from the IFiddlerWebTestPlugin interface?
2. I believe I can do this with current functionality as it's a simple transform from one value to another prior to saving the request.

Any help gratefully received.

I have attached a simple WebTest file with a snippet below (you'll need to convert the .jpeg to a .webtest (or .txt).

WebTest snippet:

  <Items>
    <Request Method="GET" Guid="c2bdeaaa-352c-4835-ad7b-ea7d723cdfa8" Version="1.1" Url="http://www.google.co.uk/" ThinkTime="0" Timeout="300" ParseDependentRequests="True" FollowRedirects="True" RecordResult="True" Cache="False" ResponseTimeGoal="0" Encoding="utf-8" ExpectedHttpStatusCode="0" ExpectedResponseUrl="https://www.google.co.uk/?gws_rd=ssl" ReportingName="Navigate to Google" IgnoreHttpStatusCode="False">
48
Top achievements
Rank 1
 answered on 24 Mar 2015
4 answers
275 views
Not sure whether this is a bug or I'm doing something wrong:

In composer's scratchpad, I have successfully issued a couple of requests to the same host (lets call it host1) with different paths and queries. Now I copy/paste one of those requests and edit it to point to host2 and also slightly change the path. I select this request in scratchpad and click "execute". The request is issued with the right path etc. but still using host1 instead of host2.

Even updating and restarting Fiddler couldn't change this behavior. It's still using host1.

Now what do i do?

Thanks!
Honey
Top achievements
Rank 1
 answered on 23 Mar 2015
1 answer
147 views
I followed these instructions to be able to capture https traffic from my tomcat (7.0.59) server, but with the -Djavax.net.ssl.trustStore and -Djavax.net.ssl.trustStorePassword options, I keep on getting:
Servlet.service() for servlet [dispatcher-tiles] in context with path [] threw exception [Handler processing failed; nested exception is java.lang.OutOfMemoryError: PermGen space] with root cause
java.lang.OutOfMemoryError: PermGen space

in certain situations, removing the two options, and closing Fiddler, makes everything fine again.

Any advice on how to proceed with this issue?

/Pär
Eric Lawrence
Telerik team
 answered on 20 Mar 2015
1 answer
2.0K+ views
Hi,

We are want to use Oracle 10g Express Edition, but after installation this software, IE browser sends message Fiddler Echo Service (display screenshot is in attachment). There are 20 PC's in lab network and Fiddler or any other proxy software not installed.

What's wrong?


Regards,
Daniel

Eric Lawrence
Telerik team
 answered on 20 Mar 2015
5 answers
411 views
After installing Fiddler on the client PC, and enabling capture, websites are not loading and giving error 404.
It works on my own system but not the user I am trying to assist.
What should I check?
Eric Lawrence
Telerik team
 answered on 19 Mar 2015
2 answers
1.2K+ views
Hello,
I was was capturing some traffic from a users environment and see some info which is unclear
under host: "tunnel to" and then under url: xxxx.com:443 
someone told me that means an https connection
but the protocol shows http not https
would this indicate the user's connection is via a corporate proxy or that type of connection or is the connection indeed https - if so why would fiddler show http and not https?
Thanks,
Andy
 
Eric Lawrence
Telerik team
 answered on 17 Mar 2015
1 answer
402 views

My objective is to capture and decrypt all incoming https traffic(specifically just a 2 rest api url end points) to a asp mvc website on an IIS 7.5 webserver.

steps I've completed
1. I've unbinded the website from 443 and moved it to 444.
2. I altered the fiddlercore(4.4.9.8) sample demo to just have a secure listener on port 443 and display the request headers in  a windows form application.
3. I've attached the server's real certificate using Proxy.AssignEndpointCertificate(x509Certificate2). I've confirmed the attached certificate was found by messagebox 

of the thumbprint. here is the code

oSecureEndpoint = FiddlerApplication.CreateProxyEndpoint(iSecureEndpointPort, true, sSecureEndpointHostname);
if (isCertFound) {
oSecureEndpoint.AssignEndpointCertificate(x509Certificate2);
}

4. I've written the logs to a text file and I see : 
a. /Fiddler.CertMaker> Using Fiddler.DefaultCertificateProvider+MakeCertEngine for certificate generation
and
b. !SecureClientPipeDirect failed: System.NotSupportedException The server mode SSL must use a certificate with the associated private key. on pipe to (CN=*.ourdomain.com, OU=Domain Control Validated)


things i don't get
1. how does the fiddlercore app know to send the forward requests to port 444 (of the website). How do i specify this? If I don't specify this, where does it go?
2. What is causing the !secureclientpipdirect failed from 4b above?

Eric Lawrence
Telerik team
 answered on 17 Mar 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?