Skip to content

Instantly share code, notes, and snippets.

@offirpeer
Last active October 6, 2021 21:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save offirpeer/0e13b6303c0b1363aef5d6303179977c to your computer and use it in GitHub Desktop.
Save offirpeer/0e13b6303c0b1363aef5d6303179977c to your computer and use it in GitHub Desktop.
Fiddler Telerik - add "client ip" column
In the top left menu under:
Rules ------> Customize Rules....
And add this line:
FiddlerObject.UI.lvSessions.AddBoundColumn("IP", 100, "x-hostip");
under
var today: Date = new Date();
So it will look like this:
// The Main() function runs everytime your FiddlerScript compiles
static function Main() {
var today: Date = new Date();
FiddlerObject.UI.lvSessions.AddBoundColumn("IP", 100, "x-hostip");
FiddlerObject.StatusText = " CustomRules.js was loaded at: " + today;
}
@offirpeer
Copy link
Author

Just need to add this line:

FiddlerObject.UI.lvSessions.AddBoundColumn("IP", 100, "x-hostip");
but I wrote the all function so I can find it easily.
capture

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