StandIn
AD Enumeration
# User enumeration
StandIn.exe '--ldap "(&(objectCategory=person)(objectClass=user))" --limit 10'
# User-specific enumeration with --object
StandIn.exe '--object samaccountname=administrator --filter lastlogon,description'
# Mutliple user-specific enumeration with --ldap
StandIn.exe '--ldap "(|(samaccountname=administrator)(samaccountname=guest))" --filter lastlogon,description'
# Query for multiple users
StandIn.exe '--ldap (samaccountname=*admin*) --filter name'# Enumerate computer objects
StandIn.exe '--ldap "(objectCategory=computer)" --filter samaccountname'# Enumerate Domain Admins
StandIn.exe '--group "domain admins"'
StandIn.exe '--object "(samaccountname=domain admins)" --filter member'# Enumerate Enterprise Admins
StandIn.exe '--group "enterprise admins" --domain moneycorp.local --user "x7331" --pass "P@ass123!"'Last updated