Hello Fiddler gang
Found this old post https://stackoverflow.com/questions/43898449/in-fiddler-is-it-possible-to-spoof-the-client-ip-address while trying to find out if there is a way of dynamically directing fiddler to send the requests thru specific IP address (I have a server with multiple IPs).
It suggest using X-EgreesIP so in my fiddler script I added:
oSession["X-EgreesIP"] = "10.10.10.123";
in my InBeforeRequest function but it doesn't seems to have any effect? by running netstat -f it still shows the main IP for establishing the connections to the remote host servers.
The same old post points to another link http://fiddler.wikidot.com/egressip where it mention that it can be configured by command but that means then ALL my requests will go thru that other configured IP, I want to programmatically be able to give a different IP based on the particular request. Is that at all possible?
Thanks!