X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/45bf4afe041b905325af33a7936f08a761caba84..6b54301630f94c0d7ffd499b784ce4f2288abba1:/README-new.md diff --git a/README-new.md b/README-new.md index 9a84512..43ddef5 100644 --- a/README-new.md +++ b/README-new.md @@ -98,10 +98,8 @@ same folder name are grouped together. ### CaptivePortal A Boolean value that enables or disables captive portal support by setting and locking the preference `network.captive-portal-service.enabled`. -**Compatibility:** Firefox 67, Firefox ESR 60.7 - -**CCK2 Equivalent:** N/A - +**Compatibility:** Firefox 67, Firefox ESR 60.7\ +**CCK2 Equivalent:** N/A\ **Preferences Affected:** `network.captive-portal-service.enabled` #### Windows @@ -121,7 +119,7 @@ A Boolean value that enables or disables captive portal support by setting and l ``` { "policies": { - "CaptivePortal": true | false + "CaptivePortal": true | false } } ``` @@ -678,22 +676,59 @@ This policy allows you to add PKCS #11 Modules } } ``` -### SSLVersionMin -This policy allows you to set the minimum TLS version. +### SSLVersionMax +A String value that sets and locks the maximum version of TLS + +**Compatibility:** Firefox 67, Firefox ESR 60.7\ +**CCK2 Equivalent:** N/A +**Preferences Affected:** `security.tls.version.max` + +#### Windows +| Type | Registry Location | +| ---- | ----------------- | +| `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SSLVersionMax` | + +#### macOS +``` + + SSLVersionMax + tls1 | tls1.1 | tls1.2 | tls1.3 + +``` + +#### JSON ``` { "policies": { - "SSSLVersionMin": ["tls1", "tls1.1", "tls1.2",. "tls1.3"] + "SSLVersionMax": "tls1" | "tls1.1" | "tls1.2" | "tls1.3" } } +``` +### SSLVersionMin +A String value that sets and locks the minimum version of TLS +**Compatibility:** Firefox 67, Firefox ESR 60.7\ +**CCK2 Equivalent:** N/A +**Preferences Affected:** `security.tls.version.min` + +#### Windows +| Type | Registry Location | +| ---- | ----------------- | +| `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SSLVersionMin` | + +#### macOS ``` -### SSLVersionMax -This policy allows you to set the maximum TLS version. + + SSLVersionMin + tls1 | tls1.1 | tls1.2 | tls1.3 + +``` + +#### JSON ``` { "policies": { - "SSSLVersionMax": ["tls1", "tls1.1", "tls1.2",. "tls1.3"] + "SSLVersionMin": "tls1" | "tls1.1" | "tls1.2" | "tls1.3" } } ```