Users

WINDOWS

PS C:\> dsquery user

Checking User Property

(Property is ServicePrincipalName)

PS C:\> Get-ADUser -Filter {ServicePrincipalName -ne "$null"} -Properties ServicePrincipalName

NET

net user /domain # List all users of the domain

net user <ACCOUNT_NAME> /domain # Get information about a user within the domain

net user %username% # Information about the current user

PowerView

Domain User Information

PS C:\> Get-DomainUser -Identity sol -Domain riotech.local | Select-Object -Property name,samaccountname,description,memberof,whencreated,pwdlastset,lastlogontimestamp,accountexpires,admincount,userprincipalname,serviceprincipalname,useraccountcontrol

Testing for Local Admin Access

Finding Users With SPN Set

Users with no Password

SharpView

Domain User Information

LINUX

CrackMapExec

CME Domain User

RPCClient

User Enumeration

Windapsearch

[LINK]

Domain Admins

Privileged Users

Last updated