Enumerating Security Controls
Last updated
Last updated
Windows Defender (or after the Windows 10 May 2020 Update) has greatly improved over the years and, by default, will block tools such as PowerView
. There are ways to bypass these protections. These ways will be covered in other modules. We can use the built-in PowerShell cmdlet to get the current Defender status. Here, we can see that the RealTimeProtectionEnabled
parameter is set to True
, which means Defender is enabled on the system.
%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe
So, we can merely call it from other locations. Sometimes, we run into more stringent AppLocker
policies that require more creativity to bypass. These ways will be covered in other modules.
An application whitelist is a list of approved software applications or executables that are allowed to be present and run on a system. The goal is to protect the environment from harmful malware and unapproved software that does not align with the specific business needs of an organization. is Microsoft's application whitelisting solution and gives system administrators control over which applications and files users can run. It provides granular control over executables, scripts, Windows installer files, DLLs, packaged apps, and packed app installers. It is common for organizations to block cmd.exe and PowerShell.exe and write access to certain directories, but this can all be bypassed. Organizations also often focus on blocking the PowerShell.exe
executable, but forget about the other such as %SystemRoot%\SysWOW64\WindowsPowerShell\v1.0\powershell.exe
or PowerShell_ISE.exe
. We can see that this is the case in the AppLocker
rules shown below. All Domain Users are disallowed from running the 64-bit PowerShell executable located at:
PowerShell locks down many of the features needed to use PowerShell effectively, such as blocking COM objects, only allowing approved .NET types, XAML-based workflows, PowerShell classes, and more. We can quickly enumerate whether we are in Full Language Mode or Constrained Language Mode.
The Microsoft is used to randomize and rotate local administrator passwords on Windows hosts and prevent lateral movement. We can enumerate what domain users can read the LAPS password set for machines with LAPS installed and what machines do not have LAPS installed. The greatly facilitates this with several functions. One is parsing ExtendedRights
for all computers with LAPS enabled. This will show groups specifically delegated to read LAPS passwords, which are often users in protected groups. An account that has joined a computer to a domain receives All Extended Rights
over that host, and this right gives the account the ability to read passwords. Enumeration may show a user account that can read the LAPS password on a host. This can help us target specific AD users who can read passwords.