28

The I.T. dept is considering allowing installation and automated deployment of Google Chrome browser to 100+ desktops. One of the requirements is for domain credentials to be passed through. The desired behaviour is the same as Internet Explorer.

An issue has come up when browsing intranet resources. Intranet sites which require Active Directory authentication are showing the "Authentication Required" dialog.

For each site, you have to enter your domain credentials.

Question: Does Google Chrome currently, or plan to, support passthrough Windows authentication? If so, how do you configure this security setting?

Simon East
  • 1,484
  • 1
  • 14
  • 18
p.campbell
  • 4,397
  • 6
  • 40
  • 51
  • The right answer for this has changed over the years. For quite some time now Chrome has been capable of paying attention to the system's native Internet Settings from the control panel and emulate IE's behavior, which is immeasurably more useful than setting a commandline option or GPO setting. See [@Myster's answer](https://serverfault.com/a/278112/906) below. – Tomalak Apr 05 '18 at 09:23

6 Answers6

18

This has been included in the stable release of Chrome 5.x as of May 2010. It works similar to Internet Explorer in that "Intranet" URLs (without dots in the address) will attempt single sign-on if requested by the server.

To enable passthrough for other domains, you need to run Chrome with an extra command line parameter:

chrome.exe --auth-server-whitelist="*example.com,*foobar.com,*baz"

Background

According to the Google Issues list for Chromium, this issue was reported in Sep 2008. The NTLM passthrough feature was apparently given to the Google Summer of Code team. It sounds like it will be worked on in Summer 2009 at the Google Summer of Code.

This is good news, and will hopefully bring some stature to Chrome's image in the enterprise. The intranet is so prevalent, and to adopt a browser is difficult without having this feature.

Simon East
  • 1,484
  • 1
  • 14
  • 18
p.campbell
  • 4,397
  • 6
  • 40
  • 51
7

You configure the NTLM whitelist by launching Chrome with this additional parameter:

chrome.exe --auth-server-whitelist="*example.com,*foobar.com,*baz"

Source:
https://sites.google.com/a/chromium.org/dev/developers/design-documents/http-authentication

charleswj81
  • 2,433
  • 14
  • 18
newslacker
  • 71
  • 1
  • 3
4

Chrome now has passthrough Windows authentication that will work on any host without a domain. If you use domains on all intranet site you'll need to use the --auth-server-whitelist command line option.

Haas
  • 141
  • 2
  • 1
    how does this command line option work? Does the Chrome shortcut need to be modified to include this option, or is this set in the `about:` page or other config page? – p.campbell Mar 11 '11 at 21:00
4

Chrome has been updated (version 5+) has the following:
In windows it integrates with intranet zones setting in 'internet options'

In Windows only, if the command-line switch is not present, the permitted list consists of those servers in the Local Machine or Local Intranet security zone (for example, when the host in the URL includes a "." character it is outside the Local Intranet security zone), which is the behavior present in IE.

If a challenge comes from a server outside of the permitted list, the user will need to enter the username and password.

For other OS's, you can use the command line switch:

--auth-server-whitelist="*example.com,*foobar.com,*baz"

source: https://sites.google.com/a/chromium.org/dev/developers/design-documents/http-authentication

Myster
  • 213
  • 1
  • 8
  • Does that mean that if you add an extra domain to the "Local Intranet Security Zone" in IE that Chrome will also trust it too? – Simon East Jul 24 '15 at 01:23
3

This is not included in Google Chrome; however, you could try running a local proxy service which supports NTLM. This would need to be installed on each desktop and Chrome would need to be configured to utilize the proxy.

NTLM Authorization Proxy Server

Cntlm Authentication Proxy

Doug Luxem
  • 9,592
  • 7
  • 49
  • 80
2

I can't tell you about whether it's planned or not, but it's not there in the current version.

It's based on an open-source browser, Chromium. If you want such a feature you can pay somebody to add it.

Evan Anderson
  • 141,071
  • 19
  • 191
  • 328
  • 1
    Or add it yourself. – user1686 Jun 04 '09 at 18:38
  • 1
    Heh heh... either way, you're paying for it somehow. Your money or your time. *smile* To wax philosophically for a second: This is why I love open source software. You actually have a way to control the features and can create your own destiny. When I've explained open source to people who thought of it like "communism" as "you're free to contract with any qualified party to work on the software" I've often found that attitudes change. – Evan Anderson Jun 04 '09 at 18:53
  • This comment is way out of date now. – Simon East Jul 24 '15 at 00:07
  • @SimonEast - I'm going to assume you're referring to my answer (my 77th, ever), and not my comment re: "communism". re: the answer - That's absolutely true-- as are a *lot* of answers across all the Stack Exchange sites. I'd presume that having a date stamped on my answer makes readers painfully aware that the information is likely out of date. I don't, personally, see it as a productive activity to spend time searching for 6+ year old answers that are already low on vote counts ( as compared to the accepted answer) and downvoting them but if that makes you happy please feel free. – Evan Anderson Jul 24 '15 at 00:53
  • Yes, sorry I was referring to your answer, not your comment. And downvoting obsolete answers is [encouraged](http://meta.stackexchange.com/questions/243570/downvote-on-outdated-answers-desired-or-counterproductive), especially if there are others that should have more visibility. Feel free to delete or improve your answer if you don't want the downvotes. – Simon East Jul 24 '15 at 01:14
  • @SimonEast - I don't see it as productive. If you, or others do, so be it. I don't, personally. – Evan Anderson Jul 24 '15 at 02:59