InsideHTTP

Tuesday, April 24, 2007

New Fiddler Beta (v1.2.3.0) and new Fiddler2 Script Editor

A new beta version of Fiddler is now available. Also, a Fiddler2-compatible version of the FiddlerScript editor is now available.

Please let me know if you encounter any problems with either app.

Fiddler v1.2.3.0
Added FiddlerObject.prompt("PromptQuestion", "DefaultAnswer", "WindowTitle");
Added FiddlerObject.flashWindow() to request user activate Fiddler UI
Added Timer calculations to reporter tab
Added Password-protected archive option (Click the "Save As Type" dropdown on the Save Dialog)
Added GatewayUsername, GatewayPassword string values to registry for version checking through authenticating proxy
Added Timestamp header to FailSession & Timestamps to other error messages
Added "Hide HTTPS CONNECTs" option to Rules menuAdded FiddlerObject.UI.TrimSessionList(iTrimTo);
Added "tail" command to default QuickExec rulesVarious bugfixes

2 Comments:

  • How do I enable the Hide HTTPS CONNECTs feature as a default setting when Fiddler is first enabled? I tried looking for a rule to customize in the Fiddler CustomRules file but I couldn't find anything.

    Paul

    By Anonymous Anonymous, at 3:46 PM  

  • Inside Rules > Customize Rules, you can scroll to OnBeforeRequest and add the following line:

    if (oSession.HTTPMethodIs("CONNECT")){
    oSession["ui-hide"] = "yup";
    }

    Please note: www.fiddler2.com/redir/?id=fiddlerdisc is the best place to get questions like this answered.

    By Blogger Ericlaw, at 3:54 PM  

Post a Comment

<< Home