T1550.003 IBM QRadar · QRadar

Detect Pass the Ticket in IBM QRadar

Adversaries may 'pass the ticket' using stolen Kerberos tickets to move laterally within an environment, bypassing normal system access controls and credential requirements. Pass the Ticket (PtT) involves injecting a valid Kerberos Ticket Granting Ticket (TGT) or service ticket into a current Windows logon session, allowing authentication to resources as the ticket's owner without knowing the account password. Tickets are typically obtained via OS credential dumping against LSASS memory (using tools like Mimikatz sekurlsa::tickets or Rubeus dump) and then injected with Mimikatz kerberos::ptt or Rubeus ptt. A Silver Ticket attack forges a service ticket using a compromised service account's NTLM hash, granting access to that specific service. A Golden Ticket forges a TGT using the krbtgt account hash, effectively granting domain-wide persistence. 'Overpass the Hash' uses an NTLM hash to request a legitimate Kerberos TGT, bridging Pass the Hash and Pass the Ticket. Real-world users of this technique include APT29 (Kerberos ticket attacks during Nobelium campaigns), APT32 (Cobalt Kitty operation), BRONZE BUTLER (forged TGTs for persistent administrative access), and the SeaDuke malware. The technique is operationalized primarily through Mimikatz (kerberos::ptt, sekurlsa::tickets), Rubeus (asktgt, dump, ptt, tgtdeleg), Kekeo, and Impacket (getTGT.py, getST.py, psexec.py with ccache files).

MITRE ATT&CK

Tactic
Defense Evasion Lateral Movement
Technique
T1550 Use Alternate Authentication Material
Sub-technique
T1550.003 Pass the Ticket
Canonical reference
https://attack.mitre.org/techniques/T1550/003/

QRadar Detection Query

IBM QRadar (QRadar)
sql
-- Signal 1: PtT tool execution from Windows Security Event 4688 or Sysmon 1
SELECT
  DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') AS event_time,
  sourceip,
  username,
  QIDNAME(qid) AS event_name,
  CATEGORYNAME(category) AS category_name,
  "Process Name" AS process_name,
  "Command" AS command_line,
  'PtT Tool Execution' AS detection_signal
FROM events
WHERE
  LOGSOURCETYPEID(devicetype) IN (12, 14, 352)
  AND (
    LOWER("Process Name") IN ('mimikatz.exe', 'rubeus.exe', 'kekeo.exe')
    OR LOWER("Command") ILIKE '%kerberos::ptt%'
    OR LOWER("Command") ILIKE '%sekurlsa::tickets%'
    OR LOWER("Command") ILIKE '%sekurlsa::krbtgt%'
    OR LOWER("Command") ILIKE '%asktgt%'
    OR LOWER("Command") ILIKE '%tgtdeleg%'
    OR LOWER("Command") ILIKE '%s4u2self%'
    OR LOWER("Command") ILIKE '%s4u2proxy%'
    OR LOWER("Command") ILIKE '%/ptt%'
    OR LOWER("Command") ILIKE '%.kirbi%'
    OR LOWER("Command") ILIKE '%.ccache%'
    OR LOWER("Command") ILIKE '%ticketer%'
    OR LOWER("Command") ILIKE '%getTGT%'
    OR LOWER("Command") ILIKE '%getST%'
    OR LOWER("Command") ILIKE '%harvest /interval%'
  )
  AND DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') > DATEADD('hour', -24, NOW())
UNION ALL
-- Signal 2: RC4 Kerberos service ticket request (Event 4769, EncType 0x17)
SELECT
  DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') AS event_time,
  sourceip,
  username,
  QIDNAME(qid) AS event_name,
  CATEGORYNAME(category) AS category_name,
  "Service Name" AS process_name,
  "Ticket Encryption Type" AS command_line,
  'RC4 Kerberos Downgrade (Possible Forgery)' AS detection_signal
FROM events
WHERE
  LOGSOURCETYPEID(devicetype) IN (12, 14)
  AND QIDNAME(qid) ILIKE '%Kerberos Service Ticket Operations%'
  AND "Ticket Encryption Type" = '0x17'
  AND "Failure Code" = '0x0'
  AND username NOT LIKE '%$'
  AND "Service Name" NOT LIKE '%$'
  AND DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') > DATEADD('hour', -24, NOW())
UNION ALL
-- Signal 3: NewCredentials logon type 9 with Kerberos (Event 4624)
SELECT
  DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') AS event_time,
  sourceip,
  username,
  QIDNAME(qid) AS event_name,
  CATEGORYNAME(category) AS category_name,
  "Logon Type" AS process_name,
  "Authentication Package" AS command_line,
  'Kerberos NewCredentials Logon (Possible PtT Injection)' AS detection_signal
FROM events
WHERE
  LOGSOURCETYPEID(devicetype) IN (12, 14)
  AND QIDNAME(qid) ILIKE '%An account was successfully logged on%'
  AND "Logon Type" = '9'
  AND "Authentication Package" = 'Kerberos'
  AND DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') > DATEADD('hour', -24, NOW())
ORDER BY event_time DESC
critical severity medium confidence

QRadar AQL query detecting Pass the Ticket across three signals: PtT tool execution (Mimikatz/Rubeus/Kekeo command lines), RC4 Kerberos service ticket requests (Event 4769 EncType 0x17 indicating possible ticket downgrade or Silver/Golden Ticket forgery), and Kerberos logon type 9 (NewCredentials) indicating local ticket injection for outbound lateral movement.

Data Sources

Windows Security Event Log via QRadar DSMSysmon via QRadar DSMMicrosoft Windows DHCP

Required Tables

events

False Positives & Tuning

  • Legacy Windows environments with RC4 encryption explicitly configured for backward compatibility will generate 4769 events with EncType 0x17 legitimately
  • RunAs /netonly commands used by IT administrators to run tools under alternate credentials create logon type 9 events with Kerberos
  • Security assessment tools or authorized red team tooling matching PtT command-line patterns during scheduled engagements
Download portable Sigma rule (.yml)

Other platforms for T1550.003


Testing Methodology

Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Mimikatz kerberos::ptt — Inject Existing Kerberos Ticket

    Expected signal: Sysmon Event ID 1: Process Create with Image=mimikatz.exe, CommandLine containing 'sekurlsa::tickets /export' and 'kerberos::ptt'. Sysmon Event ID 10: ProcessAccess event targeting lsass.exe from mimikatz.exe with GrantedAccess 0x1010 or 0x1438. Sysmon Event ID 11: File Create events for .kirbi files in the working directory. Windows Security Event ID 4769 may appear on the domain controller if tickets are subsequently used for network authentication.

  2. Test 2Rubeus asktgt + ptt — Request and Inject TGT

    Expected signal: Sysmon Event ID 1: Process Create with Image=Rubeus.exe, CommandLine containing 'asktgt', '/rc4', and '/ptt'. Windows Security Event ID 4768 on the domain controller: Kerberos Authentication Service with TicketEncryptionType=0x17 (RC4). Windows Security Event ID 4769 with TicketEncryptionType=0x17 if the TGT is then used to request service tickets. Sysmon Event ID 3: NetworkConnect from Rubeus.exe to the domain controller on port 88 (Kerberos).

  3. Test 3Rubeus dump — Extract All Tickets from LSASS

    Expected signal: Sysmon Event ID 1: Process Create with Image=Rubeus.exe, CommandLine='dump /nowrap'. Sysmon Event ID 10: ProcessAccess targeting lsass.exe from Rubeus.exe with GrantedAccess values indicating memory read (0x1010 or similar). Sysmon Event ID 11: File Create for %TEMP%\rubeus_tickets.txt. Windows Defender (if enabled) may generate alert for Rubeus.exe based on signature or behavior detection.

  4. Test 4Impacket getTGT.py + psexec.py — Linux-to-Windows Pass the Ticket

    Expected signal: Domain Controller Windows Security Event ID 4768: Kerberos Authentication Service for <USERNAME> from the Linux attack host IP. Domain Controller Event ID 4769: Service ticket request for HOST SPN on <TARGET_HOST>. Target Windows host Event ID 4624: Network Logon (Type 3) from the Linux attack host IP authenticated via Kerberos. Sysmon Event ID 1 on target host: cmd.exe spawned by psexecsvc.exe (Impacket's service executable). Target host Event ID 7045: New service 'PSEXESVC' or similar installed.

Unlock Pro Content

Get the full detection package for T1550.003 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections