mirror of
https://github.com/TommyTran732/Microsoft-Edge-Policies
synced 2025-02-20 20:21:59 -05:00
Compare commits
3 Commits
cb31b2ae08
...
008c0b8979
Author | SHA1 | Date | |
---|---|---|---|
008c0b8979 | |||
0b2b24ed5a | |||
d7a8eeb538 |
@ -4,7 +4,6 @@
|
|||||||
"CAPlatformIntegrationEnabled": false,
|
"CAPlatformIntegrationEnabled": false,
|
||||||
"AutomaticFullscreenBlockedForUrls": [ "*" ],
|
"AutomaticFullscreenBlockedForUrls": [ "*" ],
|
||||||
"CookiesBlockedForUrls": [ "ntp.msn.com" ],
|
"CookiesBlockedForUrls": [ "ntp.msn.com" ],
|
||||||
"DefaultAutomaticDownloadsSetting": 2,
|
|
||||||
"DefaultGeolocationSetting": 2,
|
"DefaultGeolocationSetting": 2,
|
||||||
"DefaultInsecureContentSetting": 2,
|
"DefaultInsecureContentSetting": 2,
|
||||||
"DefaultCookiesSetting": 4,
|
"DefaultCookiesSetting": 4,
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
"SmartScreenEnabled": false,
|
"SmartScreenEnabled": false,
|
||||||
"TyposquattingCheckerEnabled": false
|
"TyposquattingCheckerEnabled": false,
|
||||||
|
"ScarewareBlockerProtectionEnabled": false
|
||||||
}
|
}
|
@ -9,11 +9,12 @@ For corporate environments, you will need make approprieate changes, including b
|
|||||||
- Set `DefaultWebUsbGuardSetting` to "Block". In most cases, the websites will never need to use this API. I need it to flash GrapheneOS and StockOS on my phones.
|
- Set `DefaultWebUsbGuardSetting` to "Block". In most cases, the websites will never need to use this API. I need it to flash GrapheneOS and StockOS on my phones.
|
||||||
- Set `DefaultClipboardSetting` to "Block". In most cases, users do not need to grant this permission for websites to work. I need it for GitHub Codespaces.
|
- Set `DefaultClipboardSetting` to "Block". In most cases, users do not need to grant this permission for websites to work. I need it for GitHub Codespaces.
|
||||||
- Set `DefaultJavaScriptJitSetting` to "Block". This will prevent users from adding exceptions to Enhanced Security Mode.
|
- Set `DefaultJavaScriptJitSetting` to "Block". This will prevent users from adding exceptions to Enhanced Security Mode.
|
||||||
|
- Set `DefaultAutomaticDownloadsSetting` to "Block". In most cases, websites do not need this API. I need Automatic Downloads for my reMarkable tablet.
|
||||||
- Remove the uBlock Origin Lite extension whitelist. I am not aware of any way to block users from granting uBlock Origin Lite access to all content on a website, which is a security risk. If you know of a way to enforce that the extension runs permission-less, please let me know.
|
- Remove the uBlock Origin Lite extension whitelist. I am not aware of any way to block users from granting uBlock Origin Lite access to all content on a website, which is a security risk. If you know of a way to enforce that the extension runs permission-less, please let me know.
|
||||||
- Set `SSLErrorOverrideAllowed` to false.
|
- Set `SSLErrorOverrideAllowed` to false.
|
||||||
- Further restrict permissions that websites can prompt for.
|
- Further restrict permissions that websites can prompt for.
|
||||||
- Consider removing the `Disable3DAPIs` policy. Currently, WebGL is disabled in my policies and a few sites will break, so whether to do this highly depends on your organization.
|
- Consider removing the `Disable3DAPIs` policy. Currently, WebGL is disabled in my policies and a few sites will break, so whether to do this highly depends on your organization.
|
||||||
- Consider mandating that `SmartScreenEnabled` is set to disabled. `TyposquattingCheckerEnabled` is also potentially invasive, though I have not confirmed this. Please make an issue to let me know of your findings.
|
- Consider mandating that `SmartScreenEnabled` and `ScarewareBlockerProtectionEnabled` are set to disabled. `TyposquattingCheckerEnabled` is also potentially invasive, though I have not confirmed this. Please make an issue to let me know of your findings.
|
||||||
|
|
||||||
## Linux
|
## Linux
|
||||||
|
|
||||||
|
@ -16,8 +16,6 @@
|
|||||||
<array>
|
<array>
|
||||||
<string>ntp.msn.com</string>
|
<string>ntp.msn.com</string>
|
||||||
</array>
|
</array>
|
||||||
<key>DefaultAutomaticDownloadsSetting</key>
|
|
||||||
<integer>2</integer>
|
|
||||||
<key>DefaultGeolocationSetting</key>
|
<key>DefaultGeolocationSetting</key>
|
||||||
<integer>2</integer>
|
<integer>2</integer>
|
||||||
<key>DefaultInsecureContentSetting</key>
|
<key>DefaultInsecureContentSetting</key>
|
||||||
@ -84,6 +82,8 @@
|
|||||||
<false />
|
<false />
|
||||||
<key>RelatedWebsiteSetsEnabled</key>
|
<key>RelatedWebsiteSetsEnabled</key>
|
||||||
<false />
|
<false />
|
||||||
|
<key>ScarewareBlockerProtectionEnabled</key>
|
||||||
|
<false />
|
||||||
<key>InsecurePrivateNetworkRequestsAllowed</key>
|
<key>InsecurePrivateNetworkRequestsAllowed</key>
|
||||||
<false />
|
<false />
|
||||||
<key>PrivateNetworkAccessRestrictionsEnabled</key>
|
<key>PrivateNetworkAccessRestrictionsEnabled</key>
|
||||||
|
@ -6,5 +6,7 @@
|
|||||||
<false />
|
<false />
|
||||||
<key>TyposquattingCheckerEnabled</key>
|
<key>TyposquattingCheckerEnabled</key>
|
||||||
<false />
|
<false />
|
||||||
|
<key>ScarewareBlockerProtectionEnabled</key>
|
||||||
|
<false />
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
Loading…
Reference in New Issue
Block a user