Users have the ability to open PowerShell with any Execution Policy level that they want. The idea behind the Execution Policy is to prevent unintentional execution of scripts. Your users do this by typing at a command line:
PowerShell –ExecutionPolicy PolicyLevel
The PolicyLevel is the desired Execution Policy. Through Social Engineering, an attacker could instruct a user how to execute their malicious scripts by using the above method of the Set-ExecutionPolicy cmdlet.
You can prevent this by using Group Policy. I created a GPO with the sole purpose of setting the PowerShell Execution Policy to AllSigned. This setting is located at Computer Configuration \ Policies \ Administrative Templates \ Windows Components \ Windows PowerShell \ Turn on Script Execution.
I applied the policy and verified that the client’s default execution policy was set to AllSigned by opening PowerShell using the GUI.
I then closed PowerShell and then opened it again. This time by using the following command line:
PowerShell –ExecutionPolicy Unrestricted
I was able to confirm that my Group Policy prevented my user from changing the Execution Policy.
When I used the Set-ExecutionPolicy Unrestricted command and also confirmed the change, I received this error.
I also confirmed that my Execution Policy was still set to AllSigned.
PowerShell –ExecutionPolicy PolicyLevel
The PolicyLevel is the desired Execution Policy. Through Social Engineering, an attacker could instruct a user how to execute their malicious scripts by using the above method of the Set-ExecutionPolicy cmdlet.
You can prevent this by using Group Policy. I created a GPO with the sole purpose of setting the PowerShell Execution Policy to AllSigned. This setting is located at Computer Configuration \ Policies \ Administrative Templates \ Windows Components \ Windows PowerShell \ Turn on Script Execution.
I applied the policy and verified that the client’s default execution policy was set to AllSigned by opening PowerShell using the GUI.
I then closed PowerShell and then opened it again. This time by using the following command line:
PowerShell –ExecutionPolicy Unrestricted
I was able to confirm that my Group Policy prevented my user from changing the Execution Policy.
When I used the Set-ExecutionPolicy Unrestricted command and also confirmed the change, I received this error.
I also confirmed that my Execution Policy was still set to AllSigned.
Comments