From bd56d773bab0a36e7fcd2a61e18a3a627ddaeb6c Mon Sep 17 00:00:00 2001 From: Michael Kaply Date: Thu, 5 Apr 2018 11:55:39 -0500 Subject: [PATCH] Implement Authentication policy --- README.md | 14 +++++++++++++- windows/en-US/firefox.adml | 10 ++++++++++ windows/firefox.admx | 24 ++++++++++++++++++++++++ 3 files changed, 47 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3242d4c..867fb97 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,19 @@ The content of the JSON file should look like this: } ``` Policies are documented below. - +### Authentication +This policy is for configuring sites that support integrated authentication. See https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication for more information. +``` +{ + "policies": { + "Authentication": { + "SPNEGO": ["mydomain.com", "https://myotherdomain.com"], + "Delegated": ["mydomain.com", "https://myotherdomain.com"], + "NTLM": ["mydomain.com", "https://myotherdomain.com"] + } + } +} +``` ### BlockAboutAddons This policy removes access to about:addons. ``` diff --git a/windows/en-US/firefox.adml b/windows/en-US/firefox.adml index d67882d..1738225 100644 --- a/windows/en-US/firefox.adml +++ b/windows/en-US/firefox.adml @@ -7,6 +7,7 @@ Microsoft Windows XP SP2 or later Firefox Permissions + Authentication Bookmarks Popups Cookies @@ -15,6 +16,12 @@ Home page Allow Block + SPNEGO + List of sites that are permitted to engage in SPNEGO authentication with the browser. + Delegated + List of sites for which the browser may delegate user authorization to the server. + NTLM + List of sites trusted to use NTLM authentification. Block About Addons Block access to the Add-ons Mananger (about:addons). Block About Config @@ -101,6 +108,9 @@ If this policy is disabled, tracking protection is disabled and locked in both t If this policy is enabled, private browsing is enabled by default in both the browser and private browsing and you can choose whether or not to prevent the user from changing it. + + + Allow popups for websites Allow add-ons for websites Allow cookies for websites diff --git a/windows/firefox.admx b/windows/firefox.admx index 9ff5205..351fabd 100644 --- a/windows/firefox.admx +++ b/windows/firefox.admx @@ -36,8 +36,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + -- 2.34.1