Host:
HTTPS:
You can also access this page from following domains
edgedbg.com
HTTPSHTTP
sub.edgedbg.com
HTTPSHTTP
lab.eastasia.cloudapp.azure.com
HTTPSHTTP
IE Security Zones test domains
Internet Explorer assigns all websites to one of four security zones: Internet, Local intranet, Trusted sites, or Restricted sites. The zone to which a website is assigned specifies different security settings that may lead to different behaviors. Following domains allow you to test the browser labs in different security zones in IE. Before navigating to following domains, you need to either map these domains into the correct security zone manually or run following command to map these domains automatically.
powershell -nop -c "iex(New-Object Net.WebClient).DownloadString('http://edgedbg.com/files/iemap.ps1')" CopiedCopy failed, please copy the command manually
internet.edgedbg.com
HTTPSHTTP
sub.internet.edgedbg.com
HTTPSHTTP
trusted.edgedbg.com
HTTPSHTTP
sub.trusted.edgedbg.com
HTTPSHTTP
intranet.edgedbg.com
HTTPSHTTP
sub.intranet.edgedbg.com
HTTPSHTTP
Fork me on GitHub

Disable User-mode shadow stack (CET) for Edge

Prerequisites

  1. Run CMD or PowerShell as an administrator, and execute the following command:

    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\msedge.exe" /v MitigationOptions /t REG_BINARY /d "0000000000000000000000000000002000" /f
    

    You can verify whether the User-mode shadow stack (CET) of Edge is turned off by running Get-ProcessMitigation -Name "msedge.exe" in PowerShell:

    PS C:\Users\user> Get-ProcessMitigation -Name "msedge.exe"
    ...
    ...
    User Shadow Stack:
    UserShadowStack                    : OFF
    UserShadowStackStrictMode          : OFF
    AuditUserShadowStack               : NOTSET
    Override UserShadowStack           : False
    PS C:\Users\user>
    

    Note: This setting will take effect only after restarting the Edge browser. Please close all running instances of msedge.exe from the Task Manager to ensure that no background Edge processes remain active.

End steps

  1. To reactivate the User-mode shadow stack (CET) in Edge, please execute the following command in an elevated Command Prompt (CMD) or PowerShell window:
    reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\msedge.exe" /v MitigationOptions /f