From: Michael Kaply <345868+mkaply@users.noreply.github.com> Date: Fri, 25 Apr 2025 19:09:14 +0000 (-0400) Subject: Merge pull request #1212 from cpeterso/patch-1 X-Git-Tag: v6.10~6 X-Git-Url: https://git.p6c8.net/policy-templates.git/commitdiff_plain/b0a6fa211c4feaf0794f9e037514289e9e8b4019?hp=77af2e932dcdfd4198b73c44b3189475d0796c38 Merge pull request #1212 from cpeterso/patch-1 Document the `SkipTermsOfUse` policy --- diff --git a/docs/index.md b/docs/index.md index 5c9e486..1ffecb1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1777,26 +1777,29 @@ Value (string): Disable specific cryptographic ciphers, listed below. ``` -TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 -TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 -TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 -TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 -TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 -TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 -TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA -TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA -TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA -TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA TLS_DHE_RSA_WITH_AES_128_CBC_SHA TLS_DHE_RSA_WITH_AES_256_CBC_SHA -TLS_RSA_WITH_AES_128_GCM_SHA256 -TLS_RSA_WITH_AES_256_GCM_SHA384 TLS_RSA_WITH_AES_128_CBC_SHA TLS_RSA_WITH_AES_256_CBC_SHA +TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 +TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 +TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA +TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA TLS_RSA_WITH_3DES_EDE_CBC_SHA +TLS_RSA_WITH_AES_128_GCM_SHA256 (Firefox 78) +TLS_RSA_WITH_AES_256_GCM_SHA384 (Firefox 78) +TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 (Firefox 97 and Firefox ESR 91.6) +TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 (Firefox 97 and Firefox ESR 91.6) +TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 (Firefox 97 and Firefox ESR 91.6) +TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Firefox 97 and Firefox ESR 91.6) +TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA (Firefox 97 and Firefox ESR 91.6) +TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA (Firefox 97 and Firefox ESR 91.6) +TLS_CHACHA20_POLY1305_SHA256 (Firefox 138, Firefox ESR 128.10) +TLS_AES_128_GCM_SHA256 (Firefox 138, Firefox ESR 128.10) +TLS_AES_256_GCM_SHA384 (Firefox 138, Firefox ESR 128.10) ``` -**Preferences Affected:** `security.ssl3.ecdhe_rsa_aes_128_gcm_sha256`, `security.ssl3.ecdhe_ecdsa_aes_128_gcm_sha256`, `security.ssl3.ecdhe_ecdsa_chacha20_poly1305_sha256`, `security.ssl3.ecdhe_rsa_chacha20_poly1305_sha256`, `security.ssl3.ecdhe_ecdsa_aes_256_gcm_sha384`, `security.ssl3.ecdhe_rsa_aes_256_gcm_sha384`, `security.ssl3.ecdhe_rsa_aes_128_sha`, `security.ssl3.ecdhe_ecdsa_aes_128_sha`, `security.ssl3.ecdhe_rsa_aes_256_sha`, `security.ssl3.ecdhe_ecdsa_aes_256_sha`, `security.ssl3.dhe_rsa_aes_128_sha`, `security.ssl3.dhe_rsa_aes_256_sha`, `security.ssl3.rsa_aes_128_gcm_sha256`, `security.ssl3.rsa_aes_256_gcm_sha384`, `security.ssl3.rsa_aes_128_sha`, `security.ssl3.rsa_aes_256_sha`, `security.ssl3.deprecated.rsa_des_ede3_sha` +**Preferences Affected:** `security.ssl3.ecdhe_rsa_aes_128_gcm_sha256`, `security.ssl3.ecdhe_ecdsa_aes_128_gcm_sha256`, `security.ssl3.ecdhe_ecdsa_chacha20_poly1305_sha256`, `security.ssl3.ecdhe_rsa_chacha20_poly1305_sha256`, `security.ssl3.ecdhe_ecdsa_aes_256_gcm_sha384`, `security.ssl3.ecdhe_rsa_aes_256_gcm_sha384`, `security.ssl3.ecdhe_rsa_aes_128_sha`, `security.ssl3.ecdhe_ecdsa_aes_128_sha`, `security.ssl3.ecdhe_rsa_aes_256_sha`, `security.ssl3.ecdhe_ecdsa_aes_256_sha`, `security.ssl3.dhe_rsa_aes_128_sha`, `security.ssl3.dhe_rsa_aes_256_sha`, `security.ssl3.rsa_aes_128_gcm_sha256`, `security.ssl3.rsa_aes_256_gcm_sha384`, `security.ssl3.rsa_aes_128_sha`, `security.ssl3.rsa_aes_256_sha`, `security.ssl3.deprecated.rsa_des_ede3_sha`, `security.tls13.chacha20_poly1305_sha256`, `security.tls13.aes_128_gcm_sha256`, `security.tls13.aes_256_gcm_sha384` --- **Note:** @@ -1804,7 +1807,7 @@ TLS_RSA_WITH_3DES_EDE_CBC_SHA This policy was updated in Firefox 78 to allow enabling ciphers as well. Setting the value to true disables the cipher, setting the value to false enables the cipher. Previously setting the value to true or false disabled the cipher. --- -**Compatibility:** Firefox 76, Firefox ESR 68.8 (TLS_RSA_WITH_AES_128_GCM_SHA256 and TLS_RSA_WITH_AES_256_GCM_SHA384 were added in Firefox 78, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA38, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, and TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 were added in Firefox 97 and Firefox 91.6)\ +**Compatibility:** Firefox 76, Firefox ESR 68.8\ **CCK2 Equivalent:** N/A\ **Preferences Affected:** N/A @@ -6877,6 +6880,8 @@ Prevent Firefox from messaging the user in certain situations. `FirefoxLabs` If false, don't show the "Firefox Labs" section in Preferences. (Firefox 130.0.1) +Note: Firefox Labs is now controlled by Nimbus, our testing platform, so disabling telemetry also disables Firefox Labs. + `Locked` prevents the user from changing user messaging preferences. **Compatibility:** Firefox 75, Firefox ESR 68.7\ diff --git a/windows/de-DE/firefox.adml b/windows/de-DE/firefox.adml index 29d49d5..d0fe6a1 100644 --- a/windows/de-DE/firefox.adml +++ b/windows/de-DE/firefox.adml @@ -77,6 +77,7 @@ Firefox 131 oder höher, Firefox 128.3 ESR oder höhe Firefox 137 oder höher Firefox 138 oder höher + Firefox 138 oder höher, Firefox 128.10 ESR oder höhe Firefox Berechtigungen Kamera @@ -105,9 +106,9 @@ Sicherheitsmodule Firefox Suggest (nur USA) Verhinderung von Datenverlust (DLP) - Interception Points - Clipboard - Drag And Drop + Abfangpunkte + Zwischenablage + Drag-and-Drop Erlaubte Seiten Erlaubte Seiten (Session Only) Gesperrte Seiten @@ -900,6 +901,9 @@ Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, können TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 + TLS_CHACHA20_POLY1305_SHA256 + TLS_AES_128_GCM_SHA256 + TLS_AES_256_GCM_SHA384 Wenn diese Richtlinieneinstellung aktiviert ist, ist die ausgewählte Verschlüsselung deaktiviert. Wenn diese Richtlinieneinstellung deaktiviert ist, ist der ausgewählte Verschlüsselung aktiviert. @@ -1194,30 +1198,30 @@ Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird Wenn diese Richtlinieneinstellung deaktiviert ist, zeigt Firefox keine Benachrichtigung an, wenn eine DLP-Anfrage abgelehnt wird. Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, zeigt Firefox eine Benachrichtigung an, wenn eine DLP-Anfrage abgelehnt wird. - Enabled - If this policy is disabled, clipboard operations will not use DLP. + Aktiviert + Wenn diese Richtlinieneinstellung deaktiviert ist, wird bei Vorgängen in der Zwischenablage kein DLP verwendet. -If this policy is enabled or not configured, clipboard operations will use DLP. +Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, wird bei Vorgängen in der Zwischenablage DLP verwendet. Plain Text Only If this policy is disabled, all formats will be analyzed on the clipboard, which some DLP agents may not expect. If this policy is enabled or not configured, only the text/plain format will be analyzed on the clipboard. - Enabled - If this policy is disabled, drag and drop operations will not use DLP. + Aktiviert + Wenn diese Richtlinieneinstellung deaktiviert ist, wird bei Drag-and-Drop-Vorgängen kein DLP verwendet. -If this policy is enabled or not configured, drag and drop operations will use DLP. +Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, verwenden Drag-and-Drop-Vorgänge DLP. Plain Text Only If this policy is disabled, all formats will be analyzed in what is being dropped, which some DLP agents may not expect. If this policy is enabled or not configured, only the text/plain format will be analyzed in what is being dropped. - File Upload - If this policy is disabled, file upload operations will not use DLP. + Datei-Upload + Wenn diese Richtlinieneinstellung deaktiviert ist, wird bei Datei-Upload-Vorgängen kein DLP verwendet. -If this policy is enabled or not configured, file upload operations will use DLP. - Print - If this policy is disabled, print operations will not use DLP. +Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, wird bei Datei-Upload-Vorgängen DLP verwendet. + Drucken + Wenn diese Richtlinieneinstellung deaktiviert ist, wird bei Druckvorgängen kein DLP verwendet. -If this policy is enabled or not configured, print operations will use DLP. +Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, wird bei Druckvorgängen DLP verwendet. Timeout Result If this policy is enabled, you can indicate the desired behavior for DLP requests if the DLP agent does not respond to a request in less than AgentTimeout seconds. diff --git a/windows/en-US/firefox.adml b/windows/en-US/firefox.adml index 89a8ab8..34f8917 100644 --- a/windows/en-US/firefox.adml +++ b/windows/en-US/firefox.adml @@ -77,6 +77,7 @@ Firefox 131 or later, Firefox 128.3 ESR or later Firefox 137 or later Firefox 138 or later + Firefox 138, Firefox 128.10 ESR Firefox Permissions Camera @@ -900,6 +901,9 @@ If this policy is enabled or not configured, user messaging preferences cannot b TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 + TLS_CHACHA20_POLY1305_SHA256 + TLS_AES_128_GCM_SHA256 + TLS_AES_256_GCM_SHA384 If this policy is enabled, the corresponding cipher is disabled. If this policy is disabled, the corresponding cipher is enabled. diff --git a/windows/firefox.admx b/windows/firefox.admx index 6d14d32..4b9a888 100644 --- a/windows/firefox.admx +++ b/windows/firefox.admx @@ -3899,6 +3899,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/windows/fr-FR/firefox.adml b/windows/fr-FR/firefox.adml index 870c84b..30ca46e 100644 --- a/windows/fr-FR/firefox.adml +++ b/windows/fr-FR/firefox.adml @@ -77,6 +77,7 @@ Firefox 131 ou supérieur, Firefox 128.3 ESR ou supérieur Firefox 137 ou supérieur Firefox 138 ou supérieur + Firefox 138 ou supérieur, Firefox 128.10 ESR ou supérieur Firefox Permissions Caméra @@ -900,6 +901,9 @@ Si cette stratégie est activée ou non configurée, les préférences de messag TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 + TLS_CHACHA20_POLY1305_SHA256 + TLS_AES_128_GCM_SHA256 + TLS_AES_256_GCM_SHA384 Si cette stratégie est activée, le chiffrement correspondant est désactivé. Si cette stratégie est désactivée, le chiffrement correspondant est activé. diff --git a/windows/ru-RU/firefox.adml b/windows/ru-RU/firefox.adml index b29f6c5..e7520c7 100644 --- a/windows/ru-RU/firefox.adml +++ b/windows/ru-RU/firefox.adml @@ -78,6 +78,7 @@ Firefox 131 или более поздние версии, Firefox 128.3 ESR или более поздние версии Firefox 137 или более поздние версии Firefox 138 или более поздние версии + Firefox 138 или более поздние версии, Firefox 128.10 ESR или более поздние версии Firefox Разрешения Камера @@ -903,6 +904,9 @@ Mozilla рекомендует не отключать телеметрию. И TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 + TLS_CHACHA20_POLY1305_SHA256 + TLS_AES_128_GCM_SHA256 + TLS_AES_256_GCM_SHA384 Если эта политика включена, соответствующий шифр отключен. Если эта политика отключена, соответствующий шифр включен.