Skip to content

Instantly share code, notes, and snippets.

@kaizimmer
Created January 2, 2012 16:11
Show Gist options
  • Save kaizimmer/1551236 to your computer and use it in GitHub Desktop.
Save kaizimmer/1551236 to your computer and use it in GitHub Desktop.
Fiddler - add "client ip" column
static function Main()
{
var today: Date = new Date();
FiddlerObject.StatusText = " CustomRules.js was loaded at: " + today;
//*/
FiddlerObject.UI.lvSessions.AddBoundColumn("Client IP", 120, "x-clientIP");
//*/
}
@kaizimmer
Copy link
Author

This is part of the Handlers class (located in "user-directory/my documents/Fiddler2/Scripts/CustomRules.js").
You can edit this file directly from within Fiddler2 by installing the RulesTab2 extension (which is part of FiddlerSyntaxSetup.exe).

@nardoo
Copy link

nardoo commented Jun 11, 2015

It is useful, thx

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment