How can I find out if there is a proxy between myself and the Internet if there are no proxy setting specified in the browser?

Is there an application or a way to tell whether when browsing sites, etc that I am going through a proxy? I have looked at the various settings in my browser e.g. Internet Explorer 8, Firefox 16+, etc an there are no proxy settings defined.


If it's a transparent proxy, you won't be able to detect it on the client PC.


If you have a transparent proxy, IP detection sites will not be able to tell in case there's a proxy sitting in-between.

Instead, you can do the following:

  • Check your external IP using a site like What Is My IP.

  • Run ipconfig /all, if you're connected without a router:

enter image description here

  • Check your router IP, if you're connected through a router:

enter image description here

If your local/router IP does NOT match the IP on the "What Is My IP" site, then you have a proxy in-between.


use a protocol analyzer like wireshark, check to make sure that the IP address being contacted is the same as the DNS address for the site you are trying to reach. you can determine the DNS address using the 'nslookup '. if they are not the same, then your connection is likely being routed through another entity.


There is a very interesting paper: The Security Impact of HTTPS Interception that does an in-dept review of multiple transparent proxy software and profiles them to form a type of signature. Obviously I can't put the full contents of the paper in this answer, but the general idea is to look at supported SSL versions and encryption methods of the major browsers, contrast that with the same details of proxy software. A server can then check the signature of a web request, compare it with the known fingerprints and make an educated guess.

The results of the research has been implemented at https://mitm.watch/

This is purely circumstantial, but I have tested this website on a network that I knew was doing a transparent proxy and it was able to correctly detect it.