The powershell tag has no wiki summary.
10
votes
2answers
267 views
How insecure is PowerShell Web Access?
Windows Server 2012 comes with a new feature that allows you to administrate the server via a PowerShell command line in any modern browser including Smartphones.
This sounds cool and scary at the ...
6
votes
1answer
186 views
What is the security impact of changing PowerShell's PSLanguageMode?
A vendor is asking me to change the PSLanguageMode from within IIS on my Exchange server(s).
What potential vulnerabilities am I opening myself up to?
I'm surprised to see this option present within ...
4
votes
2answers
10k views
How is PowerShell's RemoteSigned execution policy different from AllSigned?
I'm still pretty new to PowerShell, and recently read this in a blog posting about creating and using PowerShell scripts.
To prevent the execution of malicious scripts, PowerShell enforces an ...
4
votes
1answer
1k views
What are the security implications of enabling WINRM on all domain members?
As Powershell becomes more and more popular, it appears that using WINRM may end up being a better option than using PSEXEC from SysInternals for remote management. Given that WINRM is disabled by ...
1
vote
1answer
997 views
Checklist for configuring WinRM Security settings on servers
WinRM has a very difficult to use command line interface and that leads me to believe some settings will be easily reconfigured, overlooked, and eventually exploited.
In other words, insecurity ...
-1
votes
2answers
170 views
How to increase Windows PowerShell WebAccess security?
What are some recommended techniques to improve the security of powershell?
Google returns many articles about powershell security like these:
PowerShell’s Security Guiding Principles TechNet Edge ...
-2
votes
1answer
33 views
Access denied when Get remote MACAddress with powellshell [closed]
I use this code to get MACAddress of an remote win server 2008 computer
function Get-MACAddress {
param ($strComputer)
$colItems = get-wmiobject -class "Win32_NetworkAdapterConfiguration" ...