Enumeration

Tools

ADModule: https://github.com/samratashok/ADModule (To use ActiveDirectory module without installing RSAT, we can use Import-Module for the valid ActiveDirectory module DLL)

Domain

Get Domain

PowerView
ADModule
Get-NetDomain
Get-NetDomain -Domain domain.local
Get-ADDomain
Get-ADDomain -Identity domain.local

Get Domain SID

PowerView
ADModule
Get-DomainSID
Get-DomainSID -Domain domain.local
(Get-ADDomain).DomainSID
(Get-ADDomain -Identity domain.local).DomainSID

Get Domain Policy

PowerView
Get-DomainPolicy
(Get-DomainPolicy)."system access"
(Get-DomainPolicy –domain moneycorp.local)."system access"

Get DCs

PowerView
ADModule
Get-NetDomainController
Get-NetDomainController –Domain moneycorp.local
Get-ADDomainController
Get-ADDomainController -DomainName moneycorp.local -Discover

Users

Get a list of users in the current domain

PowerView
ADModule
Get-NetUser
Get-NetUser –Username student1
Get-ADUser -Filter * -Properties *
Get-ADUser -Identity student1 -Properties *

Get a list of all properties for users within domain

PowerView
ADModule
# Lists all properties available
Get-UserProperty
# Gets the value of a property for all users in domain
Get-UserProperty –Properties pwdlastset
Get-ADUser -Filter * -Properties * | select -First 1 | Get-Member MemberType *Property | select Name
Get-ADUser -Filter * -Properties * | select name,@{expression={[datetime]::fromFileTime($_.pwdlastset)}}

Search for particular string in users attribute

PowerView
ADModule
Find-UserField -SearchField Description -SearchTerm "built"
Get-ADUser -Filter 'Description -like "*built*"' Properties Description | select name,Description

Groups

Get all groups in current domain

PowerView
ADModule
Get-NetGroup
Get-NetGroup –Domain <targetdomain>
Get-NetGroup –FullData
Get-ADGroup -Filter * | select Name
Get-ADGroup -Filter * -Properties *

Get all groups containing admin in current domain

PowerView
ADModule
Get-NetGroup *admin*
Get-ADGroup -Filter 'Name -like "*admin*"' | select Name

Get members of domain admin group

PowerView
ADModule
Get-NetGroupMember -GroupName "Domain Admins" -Recurse
Get-ADGroupMember -Identity "Domain Admins" -Recursive

Get the group membership for a user

PowerView
ADModule
Get-NetGroup –UserName "student1"
Get-ADPrincipalGroupMembership -Identity student1

Computers / Sessions

Get a list of computers in current domain

PowerView
ADModule
Get-NetComputer
Get-NetComputer –OperatingSystem "*Server 2016*"
Get-NetComputer -Ping
Get-NetComputer -FullData
Get-ADComputer -Filter * | select Name
Get-ADComputer -Filter 'OperatingSystem -like "*Server 2016*"' Properties OperatingSystem | select Name,OperatingSystem
Get-ADComputer -Filter * -Properties DNSHostName | %{TestConnection -Count 1 -ComputerName $_.DNSHostName}
Get-ADComputer -Filter * -Properties

List all local groups on a machine (needs admin privs to query non-dc machines)

PowerView
Get-NetLocalGroup -ComputerName dcorpdc.dollarcorp.moneycorp.local -ListGroups

List members of local groups on a machine (needs admin privs on non-dc machines)

PowerView
Get-NetLocalGroup -ComputerName dcorpdc.dollarcorp.moneycorp.local -Recurse

Get actively logged on users on target (needs admin rights on target)

PowerView
Get-NetLoggedon –ComputerName <servername>

Get locally logged on users on target (needs remote registry enabled (started by default on servers))

PowerView
Get-LoggedonLocal -ComputerName dcorpdc.dollarcorp.moneycorp.local

Get the last logged on user on target (needs admin rights and remote registry enabled)

PowerView
Get-LastLoggedOn –ComputerName <servername>

Files

Find shares on hosts in current domain

PowerView
Invoke-ShareFinder –Verbose

Find sensitive files on computers within domain

PowerView
Invoke-FileFinder –Verbose

Get all file servers of domain

PowerView
Get-NetFileServer

GPO / OU

Get list of GPO in current domain

PowerView
ADModule
Get-NetGPO
Get-NetGPO -ComputerName dcorpstudent1.dollarcorp.moneycorp.local
Get-GPO -All (GroupPolicy module)
Get-GPResultantSetOfPolicy -ReportType Html -Path C:\Users\Administrator\report.html (Provides RSoP)

Get GPO which use restricted groups or groups.xml for interesting users

PowerView
Get-NetGPOGroup

Get users which are in a local group of a machine using GPO

PowerView
Find-GPOComputerAdmin –Computername dcorpstudent1.dollarcorp.moneycorp.local

Find machines where given user is a member of a specific group

PowerView
Find-GPOLocation -UserName student1 -Verbose

Get OUs in a Domain

PowerView
ADModule
Get-NetOU -FullData
Get-ADOrganizationalUnit -Filter * -Properties *

Get GPO applied on an OU

PowerView
ADModule
Get-NetGPO -GPOname "{AB306569-220D-43FF-B03B83E8F4EF8081}"
Get-GPO -Guid AB306569-220D-43FF-B03B-83E8F4EF8081 (GroupPolicy module)

ACLs

Get ACLs associated with a specific object

PowerView
ADModule
Get-ObjectAcl -SamAccountName student1 –ResolveGUIDs
(Get-Acl 'AD:\CN=Administrator,CN=Users,DC=dollarcorp,DC=moneycorp ,DC=local').Access
PowerView
Get-ObjectAcl -ADSprefix 'CN=Administrator,CN=Users' -Verbose
PowerView
Get-ObjectAcl -ADSpath "LDAP://CN=Domain Admins,CN=Users,DC=dollarcorp,DC=moneycorp,DC=local" -ResolveGUIDs -Verbose

Search for interesting ACEs

PowerView
Invoke-ACLScanner -ResolveGUIDs

Get the ACLs associated with the specified path

PowerView
Get-PathAcl -Path "\\dcorp-dc.dollarcorp.moneycorp.local\sysvol"

Trusts

Domain Trust Mapping

PowerView
ADModule
Get-NetDomainTrust
Get-NetDomainTrust –Domain us.dollarcorp.moneycorp.local
Get-ADTrust Get-ADTrust –Identity us.dollarcorp.moneycorp.local

Forest Mapping

PowerView
ADModule
Get-NetForest
Get-NetForest –Forest eurocorp.local
Get-ADForest
Get-ADForest –Identity eurocorp.local

Get all domains in current forest

PowerView
ADModule
Get-NetForestDomain
Get-NetForestDomain –Forest eurocorp.local
(Get-ADForest).Domains

Get all global catalogues for the current forest

PowerView
ADModule
Get-NetForestCatalog
Get-NetForestCatalog –Forest eurocorp.local
Get-ADForest | select -ExpandProperty GlobalCatalogs

Map trusts of a forest

PowerView
ADModule
Get-NetForestTrust
Get-NetForestTrust –Forest eurocorp.local
Get-ADTrust -Filter 'msDS-TrustForestTrustInfo -ne "$null"'

Scripts

Find all machines on the current domain where the current user has local admin access (This function queries the DC of the current or provided domain for a list of computers (Get-NetComputer) and then use multi-threaded Invoke-CheckLocalAdminAccess on each machine. Logon events for all machines, loud!)

PowerView
Find-LocalAdminAccess –Verbose
Alternative: Find-WMILocalAdminAccess.ps1

Find local admins on all machines of the domain (needs administrator privs on non-dc machines). (This function queries the DC of the current or provided domain for a list of computers (Get-NetComputer) and then use multi-threaded GetNetLocalGroup on each machine.)

PowerView
Invoke-EnumerateLocalAdmin –Verbose

Find computers where a domain admin (or specified user/group) has sessions. (This function queries the DC of the current or provided domain for members of the given group (Domain Admins by default) using Get-NetGroupMember, gets a list of computers (Get-NetComputer) and list sessions and logged on users (GetNetSession/Get-NetLoggedon) from each machine).

PowerView
Invoke-UserHunter
Invoke-UserHunter -GroupName "RDPUsers"

Confirm admin access

PowerView
Invoke-UserHunter -CheckAccess

Find computers where a domain admin is logged-in. (This option queries the DC of the current or provided domain for members of the given group (Domain Admins by default) using GetNetGroupMember, gets a list only of high traffic servers (DC, File Servers and Distributed File servers) for less traffic generation and list sessions and logged on users (Get-NetSession/Get-NetLoggedon) from each machine.)

PowerView
Invoke-UserHunter -Stealth

PrivEsc

Unconstrained Delegation

PowerView
ADModule
Get-NetComputer -UnConstrained
Get-DomainUser -AllowDelegation -AdminCount
Get-ADComputer -Filter {TrustedForDelegation -eq $True}
Get-ADUser -Filter {TrustedForDelegation -eq $True}

Constrained Delegation

PowerView
ADModule
Get-DomainUser –TrustedToAuth
Get-DomainComputer –TrustedToAuth
Get-ADObject -Filter {msDS-AllowedToDelegateTo -ne "$null"} -Properties msDS-AllowedToDelegateTo

ASREP Roasting

PowerView
ADModule
Get-DomainUser -PreauthNotRequired -Verbose
Get-ADUser -Filter {DoesNotRequirePreAuth -eq $True} Properties DoesNotRequirePreAuth

Clear Passwords

PowerView
$FormatEnumerationLimit=-1;Get-DomainUser -LDAPFilter '(userPassword=*)' -Properties samaccountname,memberof,userPassword | % {Add-Member -InputObject $_ NoteProperty 'Password' "$([System.Text.Encoding]::ASCII.GetString($_.userPassword))" -PassThru} | fl