Conducting Pass The Ticket Attack
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 fro
MCP get_skill({ skillId: "conducting-pass-the-ticket-attack-4545886a" })Use this skill with your agent
Create a free account and connect via MCP
# Conducting Pass-the-Ticket Attack > **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. ## Overview 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. ## When to Use - When conducting security assessments that involve conducting pass the ticket attack - When following incident response procedures for related security events - When performing scheduled security testing or auditing activities - When validating security controls through hands-on testing ## Prerequisites - Familiarity with red teaming concepts and tools - Access to a test or lab environment for safe execution - Python 3.8+ with required dependencies installed - Appropriate authorization for any testing activities ## MITRE ATT&CK Mapping - **T1550.003** - Use Alternate Authentication Material: Pass the Ticket - **T1003.001** - OS Credential Dumping: LSASS Memory - **T1558** - Steal or Forge Kerberos Tickets - **T1021.002** - Remote Services: SMB/Windows Admin Shares ## Workflow ### Phase 1: Ticket Extraction 1. Gain local admin access on target workstation 2. Dump Kerberos tickets from LSASS memory using Mimikatz or Rubeus 3. Export tickets in .kirbi format (Mimikatz) or base64 (Rubeus) 4. Identify high-value tickets (Domain Admin TGTs, service tickets to critical systems) ### Phase 2: Ticket Injection 1. Purge existing Kerberos tickets from attacker session 2. Import/inject stolen ticket into current session 3. Verify ticket is loaded and valid 4. Access target resources using injected ticket ### Phase 3: Lateral Movement 1. Access remote systems using the stolen ticket identity 2. Perform actions as the impersonated user 3. Collect additional credentials from accessed systems 4. Document evidence of successful lateral movement ## Tools and Resources | 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 | ## Detection Indicators - Event ID 4768 with unusual client addresses - Event ID 4769 service ticket requests from unexpected hosts - TGT usage from different IP than the TGT was issued to - Multiple authentications from same ticket across different workstations ## Validation Criteria - [ ] Kerberos tickets extracted from compromised host - [ ] Tickets injected into attacker session - [ ] Lateral movement demonstrated using stolen tickets - [ ] Evidence captured for reporting
Related Skills
More skills in Security & Compliance
1password
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in, and reading/injecting secrets for commands.
1password
Set up and use 1Password CLI for sign-in, desktop integration, and reading or injecting secrets.
Accessibility Lead
Accessibility team lead and orchestrator. Use proactively on EVERY task that involves web UI code, HTML, JSX, CSS, React components, web pages, server-side templates (.leaf, .ejs, .erb, .hbs), or any user-facing web content. This agent coordinates the accessibility specialist team and ensures no accessibility requirement is missed. Runs the final review before any UI code is considered complete. Applies to any web framework, server-side templating framework (Vapor/Leaf, Rails/ERB, Django/Jinja, Express/EJS), or vanilla HTML/CSS/JS. Works alongside other team leads (e.g., swift-lead) in multi-language projects.
Accessibility Regression Detector
Detects accessibility regressions by comparing audit results across commits/branches. Tracks score trends, identifies new issues, and validates previous fixes remain in place.
Accessibility Statement
Generates conformance/accessibility statements following W3C or EU model templates. Takes audit results as input, maps to conformance claims, identifies known limitations, and outputs a deployable HTML page or markdown document.
Accessibility Tool Builder
Expert in building accessibility scanning tools, rule engines, document parsers, report generators, and audit automation. WCAG criterion mapping, severity scoring, CLI/GUI scanner architecture, CI/CD integration.
Explore Other Categories
Skills from other categories with shared topics
Analyzing Malicious PDF With Peepdf
Perform static analysis of malicious PDF documents using peepdf, pdfid, and pdf-parser to extract embedded JavaScript, shellcode, and suspicious objects.
Analyzing PDF Malware With Pdfid
Analyzes malicious PDF files using PDFiD, pdf-parser, and peepdf to identify embedded JavaScript, shellcode, exploits, and suspicious objects without opening the document. Determines the attack vector and extracts embedded payloads for further analysis. Activates for requests involving PDF malware analysis, malicious document analysis, PDF exploit investigation, or suspicious attachment triage.
Building Devsecops Pipeline With GitLab CI
Design and implement a comprehensive DevSecOps pipeline in GitLab CI/CD integrating SAST, DAST, container scanning, dependency scanning, and secret detection.