How do I know what proxy server I'm using?

188

127

I need to know what the address for my proxy server is so I can configure another program to also use it. If I go into IE, Internet Properties, LAN Settings, then all I see is an automatic configuration script but not the actual proxy address. How can I get this?

I'm using Windows XP.

Mike Christensen

Posted 2011-10-14T01:12:32.417

Reputation: 3 299

This question may also be useful: http://serverfault.com/questions/696020/retrieve-internet-proxy-server-address-via-powershell

– Hugo Ideler – 2016-09-13T11:29:13.267

Answers

199

The auto proxy detection system works by downloading a file called wpad.dat from the host wpad. First confirm this host exists from a command prompt:

ping wpad

If it doesn't exist, you may have to put the correct DNS suffix. In the same command prompt, type

ipconfig /all

You should see a Primary DNS Suffix and a DNS Suffix Search List

Try appending each of these with a . to wpad:

ping wpad.<primary dns suffix>

If any of these work, then in your browser enter http://wpad.<suffix>/wpad.dat. This will download the proxy auto configuration file you can open in notepad.exe

Toward the bottom of this file, you should see a line saying

PROXY <host:port>;

It might be repeated if you have multiple proxies available. The host and port are what you need.

If this file doesn't exist, then either there is no proxy server, or the proxy server is being provided by dhcp (note that this would only work with IE, so if firefox can surf, this is not the method being used). If you don't have access to the dhcp server to see what it is sending, the easiest way would be to open a site in ie, then go to a command prompt. Type

netstat -ban

This will provide a list of connections made with the process id of each process. Go to Task Manager, and select View/Select Columns and enable PID (Process Identifier). Look for the PID of iexplore.exe in the list returned by netstat -ban This will reveal the proxy ip and port.

Paul

Posted 2011-10-14T01:12:32.417

Reputation: 52 173

1Instead of wpad.dat, my proxy configuration apparently uses a "proxy.pac" file that appears in the "use automatic configuration script" section of the LAN settings. This is a script which determines a proxy server to use. – Ben – 2015-06-15T17:59:03.317

1@Ben Hi Ben, that is right, this answer focuses on auto detection, rather than auto configuration. You are welcome to enhance the answer. – Paul – 2015-06-15T21:31:47.097

1Did not work for me on Windows 10 – Janac Meena – 2018-07-24T14:18:58.153

I tried in both IE and Firefox, neither could find that site. – Mike Christensen – 2011-10-14T01:23:56.907

I updated my answer with some more detail... – Paul – 2011-10-14T02:46:13.930

It probably works on some systems, but there's no host called "wpad" here (with or without the DNS suffix). I think this might be configured through some sort of domain policy or logon script, since it's greyed out in IE and cannot be changed. Anyway, I ended up writing a little C# program to get it instead. Hopefully your answer will help someone though! – Mike Christensen – 2011-10-14T15:04:55.047

3To download the automatic configuration script I find it is easier to just copy and paste the link to the script into the address bar (YMMV)… – mousio – 2011-10-17T21:30:33.720

Yeah good point - I read the OP as using "automatically detect proxy settings", but on a re-read, it looks like you are right, he could just copy and paste the url... it explains why wpad didn't work. – Paul – 2011-10-17T22:24:56.470

1Yea the problem with that is the domain policy prevents that from being changed, and IE disables the box for the URL. It won't let you copy it or see the entire thing heh. – Mike Christensen – 2011-10-30T19:03:07.813

82

It's not working on new version of Chrome . Please STOP using this.

i have one more easy way to find it. Install chrome and go to below URL to see the proxy details

 chrome://net-internals/#proxy

You will be able to see all the details

Nimble Fungus

Posted 2011-10-14T01:12:32.417

Reputation: 929

1This has a lot more information! Thanks for sharing. – Shiyaz – 2017-04-26T09:52:50.710

1This method is very useful when you work with VPN but want to know your network proxy protocol type IP and port.Thanks. – zionpi – 2017-06-24T14:14:16.847

so simple and so powerful :) – DerVO – 2017-07-11T18:42:33.440

Simple and useful – Prem – 2018-03-01T05:30:54.000

10Unfortunately, this no longer works; it appears Google has removed the functionality. (I'm on version 73 of Chrome, but I don't know when it was removed -- this isn't something I use every day.) – David – 2019-04-03T16:35:10.633

4For me, this screen in Chrome is almost totally blank. – UuDdLrLrSs – 2019-05-07T12:08:56.527

63

Try the following command in cmd:

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" | find /i "proxyserver"

Hope helps

Lelouchzqy

Posted 2011-10-14T01:12:32.417

Reputation: 731

15In my case, I had to find "AutoConfigURL" instead of "proxyserver". This led me to a *.pac file which I could read through to find the default proxy returned by the script. – Ben – 2015-06-15T17:57:28.217

For me, this was the only answer that showed me my actual proxy address. The others tended to show me where to find a script, which I would have to hand-parse to understand which rules applied to me. – Duncan Jones – 2018-04-18T10:55:26.530

28

The following command also seems to work. As a bonus it avoids contacting lots of DNS servers that might or might not work, and it avoids querying the registry, so it functions even in fairly locked-down environments:

Windows Vista or later:

netsh winhttp show proxy

Windows XP or earlier:

netsh diag connect ieproxy

Some additional work is required to extract the proxy address from the output, so the registry approach is simpler if you know it's going to be available.

Update:

I've found that on windows 7 netsh sometimes returns different results depending on how I call it. If I run the above command manually in a prompt, I get 'Direct Access - No Proxy'. However, calling netsh from SAS results in an actual proxy being listed!

user3490

Posted 2011-10-14T01:12:32.417

Reputation: 484

4sais: Direct access <no proxy server>. but i definetly am behind a proxy .. only shows WinHTTP Proxys – philx_x – 2015-03-20T13:11:29.853

The question is tagged [windows] - are you in a windows environment with a non-WinHTTP proxy? – user3490 – 2015-03-20T13:35:00.123

This is weird - depending on how I call netsh I seem to get any of 3 different answers, all on the same machine... – user3490 – 2015-03-20T13:51:21.600

y sorry i forgot to mention. i am indeed on a windows machine. – philx_x – 2015-03-20T14:07:40.250

6I'm seeing the "Direct Access" line also. What did you mean by "calling netsh rom SAS"? – Ben – 2015-06-15T17:36:40.477

1netsh winhttp show proxy shows system proxy settings (Default user). A user may have different settings. – xmedeko – 2015-12-08T09:19:45.040

7I'm definitely behind a proxy and when I call netsh command I get: "Direct access (no proxy server).". What is SAS? – iaforek – 2016-10-18T21:37:42.637

"I think this only applies to application that uses the WinHTTP library. After a quick test, it doesn't seem like any common application on my system uses that." - https://superuser.com/questions/419696/in-windows-7-how-to-change-proxy-settings-from-command-line/419797#comment550414_419797

– Andrew – 2017-08-07T18:49:53.767

2What do you mean by "SAS"? – Drew Chapin – 2018-09-07T18:51:32.077

This is the only solution that worked for me as of this date – MickyD – 2019-04-30T04:54:06.570

What is "SAS" ? – UuDdLrLrSs – 2019-07-17T16:57:10.043

ockquote>

SAS (previously "Statistical Analysis System")[1] is a statistical software suite developed by SAS Institute...

per https://en.wikipedia.org/wiki/SAS_(software)

Basically a different application than cmd.exe... therefore can have different proxy configuration than seen in cmd.exe. That's all I know about SAS so I hope that helps :-).

– Zephan Schroeder – 2019-11-01T20:08:11.633

20

You can also get the automatic configuration file URL from the registry by running:

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Wpad" /s | find /i "WpadDetectedURL"

mxfh

Posted 2011-10-14T01:12:32.417

Reputation: 311

This returns empty string for me WpadDetectedUrl REG_SZ – Mache – 2019-11-13T10:53:48.527

10

If you are using an auto-detect proxy settings then do in the address bar of you browser (no matter which one you have installed)

http://wpad/wpad.dat

Then you will get a javascript file describing which proxy server is used according to what are you trying to visit on the network...

ΦXocę 웃 Пepeúpa ツ

Posted 2011-10-14T01:12:32.417

Reputation: 203

Although the url didn't work, +1 for linking to the Microsoft documentation – GoGoris – 2017-07-10T11:00:07.403

8

use the below website to get your proxy : http://www.whatismyproxy.com/

Guru

Posted 2011-10-14T01:12:32.417

Reputation: 189

1This solution identified for me that my seemingly direct access to the web was actually being routed through a McAfee web gateway – Breandán Dalton – 2017-03-23T12:52:31.713

3

I have created a simple WinProxyViewer.exe to show Windows proxy settings. It's purpose is that a common user is able to run it and send the output to the admin (tech. support, etc.).

xmedeko

Posted 2011-10-14T01:12:32.417

Reputation: 131

2

To learn lots and lots about your current internet connection and set-up, including the proxy server you are using at the moment, go to the following address in Chrome:

chrome://net-internals/

You'll see a column on the left-hand side of the page which gives you a list of different types of information you can request, among them "proxy."

NOTE: it's perfectly possible to add the "chrome:" URI scheme to windows, so that you can get this information by going to "chrome://net-internals/" from ANY browser, not just chrome. But since the handler for this URI scheme needs to be chrome, you need to have chrome installed in any case. Adding the URI scheme "chrome" to your registry is therefore only really useful if you use a different browser and want to avoid the clicks/typing required to first bring up chrome (and thence to go to chrome://net-internals/)

Scott Petrack

Posted 2011-10-14T01:12:32.417

Reputation: 139

1

This is the same as https://superuser.com/a/1163035/268750 , which no longer seems to work anyway.

– UuDdLrLrSs – 2019-07-17T16:57:56.717

1

Not a perfect solution but worked for me when needed quick lookup in corporate network. NetStat in cmd lists current connections. IP with port 8080 or 9090 is most likely the proxy.

JoyT

Posted 2011-10-14T01:12:32.417

Reputation: 11

0

Put the script path into an ie window and it will either download or open the wpad script - if it downloads it, use notepad to view as it is text based.

WPAD is a logic driven file to sent internet requests to different proxies or direct to the internet depending on a number of factors such as source, destination, IP or url (even parts of the dns name). In some cases it could be quite hard to read depending on how complex the file is - I've seen some beauties, but it is fairly intuitive.

Chris

Posted 2011-10-14T01:12:32.417

Reputation: 1

0

Non of the above hints worked for me (working in a big company using Windows 7 Enterprise, "completely closed" for endusers).

I finally found this little Java program, which worked fine for me: https://stackoverflow.com/questions/4933677/detecting-windows-ie-proxy-setting-using-java

Peti

Posted 2011-10-14T01:12:32.417

Reputation: 101