From cybersecurity-skills
Conducts Pass-the-Ticket lateral movement attacks using stolen Kerberos tickets (TGT/TGS). Covers ticket extraction from LSASS, injection, and lateral movement. For red team assessments.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersecurity-skills:conducting-pass-the-ticket-attackThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Legal Notice:** This skill is for authorized security testing and educational purposes only. Unauthorized use against systems you do not own or have written permission to test is illegal and may violate computer fraud laws.
Legal Notice: This skill is for authorized security testing and educational purposes only. Unauthorized use against systems you do not own or have written permission to test is illegal and may violate computer fraud laws.
Pass-the-Ticket (PtT) is a lateral movement technique that uses stolen Kerberos tickets (TGT or TGS) to authenticate to services without knowing the user's password. By extracting Kerberos tickets from memory (LSASS) on a compromised host, an attacker can inject those tickets into their own session to impersonate the ticket owner and access resources as that user.
| Tool | Purpose | Command |
|---|---|---|
| Mimikatz | Ticket export/import | sekurlsa::tickets /export, kerberos::ptt |
| Rubeus | Ticket dumping and injection | dump, ptt, tgtdeleg |
| Impacket ticketConverter | Convert between formats | ticketConverter.py ticket.kirbi ticket.ccache |
| Impacket psexec/smbexec | Remote execution with ticket | KRB5CCNAME=ticket.ccache psexec.py |
npx claudepluginhub mukul975/anthropic-cybersecurity-skills --plugin cybersecurity-skillsConducts Pass-the-Ticket lateral movement attacks using stolen Kerberos tickets (TGT/TGS). Covers ticket extraction from LSASS, injection, and lateral movement. For red team assessments.
Demonstrates Pass-the-Ticket (PtT) lateral movement using stolen Kerberos tickets extracted from LSASS memory with Mimikatz or Rubeus.
Guides conducting Pass-the-Ticket attacks for red-teaming: extract Kerberos tickets from LSASS with Mimikatz/Rubeus, inject for passwordless lateral movement.