I Have the Power(View)

Will Schroeder
Will SchroederOffensive Engineer
View
Offensive
Active
Directory with
PowerShell
@harmj0y
Co-founder of
Empire | Veil-Framework | PowerTools
PowerSploit developer
Researcher at Veris Group’s
Adaptive Threat Division
What I am Not Covering
▣ Any kind of memory corruption attacks
○ We haven’t thrown an exploit in years
▣ Too Much Active Directory background
○ Too many slides, too little time :(
▣ Mimikatz and Kerberos attacks
○ Covered better and in more depth by others
▣ PowerShell Weaponization
○ We like Empire and Cobalt Strike ;)
What I am Covering
▣ Offensive Active Directory 101
○ Why care? And what’s Powerview?
▣ Identifying/Hunting Your Prey
▣ Local Administrator Enumeration
▣ GPO Enumeration and Abuse
▣ AD ACLs (and a few persistence methods)
▣ Domain Trusts (enumeration and abuse)
▣ Lots of PowerView tips and tricks
○ and a lot of ground to cover!
1.
Offensive AD 101 and
‘Why PowerShell’
Active Directory 101
▣ At its core, Active Directory is a way to organize
user and computer objects
○ Used to authenticate and authorize users and computers
on a network and provide access to specific resources
○ Also provides security policies, centralized management,
and other rich features
▣ Red teams and real bad guys have been abusing AD
for years, but not much offensive AD information
has existed publicly (until fairly recently)
Why Not
The Active Directory Cmdlets?
▣ The RSAT-AD-PowerShell module is:
○ only compatible with PowerShell 3.0+
○ only installed by default on servers with the Active
Directory Domain Services role
▣ We want something:
○ PowerShell 2.0 compliant (yay Win7)
○ fully self-contained with no dependencies
○ usable without any installation
PowerView
▣ A pure PowerShell domain/network situational
awareness tool
○ everything is kept version 2.0 compliant
○ now part of PowerSploit™! (not really trademarked)
▣ Built to automate large components of the
tradecraft on our red team engagements
▣ No installation and can reside purely in memory
○ and PowerShell 2.0 is included by default in Win7
Sidenote: LDAP Optimizations
▣ A lot of the PowerView domain functionality
reduces down to various chained and optimized
LDAP queries
▣ Much is transparent to the user:
○ e.g. LDAP queries for foreign domains are ‘reflected’
through the current domain PDC to get around network
segmentation
▣ Much of this of isn’t revolutionary, but chaining
functionality lets you pull off some awesome stuff
Also: The Pipeline
▣ The PowerShell pipeline allows you to pass full
objects between functions (instead of just strings)
▣ This lets you perform complex chaining and
filtering, allowing you accomplish a lot very
quickly
▣ Users who’ve logged on within the last week:
○ Get-NetUser | ? {$_.lastlogon -gt [DateTime]::Today.
AddDays(-7)} | Sort-Object name
2.
Identifying and Hunting
Your Prey
Who Are my Admins and Where Are They At?
▣ Before you start targeted spread, you need to know
who you’re going after
▣ PowerView helps with enumeration of:
○ Users: Get-NetUser <*USER*>
○ Groups: Get-NetGroup <*admin*>
○ Group members: Get-NetGroupMember <GroupName>
▣ All of the above also accept manual LDAP filters
with -Filter “(field=*value*)”
Who Are My Admins?
▣ Get all the groups a user is effectively a member of
('recursing up'):
○ Get-NetGroup -UserName <USER>
▣ Get all the effective members of a group ('recursing
down'):
○ Get-NetGroupMember -GoupName <GROUP> -Recurse
▣ Search the forest global catalog:
○ Get-NetUser -UserName <USER> -ADSpath “GC:
//domain.com”
PowerTips
▣ Machine accounts can sometimes end up in
privileged groups https://adsecurity.org/?p=2753
▣ To find any computer accounts in any privileged
groups:
Privileged Machine Accounts
Get-NetGroup -AdminCount | `
Get-NetGroupMember -Recurse | `
?{$_.MemberName -like '*$'}
▣ Some organizations separate out administrative
functionality into multiple accounts for the same
person
○ e.g. “john” and“john-admin”
▣ By performing some correlation on AD data
objects, you can often pull out groupings of
accounts likely owned by the same person
○ We often hunt for/compromise an admin’s unprivileged
account
Separated Roles
▣ Finding all user accounts with a specific email
address:
▣ Get-NetUser -Filter "(mail=john@domain.com)"
Separated Roles - Simple Example
▣ Get-NetGroupMember -GroupName "Domain
Admins" -FullData | %{ $a=$_.displayname.split
(" ")[0..1] -join " "; Get-NetUser -Filter
"(displayname=*$a*)" } | Select-Object -
Property displayname,samaccountname
Separated Roles - Complex Example
Separated Roles - Complex Example
1. Query for all members of “Domain Admins” in the
current domain, returning the full data objects
2. Extract out the “Firstname Lastname” from
DisplayName for each user object
3. Query for additional users with the same
“Firstname Lastname”
Separated Roles - Complex Example
In plain English:
▣ Once you’ve identified who you want to go after,
you need to know where they’re located
▣ We break this down into:
○ pre-elevated access, when you have regular domain
privileges. This is usually the lateral spread phase.
○ post-elevated access, when you have elevated (e.g.
Domain Admin) privileges. This is usually the
‘demonstrate impact’ phase.
I Hunt Sysadmins
▣ Flexible PowerView function that:
○ queries AD for hosts or takes a target list
○ queries AD for users of a target group, or takes a
list/single user
○ uses Win32 API calls to enumerate sessions and logged
in users, matching against the target user list
○ Doesn’t need administrative privileges!
▣ We like using the -ShowAll flag and grepping
results for future analysis
Invoke-UserHunter
Invoke-UserHunter
▣ Uses an old red teaming trick:
○ Queries AD for all users and extracts all
homeDirectory/scriptPath/profilePath fields (as well
as DFS shares and DCs) to identify highly trafficked
servers
○ Runs Get-NetSession against each file server to
enumerate remote sessions, match against target users
▣ Reasonable coverage with a lot less traffic
○ also doesn’t need admin privileges
○ also accepts the -ShowAll flag
Invoke-UserHunter -Stealth
Invoke-UserHunter -Stealth
3.
Local Admin Enumeration
Huh?
The WinNT Service Provider
▣ Leftover from Windows NT domain deployments
○ ([ADSI]"WinNT://SERVER/Administrators").psbase.
Invoke('Members') | %{$_.GetType().InvokeMember
("Name", 'GetProperty', $null, $_, $null)}
▣ With an unprivileged domain account, you can use
PowerShell and WinNT to enumerate all members
(local and domain) of a local group on a remote
machine
Get-NetLocalGroup
▣ Get-NetLocalGroup <SERVER>
○ -ListGroups will list the groups
○ a group can be specified with -GroupName <GROUP>
▣ The -Recurse flag will resolve the members of any
result that’s a group, giving you a list of effective
domain users that can access a given server
○ Invoke-UserHunter -TargetServer <SERVER> will use
this to hunt for users who can admin a particular server
Get-NetLocalGroup
“Derivative Local Admin”
▣ Large enterprise networks often utilize heavily
delegated group roles
▣ From the attacker perspective, anyone who could
be used to chain to that local administrative access
can be considered a target
▣ More info from @sixdub: http://www.sixdub.net/?
p=591
“Derivative Local Admin”
▣ Tim (a domain admin) is on a machine w/
WorkstationAdminsA in the local admins
▣ WorkstationAdminsA contains Bob
▣ Bob’s machine has WorkstationAdminsB
▣ WorkstationAdminsB contains Eve
▣ If we exploit Eve, we can get Bob and any
workstation he has access to, chaining to
compromise Tim
▣ Eve’s admin privileges on A’s machine derive
through Bob
“Derivative Local Admin”
“Derivative Local Admin”
▣ Can be require several hops
▣ The process:
○ Invoke-UserHunter –Stealth –ShowAll to get required
user location data
○ Get-NetLocalGroup –Recurse to identify the local
admins on the target
○ Use location data to find those users
○ Get-NetLocalGroup -Recurse on locations discovered
○ Use location data to find those users
○ Continue until you find your path!
▣ Recently released by fellow ATD member Andy
Robbins (@_wald0)
▣ Uses input from PowerView along with graph
theory and Dijkstra’s algorithm to automate the
chaining of local accesses
▣ More information from @_wald0: https://wald0.
com/?p=14
“Automated Derivative Local Admin”
4.
GPO Abuse
Why Not Just Ask the Domain Controller?
Group Policy Preferences
▣ Many organizations historically used Group Policy
Preference files to set the local administrator
password for machines
○ This password is encrypted but reversible
○ The patch for this prevents now reversible passwords
from being set but doesn’t remove the old files
▣ PowerSploit’s Get-GPPPassword will find and
decrypt any of these passwords found on a DC’s
SYSVOL
Group Policy Preferences
http://obscuresecurity.blogspot.com/2013/07/get-gpppassword.html
PowerView and GPP
▣ If you’re able to recover a cpassword from a Group
Policy Preferences file you can use PowerView to
quickly locate all machines that password is set on!
▣ Get-NetOU -GUID <GPP_GUID> | %{ Get-
NetComputer -ADSPath $_ }
More GPO Enumeration
▣ Group Policy Objects (though a GptTmpl.inf) can
determine what users have local admin rights by
setting ‘Restricted Groups’
○ Group Policy Preferences can do something similar with
“groups.xml”
▣ If we have a user account, why not just ask the
GPO configuration where this user has local
administrative rights?
More GPO Enumeration
▣ Find-GPOLocation will:
1. resolve a user's sid
2. build a list of group SIDs the user is a part of
3. use Get-NetGPOGroup to pull GPOs that set
'Restricted Groups' or GPPs that set groups.xml
4. match the target SID list to the queried GPO SID list
to enumerate all GPOs the user is effectively applied
5. enumerate all OUs and sites and applicable GPO GUIs
are applied to through gplink enumeration
6. query for all computers under the given OUs or sites
Find-GPOLocation
5.
Active Directory ACLs
AD Objects Have Permissions Too!
▣ AD objects (like files) have permissions/access
control lists
○ These can sometimes be misconfigured, and can also be
backdoored for persistence
▣ Get-ObjectACL -ResolveGUIDs -
SamAccountName <NAME>
▣ Set-ObjectACL lets you modify ;)
○ more on this in a bit
AD ACLs
Get-ObjectACL
▣ Group policy objects are of particular interest
▣ Any user with modification rights to a GPO can get
code execution for machine the GPO is applied to
▣ Get-NetGPO | %{Get-ObjectAcl -ResolveGUIDs -
Name $_.Name}
GPO ACLs
GPO ACLs
Auditing AD ACLs
▣ Pulling all AD ACLs will give you A MOUNTAIN of
data
▣ Invoke-ACLScanner will scan specifable AD
objects (default to all domain objects) for ACLs
with modify rights and a domain RID of >1000
▣ This helps narrow down the search scope to find
possibly misconfigured/backdoored AD object
permissions
AdminSDHolder
▣ AdminSDHolder is a special Active Directory object
located at “CN=AdminSDHolder,CN=System,
DC=domain,DC=com”
▣ If you modify the permissions of AdminSDHolder,
that permission template will be pushed out to all
protected admin accounts automatically by SDProp
▣ More info: https://adsecurity.org/?p=1906
PowerView and AdminSDHolder
▣ Add-ObjectAcl -TargetADSprefix
'CN=AdminSDHolder,CN=System' … will let you
modify AdminADHolder:
Targeted Plaintext Downgrades
▣ Another legacy/backwards compatibility feature:
Targeted Plaintext Downgrades
▣ We can set ENCRYPTED_TEXT_PWD_ALLOWED
with PowerView:
○ Set-ADObject -SamAccountName <USER> -
PropertyName useraccountcontrol -
PropertyXorValue 128
▣ Invoke-DowngradeAccount <USER> will
downgrade the encryption and forces the user to
change their password on next login
Targeted Plaintext Downgrades
▣ After Mimimatz’ DCSync
Speaking of DCSync...
▣ There’s a small set of permissions needed to
execute DCSync on a domain:
▣ PowerView lets you easily enumerate all users with
replication/DCSync rights for a particular domain:
PowerView and DCSync
Get-ObjectACL -DistinguishedName "dc=testlab,
dc=local" -ResolveGUIDs | ? {
($_.ObjectType -match 'replication-get') -or `
($_.ActiveDirectoryRights -match 'GenericAll')
}
▣ You can easily modify the permissions of of the
domain partition itself with PowerView’s Add-
ObjectACL and “-Rights DCSync”
A DCSync Backdoor
Add-ObjectACL -TargetDistinguishedName
"dc=testlab,dc=local" -
PrincipalSamAccountName jason -Rights
DCSync
PowerView and DCSync
6.
Domain Trusts
Or: Why You Shouldn’t Trust AD
Domain Trusts 101
▣ Trusts allow separate domains to form inter-
connected relationships
○ Often utilized during acquisitions (i.e. forest trusts or
cross-link trusts)
▣ A trust just links up the authentication systems
of two domains and allows authentication traffic
to flow between them
▣ A trust allows for the possibility of privileged
access between domains, but doesn’t guarantee it*
Why Does This Matter?
▣ Red teams often compromise accounts/machines
in a domain trusted by their actual target
▣ This allows operators to exploit these existing
trust relationships to achieve their end goal
▣ I LOVE TRUSTS: http://www.harmj0y.
net/blog/tag/domain-trusts/
PowerView Trust Enumeration
▣ Domain/forest trust relationships can be
enumerated through several PowerView functions:
○ Get-NetForest: info about the current forest
○ Get-NetForestTrust: grab all forest trusts
○ Get-NetForestDomain: grab all domains in a forest
○ Get-NetDomainTrust: nltest à la PowerShell
▣ If a trust exists, most functions in PowerView can
accept a “-Domain <name>” flag to operate
across a trust
Mapping the Mesh
▣ Large organizations with tons of
subgroups/subsidiaries/acquisitions can end up
with a huge mesh of domain trusts
○ mapping this mesh used to be manual and time-
consuming process
▣ Invoke-MapDomainTrust can recursively map all
reachable domain and forest trusts
○ The -LDAP flag gets around network restrictions at the
cost of accuracy
Invoke-MapDomainTrust
Visualizing the Mesh
▣ This raw data is great, but it’s still raw
▣ @sixdub’s DomainTrustExplorer tool can
perform nodal analysis of trust data
○ https://github.com/sixdub/DomainTrustExplorer
○ It can also generate GraphML output of the entire mesh,
which yED can use to build visualizations
▣ More information: http://www.sixdub.net/?p=285
Pretty Pictures!
Malicious SIDHistories
http://windowsitpro.com/windows-server/exploiting-sidhistory-ad-attribute
The Mimikatz Trustpocalypse
▣ Thanks to @gentilkiwi and @pyrotek3, Mimikatz
Golden Tickets now accept SIDHistories though
the new /sids:<X> argument
▣ If you compromise a DC in a child domain, you can
create a golden ticket with the “Enterprise
Admins” in the SID history
▣ This can let you compromise the forest root and all
forest domains!
○ won’t work for external domain trusts b/c of sid filtering
The Mimikatz Trustpocalypse
If you compromise any
domain administrator of
any domain in a forest, you
can compromise the entire
forest!
Advice From @gentilkiwi
Sidenote: CheatSheets!
▣ We’ve released cheetsheets for PowerView as well
as PowerUp and Empire at https://github.
com/harmj0y/cheatsheets/
Credits
Thanks to Sean Metcalf (@pyrotek3) for guidance, ideas, and awesome
information on offensive Active Directory approaches. Check out his
blog at http://adsecurity.org !
Thanks to Benjamin Delpy (@gentilkiwi) and Vincent LE TOUX for
Mimikatz and its DCSync capability!
Thanks to Ben Campbell (@meatballs__) for PowerView modifications
and LDAP optimizations!
And a big thanks to Justin Warner (@sixdub) and the rest of the ATD
team for tradecraft development and helping making PowerView not
suck!
Any questions?
@harmj0y
http://blog.harmj0y.net/
will [at] harmj0y.net
harmj0y on Freenode in #psempire
1 of 70

Recommended

Hunting for Privilege Escalation in Windows Environment by
Hunting for Privilege Escalation in Windows EnvironmentHunting for Privilege Escalation in Windows Environment
Hunting for Privilege Escalation in Windows EnvironmentTeymur Kheirkhabarov
11.9K views99 slides
DerbyCon 2019 - Kerberoasting Revisited by
DerbyCon 2019 - Kerberoasting RevisitedDerbyCon 2019 - Kerberoasting Revisited
DerbyCon 2019 - Kerberoasting RevisitedWill Schroeder
10.3K views27 slides
Pwning the Enterprise With PowerShell by
Pwning the Enterprise With PowerShellPwning the Enterprise With PowerShell
Pwning the Enterprise With PowerShellBeau Bullock
6.4K views42 slides
Catch Me If You Can: PowerShell Red vs Blue by
Catch Me If You Can: PowerShell Red vs BlueCatch Me If You Can: PowerShell Red vs Blue
Catch Me If You Can: PowerShell Red vs BlueWill Schroeder
7.8K views39 slides
Building an Empire with PowerShell by
Building an Empire with PowerShellBuilding an Empire with PowerShell
Building an Empire with PowerShellWill Schroeder
22.3K views56 slides
Ace Up the Sleeve by
Ace Up the SleeveAce Up the Sleeve
Ace Up the SleeveWill Schroeder
23.7K views60 slides

More Related Content

What's hot

Not a Security Boundary by
Not a Security BoundaryNot a Security Boundary
Not a Security BoundaryWill Schroeder
4K views48 slides
Hunting for Credentials Dumping in Windows Environment by
Hunting for Credentials Dumping in Windows EnvironmentHunting for Credentials Dumping in Windows Environment
Hunting for Credentials Dumping in Windows EnvironmentTeymur Kheirkhabarov
15.3K views61 slides
Mimikatz by
MimikatzMimikatz
Mimikatzrishabh sharma
469 views23 slides
I Hunt Sys Admins by
I Hunt Sys AdminsI Hunt Sys Admins
I Hunt Sys AdminsWill Schroeder
8K views26 slides
How to Hunt for Lateral Movement on Your Network by
How to Hunt for Lateral Movement on Your NetworkHow to Hunt for Lateral Movement on Your Network
How to Hunt for Lateral Movement on Your NetworkSqrrl
2.8K views48 slides
Six Degrees of Domain Admin - BloodHound at DEF CON 24 by
Six Degrees of Domain Admin - BloodHound at DEF CON 24Six Degrees of Domain Admin - BloodHound at DEF CON 24
Six Degrees of Domain Admin - BloodHound at DEF CON 24Andy Robbins
17.1K views32 slides

What's hot(20)

Hunting for Credentials Dumping in Windows Environment by Teymur Kheirkhabarov
Hunting for Credentials Dumping in Windows EnvironmentHunting for Credentials Dumping in Windows Environment
Hunting for Credentials Dumping in Windows Environment
Teymur Kheirkhabarov15.3K views
How to Hunt for Lateral Movement on Your Network by Sqrrl
How to Hunt for Lateral Movement on Your NetworkHow to Hunt for Lateral Movement on Your Network
How to Hunt for Lateral Movement on Your Network
Sqrrl2.8K views
Six Degrees of Domain Admin - BloodHound at DEF CON 24 by Andy Robbins
Six Degrees of Domain Admin - BloodHound at DEF CON 24Six Degrees of Domain Admin - BloodHound at DEF CON 24
Six Degrees of Domain Admin - BloodHound at DEF CON 24
Andy Robbins17.1K views
Hunting Lateral Movement in Windows Infrastructure by Sergey Soldatov
Hunting Lateral Movement in Windows InfrastructureHunting Lateral Movement in Windows Infrastructure
Hunting Lateral Movement in Windows Infrastructure
Sergey Soldatov9K views
Here Be Dragons: The Unexplored Land of Active Directory ACLs by Andy Robbins
Here Be Dragons: The Unexplored Land of Active Directory ACLsHere Be Dragons: The Unexplored Land of Active Directory ACLs
Here Be Dragons: The Unexplored Land of Active Directory ACLs
Andy Robbins6.2K views
Carlos García - Pentesting Active Directory Forests [rooted2019] by RootedCON
Carlos García - Pentesting Active Directory Forests [rooted2019]Carlos García - Pentesting Active Directory Forests [rooted2019]
Carlos García - Pentesting Active Directory Forests [rooted2019]
RootedCON4.5K views
Derbycon - The Unintended Risks of Trusting Active Directory by Will Schroeder
Derbycon - The Unintended Risks of Trusting Active DirectoryDerbycon - The Unintended Risks of Trusting Active Directory
Derbycon - The Unintended Risks of Trusting Active Directory
Will Schroeder35.8K views
0wn-premises: Bypassing Microsoft Defender for Identity by Nikhil Mittal
0wn-premises: Bypassing Microsoft Defender for Identity0wn-premises: Bypassing Microsoft Defender for Identity
0wn-premises: Bypassing Microsoft Defender for Identity
Nikhil Mittal1.6K views
PSConfEU - Offensive Active Directory (With PowerShell!) by Will Schroeder
PSConfEU - Offensive Active Directory (With PowerShell!)PSConfEU - Offensive Active Directory (With PowerShell!)
PSConfEU - Offensive Active Directory (With PowerShell!)
Will Schroeder9K views
Windows Threat Hunting by GIBIN JOHN
Windows Threat HuntingWindows Threat Hunting
Windows Threat Hunting
GIBIN JOHN1.4K views
Red Team Revenge - Attacking Microsoft ATA by Nikhil Mittal
Red Team Revenge - Attacking Microsoft ATARed Team Revenge - Attacking Microsoft ATA
Red Team Revenge - Attacking Microsoft ATA
Nikhil Mittal2.5K views
Evading Microsoft ATA for Active Directory Domination by Nikhil Mittal
Evading Microsoft ATA for Active Directory DominationEvading Microsoft ATA for Active Directory Domination
Evading Microsoft ATA for Active Directory Domination
Nikhil Mittal35.4K views
Gareth hayes. non alphanumeric javascript-php and shared fuzzing by Yury Chemerkin
Gareth hayes. non alphanumeric javascript-php and shared fuzzingGareth hayes. non alphanumeric javascript-php and shared fuzzing
Gareth hayes. non alphanumeric javascript-php and shared fuzzing
Yury Chemerkin1.7K views

Viewers also liked

BIND’s New Security Feature: DNSRPZ - the &quot;DNS Firewall&quot; by
BIND’s New Security Feature: DNSRPZ - the &quot;DNS Firewall&quot;BIND’s New Security Feature: DNSRPZ - the &quot;DNS Firewall&quot;
BIND’s New Security Feature: DNSRPZ - the &quot;DNS Firewall&quot;Barry Greene
12K views66 slides
Approaches to application request throttling by
Approaches to application request throttlingApproaches to application request throttling
Approaches to application request throttlingMaarten Balliauw
1.6K views51 slides
Hands-on getdns Tutorial by
Hands-on getdns TutorialHands-on getdns Tutorial
Hands-on getdns TutorialShumon Huque
660 views80 slides
IoT Security in Action - Boston Sept 2015 by
IoT Security in Action - Boston Sept 2015IoT Security in Action - Boston Sept 2015
IoT Security in Action - Boston Sept 2015Eurotech
3.4K views23 slides
Query-name Minimization and Authoritative Server Behavior by
Query-name Minimization and Authoritative Server BehaviorQuery-name Minimization and Authoritative Server Behavior
Query-name Minimization and Authoritative Server BehaviorShumon Huque
803 views42 slides
DNS and Troubleshooting DNS issues in Linux by
DNS and Troubleshooting DNS issues in LinuxDNS and Troubleshooting DNS issues in Linux
DNS and Troubleshooting DNS issues in LinuxKonkona Basu
3.4K views22 slides

Viewers also liked(20)

BIND’s New Security Feature: DNSRPZ - the &quot;DNS Firewall&quot; by Barry Greene
BIND’s New Security Feature: DNSRPZ - the &quot;DNS Firewall&quot;BIND’s New Security Feature: DNSRPZ - the &quot;DNS Firewall&quot;
BIND’s New Security Feature: DNSRPZ - the &quot;DNS Firewall&quot;
Barry Greene12K views
Approaches to application request throttling by Maarten Balliauw
Approaches to application request throttlingApproaches to application request throttling
Approaches to application request throttling
Maarten Balliauw1.6K views
Hands-on getdns Tutorial by Shumon Huque
Hands-on getdns TutorialHands-on getdns Tutorial
Hands-on getdns Tutorial
Shumon Huque660 views
IoT Security in Action - Boston Sept 2015 by Eurotech
IoT Security in Action - Boston Sept 2015IoT Security in Action - Boston Sept 2015
IoT Security in Action - Boston Sept 2015
Eurotech3.4K views
Query-name Minimization and Authoritative Server Behavior by Shumon Huque
Query-name Minimization and Authoritative Server BehaviorQuery-name Minimization and Authoritative Server Behavior
Query-name Minimization and Authoritative Server Behavior
Shumon Huque803 views
DNS and Troubleshooting DNS issues in Linux by Konkona Basu
DNS and Troubleshooting DNS issues in LinuxDNS and Troubleshooting DNS issues in Linux
DNS and Troubleshooting DNS issues in Linux
Konkona Basu3.4K views
Creating Domain Specific Languages in Python by Siddhi
Creating Domain Specific Languages in PythonCreating Domain Specific Languages in Python
Creating Domain Specific Languages in Python
Siddhi35.3K views
Are you ready for the next attack? reviewing the sp security checklist (apnic... by Barry Greene
Are you ready for the next attack? reviewing the sp security checklist (apnic...Are you ready for the next attack? reviewing the sp security checklist (apnic...
Are you ready for the next attack? reviewing the sp security checklist (apnic...
Barry Greene748 views
Indusrty Strategy For Action by Barry Greene
Indusrty Strategy For ActionIndusrty Strategy For Action
Indusrty Strategy For Action
Barry Greene600 views
DNS for Developers - NDC Oslo 2016 by Maarten Balliauw
DNS for Developers - NDC Oslo 2016DNS for Developers - NDC Oslo 2016
DNS for Developers - NDC Oslo 2016
Maarten Balliauw1.4K views
Remediating Violated Customers by Barry Greene
Remediating Violated CustomersRemediating Violated Customers
Remediating Violated Customers
Barry Greene869 views
OpenDNS Enterprise Web Content Filtering by OpenDNS
OpenDNS Enterprise Web Content FilteringOpenDNS Enterprise Web Content Filtering
OpenDNS Enterprise Web Content Filtering
OpenDNS1.4K views
A Designated ENUM DNS Zone Provisioning Architecture by enumplatform
A Designated ENUM DNS Zone Provisioning ArchitectureA Designated ENUM DNS Zone Provisioning Architecture
A Designated ENUM DNS Zone Provisioning Architecture
enumplatform1.1K views

Similar to I Have the Power(View)

Catalyst MVC by
Catalyst MVCCatalyst MVC
Catalyst MVCSheeju Alex
881 views31 slides
Advanced Ops Manager Topics by
Advanced Ops Manager TopicsAdvanced Ops Manager Topics
Advanced Ops Manager TopicsMongoDB
2.3K views39 slides
Veil-PowerView - NovaHackers by
Veil-PowerView - NovaHackersVeil-PowerView - NovaHackers
Veil-PowerView - NovaHackersVeilFramework
3.4K views16 slides
Go Hack Yourself - 10 Pen Test Tactics for Blue Teamers by
Go Hack Yourself - 10 Pen Test Tactics for Blue TeamersGo Hack Yourself - 10 Pen Test Tactics for Blue Teamers
Go Hack Yourself - 10 Pen Test Tactics for Blue Teamersjasonjfrank
18.4K views42 slides
Trusts You Might Have Missed by
Trusts You Might Have MissedTrusts You Might Have Missed
Trusts You Might Have MissedWill Schroeder
4.6K views50 slides
PowerShell - Be A Cool Blue Kid by
PowerShell - Be A Cool Blue KidPowerShell - Be A Cool Blue Kid
PowerShell - Be A Cool Blue KidMatthew Johnson
1.7K views49 slides

Similar to I Have the Power(View)(20)

Advanced Ops Manager Topics by MongoDB
Advanced Ops Manager TopicsAdvanced Ops Manager Topics
Advanced Ops Manager Topics
MongoDB2.3K views
Veil-PowerView - NovaHackers by VeilFramework
Veil-PowerView - NovaHackersVeil-PowerView - NovaHackers
Veil-PowerView - NovaHackers
VeilFramework3.4K views
Go Hack Yourself - 10 Pen Test Tactics for Blue Teamers by jasonjfrank
Go Hack Yourself - 10 Pen Test Tactics for Blue TeamersGo Hack Yourself - 10 Pen Test Tactics for Blue Teamers
Go Hack Yourself - 10 Pen Test Tactics for Blue Teamers
jasonjfrank18.4K views
Trusts You Might Have Missed by Will Schroeder
Trusts You Might Have MissedTrusts You Might Have Missed
Trusts You Might Have Missed
Will Schroeder4.6K views
PowerShell - Be A Cool Blue Kid by Matthew Johnson
PowerShell - Be A Cool Blue KidPowerShell - Be A Cool Blue Kid
PowerShell - Be A Cool Blue Kid
Matthew Johnson1.7K views
Mojo – Simple REST Server by hendrikvb
Mojo – Simple REST ServerMojo – Simple REST Server
Mojo – Simple REST Server
hendrikvb282 views
Derbycon - Passing the Torch by Will Schroeder
Derbycon - Passing the TorchDerbycon - Passing the Torch
Derbycon - Passing the Torch
Will Schroeder7.9K views
WWHF 2018 - Using PowerUpSQL and goddi for Active Directory Information Gathe... by ThomasElling1
WWHF 2018 - Using PowerUpSQL and goddi for Active Directory Information Gathe...WWHF 2018 - Using PowerUpSQL and goddi for Active Directory Information Gathe...
WWHF 2018 - Using PowerUpSQL and goddi for Active Directory Information Gathe...
ThomasElling1941 views
Bridging the Gap: Lessons in Adversarial Tradecraft by enigma0x3
Bridging the Gap: Lessons in Adversarial TradecraftBridging the Gap: Lessons in Adversarial Tradecraft
Bridging the Gap: Lessons in Adversarial Tradecraft
enigma0x31.7K views
PowerShell for Cyber Warriors - Bsides Knoxville 2016 by Russel Van Tuyl
PowerShell for Cyber Warriors - Bsides Knoxville 2016PowerShell for Cyber Warriors - Bsides Knoxville 2016
PowerShell for Cyber Warriors - Bsides Knoxville 2016
Russel Van Tuyl3.9K views
Php login system with admin features evolt by GIMT
Php login system with admin features   evoltPhp login system with admin features   evolt
Php login system with admin features evolt
GIMT15.8K views
MySQL server security by Damien Seguy
MySQL server securityMySQL server security
MySQL server security
Damien Seguy1.6K views
2017 OWASP SanFran March Meetup - Hacking SQL Server on Scale with PowerShell by Scott Sutherland
2017 OWASP SanFran March Meetup - Hacking SQL Server on Scale with PowerShell2017 OWASP SanFran March Meetup - Hacking SQL Server on Scale with PowerShell
2017 OWASP SanFran March Meetup - Hacking SQL Server on Scale with PowerShell
Scott Sutherland1.9K views
Windows power shell and active directory by Dan Morrill
Windows power shell and active directoryWindows power shell and active directory
Windows power shell and active directory
Dan Morrill1.8K views
Built-in query caching for all PHP MySQL extensions/APIs by Ulf Wendel
Built-in query caching for all PHP MySQL extensions/APIsBuilt-in query caching for all PHP MySQL extensions/APIs
Built-in query caching for all PHP MySQL extensions/APIs
Ulf Wendel3.4K views
Multi Tenancy With Python and Django by scottcrespo
Multi Tenancy With Python and DjangoMulti Tenancy With Python and Django
Multi Tenancy With Python and Django
scottcrespo11.6K views
Asian Spirit 3 Day Dba On Ubl by newrforce
Asian Spirit 3 Day Dba On UblAsian Spirit 3 Day Dba On Ubl
Asian Spirit 3 Day Dba On Ubl
newrforce1.3K views
General Principles of Web Security by jemond
General Principles of Web SecurityGeneral Principles of Web Security
General Principles of Web Security
jemond2.7K views

More from Will Schroeder

Nemesis - SAINTCON.pdf by
Nemesis - SAINTCON.pdfNemesis - SAINTCON.pdf
Nemesis - SAINTCON.pdfWill Schroeder
238 views32 slides
ReCertifying Active Directory by
ReCertifying Active DirectoryReCertifying Active Directory
ReCertifying Active DirectoryWill Schroeder
1.8K views37 slides
Certified Pre-Owned by
Certified Pre-OwnedCertified Pre-Owned
Certified Pre-OwnedWill Schroeder
1.5K views30 slides
SpecterOps Webinar Week - Kerberoasting Revisisted by
SpecterOps Webinar Week - Kerberoasting RevisistedSpecterOps Webinar Week - Kerberoasting Revisisted
SpecterOps Webinar Week - Kerberoasting RevisistedWill Schroeder
3.7K views27 slides
The Unintended Risks of Trusting Active Directory by
The Unintended Risks of Trusting Active DirectoryThe Unintended Risks of Trusting Active Directory
The Unintended Risks of Trusting Active DirectoryWill Schroeder
8.4K views46 slides
An ACE in the Hole - Stealthy Host Persistence via Security Descriptors by
An ACE in the Hole - Stealthy Host Persistence via Security DescriptorsAn ACE in the Hole - Stealthy Host Persistence via Security Descriptors
An ACE in the Hole - Stealthy Host Persistence via Security DescriptorsWill Schroeder
6.9K views63 slides

More from Will Schroeder(18)

ReCertifying Active Directory by Will Schroeder
ReCertifying Active DirectoryReCertifying Active Directory
ReCertifying Active Directory
Will Schroeder1.8K views
SpecterOps Webinar Week - Kerberoasting Revisisted by Will Schroeder
SpecterOps Webinar Week - Kerberoasting RevisistedSpecterOps Webinar Week - Kerberoasting Revisisted
SpecterOps Webinar Week - Kerberoasting Revisisted
Will Schroeder3.7K views
The Unintended Risks of Trusting Active Directory by Will Schroeder
The Unintended Risks of Trusting Active DirectoryThe Unintended Risks of Trusting Active Directory
The Unintended Risks of Trusting Active Directory
Will Schroeder8.4K views
An ACE in the Hole - Stealthy Host Persistence via Security Descriptors by Will Schroeder
An ACE in the Hole - Stealthy Host Persistence via Security DescriptorsAn ACE in the Hole - Stealthy Host Persistence via Security Descriptors
An ACE in the Hole - Stealthy Host Persistence via Security Descriptors
Will Schroeder6.9K views
A Case Study in Attacking KeePass by Will Schroeder
A Case Study in Attacking KeePassA Case Study in Attacking KeePass
A Case Study in Attacking KeePass
Will Schroeder9.9K views
The Travelling Pentester: Diaries of the Shortest Path to Compromise by Will Schroeder
The Travelling Pentester: Diaries of the Shortest Path to CompromiseThe Travelling Pentester: Diaries of the Shortest Path to Compromise
The Travelling Pentester: Diaries of the Shortest Path to Compromise
Will Schroeder9.1K views
Trusts You Might Have Missed - 44con by Will Schroeder
Trusts You Might Have Missed - 44conTrusts You Might Have Missed - 44con
Trusts You Might Have Missed - 44con
Will Schroeder5.6K views
Building an EmPyre with Python by Will Schroeder
Building an EmPyre with PythonBuilding an EmPyre with Python
Building an EmPyre with Python
Will Schroeder4.7K views
PSConfEU - Building an Empire with PowerShell by Will Schroeder
PSConfEU - Building an Empire with PowerShellPSConfEU - Building an Empire with PowerShell
PSConfEU - Building an Empire with PowerShell
Will Schroeder3.3K views
Drilling deeper with Veil's PowerTools by Will Schroeder
Drilling deeper with Veil's PowerToolsDrilling deeper with Veil's PowerTools
Drilling deeper with Veil's PowerTools
Will Schroeder6.3K views
Adventures in Asymmetric Warfare by Will Schroeder
Adventures in Asymmetric WarfareAdventures in Asymmetric Warfare
Adventures in Asymmetric Warfare
Will Schroeder2.8K views
PowerUp - Automating Windows Privilege Escalation by Will Schroeder
PowerUp - Automating Windows Privilege EscalationPowerUp - Automating Windows Privilege Escalation
PowerUp - Automating Windows Privilege Escalation
Will Schroeder15.9K views

Recently uploaded

AI Powered event-driven translation bot by
AI Powered event-driven translation botAI Powered event-driven translation bot
AI Powered event-driven translation botJimmy Dahlqvist
16 views31 slides
Sustainable Marketing by
Sustainable MarketingSustainable Marketing
Sustainable MarketingTheo van der Zee
9 views50 slides
UiPath Document Understanding_Day 3.pptx by
UiPath Document Understanding_Day 3.pptxUiPath Document Understanding_Day 3.pptx
UiPath Document Understanding_Day 3.pptxUiPathCommunity
95 views25 slides
We see everywhere that many people are talking about technology.docx by
We see everywhere that many people are talking about technology.docxWe see everywhere that many people are talking about technology.docx
We see everywhere that many people are talking about technology.docxssuserc5935b
6 views2 slides
WEB 2.O TOOLS: Empowering education.pptx by
WEB 2.O TOOLS: Empowering education.pptxWEB 2.O TOOLS: Empowering education.pptx
WEB 2.O TOOLS: Empowering education.pptxnarmadhamanohar21
15 views16 slides
informing ideas.docx by
informing ideas.docxinforming ideas.docx
informing ideas.docxMollyBrown86
12 views10 slides

Recently uploaded(20)

AI Powered event-driven translation bot by Jimmy Dahlqvist
AI Powered event-driven translation botAI Powered event-driven translation bot
AI Powered event-driven translation bot
Jimmy Dahlqvist16 views
UiPath Document Understanding_Day 3.pptx by UiPathCommunity
UiPath Document Understanding_Day 3.pptxUiPath Document Understanding_Day 3.pptx
UiPath Document Understanding_Day 3.pptx
UiPathCommunity95 views
We see everywhere that many people are talking about technology.docx by ssuserc5935b
We see everywhere that many people are talking about technology.docxWe see everywhere that many people are talking about technology.docx
We see everywhere that many people are talking about technology.docx
ssuserc5935b6 views
Existing documentaries (1).docx by MollyBrown86
Existing documentaries (1).docxExisting documentaries (1).docx
Existing documentaries (1).docx
MollyBrown8613 views
IETF 118: Starlink Protocol Performance by APNIC
IETF 118: Starlink Protocol PerformanceIETF 118: Starlink Protocol Performance
IETF 118: Starlink Protocol Performance
APNIC124 views
𝐒𝐨𝐥𝐚𝐫𝐖𝐢𝐧𝐝𝐬 𝐂𝐚𝐬𝐞 𝐒𝐭𝐮𝐝𝐲 by Infosec train
𝐒𝐨𝐥𝐚𝐫𝐖𝐢𝐧𝐝𝐬 𝐂𝐚𝐬𝐞 𝐒𝐭𝐮𝐝𝐲𝐒𝐨𝐥𝐚𝐫𝐖𝐢𝐧𝐝𝐬 𝐂𝐚𝐬𝐞 𝐒𝐭𝐮𝐝𝐲
𝐒𝐨𝐥𝐚𝐫𝐖𝐢𝐧𝐝𝐬 𝐂𝐚𝐬𝐞 𝐒𝐭𝐮𝐝𝐲
Infosec train7 views
Building trust in our information ecosystem: who do we trust in an emergency by Tina Purnat
Building trust in our information ecosystem: who do we trust in an emergencyBuilding trust in our information ecosystem: who do we trust in an emergency
Building trust in our information ecosystem: who do we trust in an emergency
Tina Purnat85 views
Serverless cloud architecture patterns by Jimmy Dahlqvist
Serverless cloud architecture patternsServerless cloud architecture patterns
Serverless cloud architecture patterns
Jimmy Dahlqvist17 views
Opportunities for Youth in IG - Alena Muravska RIPE NCC.pdf by RIPE NCC
Opportunities for Youth in IG - Alena Muravska RIPE NCC.pdfOpportunities for Youth in IG - Alena Muravska RIPE NCC.pdf
Opportunities for Youth in IG - Alena Muravska RIPE NCC.pdf
RIPE NCC9 views

I Have the Power(View)

  • 2. @harmj0y Co-founder of Empire | Veil-Framework | PowerTools PowerSploit developer Researcher at Veris Group’s Adaptive Threat Division
  • 3. What I am Not Covering ▣ Any kind of memory corruption attacks ○ We haven’t thrown an exploit in years ▣ Too Much Active Directory background ○ Too many slides, too little time :( ▣ Mimikatz and Kerberos attacks ○ Covered better and in more depth by others ▣ PowerShell Weaponization ○ We like Empire and Cobalt Strike ;)
  • 4. What I am Covering ▣ Offensive Active Directory 101 ○ Why care? And what’s Powerview? ▣ Identifying/Hunting Your Prey ▣ Local Administrator Enumeration ▣ GPO Enumeration and Abuse ▣ AD ACLs (and a few persistence methods) ▣ Domain Trusts (enumeration and abuse) ▣ Lots of PowerView tips and tricks ○ and a lot of ground to cover!
  • 5. 1. Offensive AD 101 and ‘Why PowerShell’
  • 6. Active Directory 101 ▣ At its core, Active Directory is a way to organize user and computer objects ○ Used to authenticate and authorize users and computers on a network and provide access to specific resources ○ Also provides security policies, centralized management, and other rich features ▣ Red teams and real bad guys have been abusing AD for years, but not much offensive AD information has existed publicly (until fairly recently)
  • 7. Why Not The Active Directory Cmdlets? ▣ The RSAT-AD-PowerShell module is: ○ only compatible with PowerShell 3.0+ ○ only installed by default on servers with the Active Directory Domain Services role ▣ We want something: ○ PowerShell 2.0 compliant (yay Win7) ○ fully self-contained with no dependencies ○ usable without any installation
  • 8. PowerView ▣ A pure PowerShell domain/network situational awareness tool ○ everything is kept version 2.0 compliant ○ now part of PowerSploit™! (not really trademarked) ▣ Built to automate large components of the tradecraft on our red team engagements ▣ No installation and can reside purely in memory ○ and PowerShell 2.0 is included by default in Win7
  • 9. Sidenote: LDAP Optimizations ▣ A lot of the PowerView domain functionality reduces down to various chained and optimized LDAP queries ▣ Much is transparent to the user: ○ e.g. LDAP queries for foreign domains are ‘reflected’ through the current domain PDC to get around network segmentation ▣ Much of this of isn’t revolutionary, but chaining functionality lets you pull off some awesome stuff
  • 10. Also: The Pipeline ▣ The PowerShell pipeline allows you to pass full objects between functions (instead of just strings) ▣ This lets you perform complex chaining and filtering, allowing you accomplish a lot very quickly ▣ Users who’ve logged on within the last week: ○ Get-NetUser | ? {$_.lastlogon -gt [DateTime]::Today. AddDays(-7)} | Sort-Object name
  • 11. 2. Identifying and Hunting Your Prey Who Are my Admins and Where Are They At?
  • 12. ▣ Before you start targeted spread, you need to know who you’re going after ▣ PowerView helps with enumeration of: ○ Users: Get-NetUser <*USER*> ○ Groups: Get-NetGroup <*admin*> ○ Group members: Get-NetGroupMember <GroupName> ▣ All of the above also accept manual LDAP filters with -Filter “(field=*value*)” Who Are My Admins?
  • 13. ▣ Get all the groups a user is effectively a member of ('recursing up'): ○ Get-NetGroup -UserName <USER> ▣ Get all the effective members of a group ('recursing down'): ○ Get-NetGroupMember -GoupName <GROUP> -Recurse ▣ Search the forest global catalog: ○ Get-NetUser -UserName <USER> -ADSpath “GC: //domain.com” PowerTips
  • 14. ▣ Machine accounts can sometimes end up in privileged groups https://adsecurity.org/?p=2753 ▣ To find any computer accounts in any privileged groups: Privileged Machine Accounts Get-NetGroup -AdminCount | ` Get-NetGroupMember -Recurse | ` ?{$_.MemberName -like '*$'}
  • 15. ▣ Some organizations separate out administrative functionality into multiple accounts for the same person ○ e.g. “john” and“john-admin” ▣ By performing some correlation on AD data objects, you can often pull out groupings of accounts likely owned by the same person ○ We often hunt for/compromise an admin’s unprivileged account Separated Roles
  • 16. ▣ Finding all user accounts with a specific email address: ▣ Get-NetUser -Filter "(mail=john@domain.com)" Separated Roles - Simple Example
  • 17. ▣ Get-NetGroupMember -GroupName "Domain Admins" -FullData | %{ $a=$_.displayname.split (" ")[0..1] -join " "; Get-NetUser -Filter "(displayname=*$a*)" } | Select-Object - Property displayname,samaccountname Separated Roles - Complex Example
  • 18. Separated Roles - Complex Example
  • 19. 1. Query for all members of “Domain Admins” in the current domain, returning the full data objects 2. Extract out the “Firstname Lastname” from DisplayName for each user object 3. Query for additional users with the same “Firstname Lastname” Separated Roles - Complex Example In plain English:
  • 20. ▣ Once you’ve identified who you want to go after, you need to know where they’re located ▣ We break this down into: ○ pre-elevated access, when you have regular domain privileges. This is usually the lateral spread phase. ○ post-elevated access, when you have elevated (e.g. Domain Admin) privileges. This is usually the ‘demonstrate impact’ phase. I Hunt Sysadmins
  • 21. ▣ Flexible PowerView function that: ○ queries AD for hosts or takes a target list ○ queries AD for users of a target group, or takes a list/single user ○ uses Win32 API calls to enumerate sessions and logged in users, matching against the target user list ○ Doesn’t need administrative privileges! ▣ We like using the -ShowAll flag and grepping results for future analysis Invoke-UserHunter
  • 23. ▣ Uses an old red teaming trick: ○ Queries AD for all users and extracts all homeDirectory/scriptPath/profilePath fields (as well as DFS shares and DCs) to identify highly trafficked servers ○ Runs Get-NetSession against each file server to enumerate remote sessions, match against target users ▣ Reasonable coverage with a lot less traffic ○ also doesn’t need admin privileges ○ also accepts the -ShowAll flag Invoke-UserHunter -Stealth
  • 26. The WinNT Service Provider ▣ Leftover from Windows NT domain deployments ○ ([ADSI]"WinNT://SERVER/Administrators").psbase. Invoke('Members') | %{$_.GetType().InvokeMember ("Name", 'GetProperty', $null, $_, $null)} ▣ With an unprivileged domain account, you can use PowerShell and WinNT to enumerate all members (local and domain) of a local group on a remote machine
  • 27. Get-NetLocalGroup ▣ Get-NetLocalGroup <SERVER> ○ -ListGroups will list the groups ○ a group can be specified with -GroupName <GROUP> ▣ The -Recurse flag will resolve the members of any result that’s a group, giving you a list of effective domain users that can access a given server ○ Invoke-UserHunter -TargetServer <SERVER> will use this to hunt for users who can admin a particular server
  • 29. “Derivative Local Admin” ▣ Large enterprise networks often utilize heavily delegated group roles ▣ From the attacker perspective, anyone who could be used to chain to that local administrative access can be considered a target ▣ More info from @sixdub: http://www.sixdub.net/? p=591
  • 30. “Derivative Local Admin” ▣ Tim (a domain admin) is on a machine w/ WorkstationAdminsA in the local admins ▣ WorkstationAdminsA contains Bob ▣ Bob’s machine has WorkstationAdminsB ▣ WorkstationAdminsB contains Eve ▣ If we exploit Eve, we can get Bob and any workstation he has access to, chaining to compromise Tim ▣ Eve’s admin privileges on A’s machine derive through Bob
  • 32. “Derivative Local Admin” ▣ Can be require several hops ▣ The process: ○ Invoke-UserHunter –Stealth –ShowAll to get required user location data ○ Get-NetLocalGroup –Recurse to identify the local admins on the target ○ Use location data to find those users ○ Get-NetLocalGroup -Recurse on locations discovered ○ Use location data to find those users ○ Continue until you find your path!
  • 33. ▣ Recently released by fellow ATD member Andy Robbins (@_wald0) ▣ Uses input from PowerView along with graph theory and Dijkstra’s algorithm to automate the chaining of local accesses ▣ More information from @_wald0: https://wald0. com/?p=14 “Automated Derivative Local Admin”
  • 34. 4. GPO Abuse Why Not Just Ask the Domain Controller?
  • 35. Group Policy Preferences ▣ Many organizations historically used Group Policy Preference files to set the local administrator password for machines ○ This password is encrypted but reversible ○ The patch for this prevents now reversible passwords from being set but doesn’t remove the old files ▣ PowerSploit’s Get-GPPPassword will find and decrypt any of these passwords found on a DC’s SYSVOL
  • 37. PowerView and GPP ▣ If you’re able to recover a cpassword from a Group Policy Preferences file you can use PowerView to quickly locate all machines that password is set on! ▣ Get-NetOU -GUID <GPP_GUID> | %{ Get- NetComputer -ADSPath $_ }
  • 38. More GPO Enumeration ▣ Group Policy Objects (though a GptTmpl.inf) can determine what users have local admin rights by setting ‘Restricted Groups’ ○ Group Policy Preferences can do something similar with “groups.xml” ▣ If we have a user account, why not just ask the GPO configuration where this user has local administrative rights?
  • 39. More GPO Enumeration ▣ Find-GPOLocation will: 1. resolve a user's sid 2. build a list of group SIDs the user is a part of 3. use Get-NetGPOGroup to pull GPOs that set 'Restricted Groups' or GPPs that set groups.xml 4. match the target SID list to the queried GPO SID list to enumerate all GPOs the user is effectively applied 5. enumerate all OUs and sites and applicable GPO GUIs are applied to through gplink enumeration 6. query for all computers under the given OUs or sites
  • 41. 5. Active Directory ACLs AD Objects Have Permissions Too!
  • 42. ▣ AD objects (like files) have permissions/access control lists ○ These can sometimes be misconfigured, and can also be backdoored for persistence ▣ Get-ObjectACL -ResolveGUIDs - SamAccountName <NAME> ▣ Set-ObjectACL lets you modify ;) ○ more on this in a bit AD ACLs
  • 44. ▣ Group policy objects are of particular interest ▣ Any user with modification rights to a GPO can get code execution for machine the GPO is applied to ▣ Get-NetGPO | %{Get-ObjectAcl -ResolveGUIDs - Name $_.Name} GPO ACLs
  • 46. Auditing AD ACLs ▣ Pulling all AD ACLs will give you A MOUNTAIN of data ▣ Invoke-ACLScanner will scan specifable AD objects (default to all domain objects) for ACLs with modify rights and a domain RID of >1000 ▣ This helps narrow down the search scope to find possibly misconfigured/backdoored AD object permissions
  • 47. AdminSDHolder ▣ AdminSDHolder is a special Active Directory object located at “CN=AdminSDHolder,CN=System, DC=domain,DC=com” ▣ If you modify the permissions of AdminSDHolder, that permission template will be pushed out to all protected admin accounts automatically by SDProp ▣ More info: https://adsecurity.org/?p=1906
  • 48. PowerView and AdminSDHolder ▣ Add-ObjectAcl -TargetADSprefix 'CN=AdminSDHolder,CN=System' … will let you modify AdminADHolder:
  • 49. Targeted Plaintext Downgrades ▣ Another legacy/backwards compatibility feature:
  • 50. Targeted Plaintext Downgrades ▣ We can set ENCRYPTED_TEXT_PWD_ALLOWED with PowerView: ○ Set-ADObject -SamAccountName <USER> - PropertyName useraccountcontrol - PropertyXorValue 128 ▣ Invoke-DowngradeAccount <USER> will downgrade the encryption and forces the user to change their password on next login
  • 51. Targeted Plaintext Downgrades ▣ After Mimimatz’ DCSync
  • 52. Speaking of DCSync... ▣ There’s a small set of permissions needed to execute DCSync on a domain:
  • 53. ▣ PowerView lets you easily enumerate all users with replication/DCSync rights for a particular domain: PowerView and DCSync Get-ObjectACL -DistinguishedName "dc=testlab, dc=local" -ResolveGUIDs | ? { ($_.ObjectType -match 'replication-get') -or ` ($_.ActiveDirectoryRights -match 'GenericAll') }
  • 54. ▣ You can easily modify the permissions of of the domain partition itself with PowerView’s Add- ObjectACL and “-Rights DCSync” A DCSync Backdoor Add-ObjectACL -TargetDistinguishedName "dc=testlab,dc=local" - PrincipalSamAccountName jason -Rights DCSync
  • 56. 6. Domain Trusts Or: Why You Shouldn’t Trust AD
  • 57. Domain Trusts 101 ▣ Trusts allow separate domains to form inter- connected relationships ○ Often utilized during acquisitions (i.e. forest trusts or cross-link trusts) ▣ A trust just links up the authentication systems of two domains and allows authentication traffic to flow between them ▣ A trust allows for the possibility of privileged access between domains, but doesn’t guarantee it*
  • 58. Why Does This Matter? ▣ Red teams often compromise accounts/machines in a domain trusted by their actual target ▣ This allows operators to exploit these existing trust relationships to achieve their end goal ▣ I LOVE TRUSTS: http://www.harmj0y. net/blog/tag/domain-trusts/
  • 59. PowerView Trust Enumeration ▣ Domain/forest trust relationships can be enumerated through several PowerView functions: ○ Get-NetForest: info about the current forest ○ Get-NetForestTrust: grab all forest trusts ○ Get-NetForestDomain: grab all domains in a forest ○ Get-NetDomainTrust: nltest à la PowerShell ▣ If a trust exists, most functions in PowerView can accept a “-Domain <name>” flag to operate across a trust
  • 60. Mapping the Mesh ▣ Large organizations with tons of subgroups/subsidiaries/acquisitions can end up with a huge mesh of domain trusts ○ mapping this mesh used to be manual and time- consuming process ▣ Invoke-MapDomainTrust can recursively map all reachable domain and forest trusts ○ The -LDAP flag gets around network restrictions at the cost of accuracy
  • 62. Visualizing the Mesh ▣ This raw data is great, but it’s still raw ▣ @sixdub’s DomainTrustExplorer tool can perform nodal analysis of trust data ○ https://github.com/sixdub/DomainTrustExplorer ○ It can also generate GraphML output of the entire mesh, which yED can use to build visualizations ▣ More information: http://www.sixdub.net/?p=285
  • 65. The Mimikatz Trustpocalypse ▣ Thanks to @gentilkiwi and @pyrotek3, Mimikatz Golden Tickets now accept SIDHistories though the new /sids:<X> argument ▣ If you compromise a DC in a child domain, you can create a golden ticket with the “Enterprise Admins” in the SID history ▣ This can let you compromise the forest root and all forest domains! ○ won’t work for external domain trusts b/c of sid filtering
  • 66. The Mimikatz Trustpocalypse If you compromise any domain administrator of any domain in a forest, you can compromise the entire forest!
  • 68. Sidenote: CheatSheets! ▣ We’ve released cheetsheets for PowerView as well as PowerUp and Empire at https://github. com/harmj0y/cheatsheets/
  • 69. Credits Thanks to Sean Metcalf (@pyrotek3) for guidance, ideas, and awesome information on offensive Active Directory approaches. Check out his blog at http://adsecurity.org ! Thanks to Benjamin Delpy (@gentilkiwi) and Vincent LE TOUX for Mimikatz and its DCSync capability! Thanks to Ben Campbell (@meatballs__) for PowerView modifications and LDAP optimizations! And a big thanks to Justin Warner (@sixdub) and the rest of the ATD team for tradecraft development and helping making PowerView not suck!
  • 70. Any questions? @harmj0y http://blog.harmj0y.net/ will [at] harmj0y.net harmj0y on Freenode in #psempire