Posted on 04-27-2022 06:36 AM
Did the latest Chrome (101.0.4951.41) break anything in your environment?
In particular, SSO/SAML?
Solved! Go to Solution.
Posted on 04-28-2022 07:46 AM
Yes google changed some wording for the latest version of chrome so we had to update our scripts.
New commands:
defaults write com.google.Chrome AuthServerAllowlist "https://example.com"
defaults write com.google.Chrome AuthNegotiateDelegateAllowlist "https://example.com"
Old commands: was using AuthServerWhitelist and AuthNegotiateDelegateWhitelist
Posted on 04-28-2022 02:30 AM
Tested SSO and no issues for me, so far.
Posted on 04-28-2022 06:51 AM
No SSO issues with Chrome v101 so far, deployed to production 36 hours ago.
Posted on 04-28-2022 07:46 AM
Yes google changed some wording for the latest version of chrome so we had to update our scripts.
New commands:
defaults write com.google.Chrome AuthServerAllowlist "https://example.com"
defaults write com.google.Chrome AuthNegotiateDelegateAllowlist "https://example.com"
Old commands: was using AuthServerWhitelist and AuthNegotiateDelegateWhitelist
Posted on 06-01-2022 10:57 AM
These two new commands are NOT working for me. Google Chrome 102 version , any idea?
Posted on 06-01-2022 11:22 AM
I created a configuration version for com.google.Chrome to be push with clients that got upgraded with the edit strings I had to do within it. Because the old command had Whitelist vs new (Allowlist). Any version for 101.0.4951.41 or after will need this to be modified and pushed.
<key>AuthNegotiateDelegateAllowlist</key>
<string>*.xxxx.xxx.com,*.xxxx.xxx.com</string>
<key>AuthServerAllowlist</key>
<string>.xxxx.xxx.com,*.xxxx.xxx.com</string>
</dict>
</plist>
Posted on 06-01-2022 02:28 PM
It worked now, just curious to know that, why it is not working if I run the command mentioned by B_Shades? And How to know that Google changed this command?
Posted on 04-28-2022 08:07 AM
@applebravo Looks good so far! How did you find this out?
I updated the preference domain file with those new commands and it's working again.
Posted on 06-01-2022 10:58 AM
Can you please guide me to do it, I need some help here. I have Google Chrome version 102
Posted on 05-14-2022 04:23 PM
This was a good finding, I was able to make the change and it worked like Charm. I appreciate you posting this.