PowerView

we will start domain enumeration usin powerview.

First import the module.

powershell-import C:\\Tools\\PowerSploit\\Recon\\PowerView.ps1

image.png

Getting information aboput current domain

powershell Get-Domain

image.png

Gitting infromation about Domain Controller

powershell Get-DomainController | select Forest, Name, OSVersion | fl

image.png

Enumerating the Forest

powershell Get-ForestDomain

image.png

Enumerating Group Policy

powershell Get-DomainPolicyData | select -expand SystemAccess

image.png

Enumerating Domain Users

powershell Get-DomainUser -Identity jking -Properties DisplayName, MemberOf | fl