Hi, I am behind a proxy and all the packets that I send have my proxy: 192.168.1.5 as a destination, I do not know how to see their actual destination (destination's IP). Thanks a lot for your help asked 02 Feb '11, 10:37 intuition_man |
One Answer:
On the client side you can't see the IP address that the proxy will connect to. However, you can extract the dns name it will connect to in the Host: header of the HTTP request. You can then do the name resolving yourself, but this is no 100% guarantee that the Proxy uses the same address. This is because it:
answered 02 Feb '11, 10:42 SYN-bit ♦♦ |