Display IP method in Fiddler

How to view the requested IP address in fiddler, as shown in the figure

Insert picture description here

Open fiddler, shortcut key Ctrl+R or menu ->Rules->Customize Rules, then search for the string Ctrl+F in the CustomRules.js file: static function Main(), then add a line of code to display the IP, the code is as follows:

FiddlerObject.UI.lvSessions.AddBoundColumn("ServerIP",120,"X-HostIP");

Insert picture description here

Save and close. Restart fiddler

Guess you like

Origin blog.csdn.net/weixin_42760923/article/details/109194702