Skip to main content
NEW · APP STORE Now on iOS · macOS · iPad Android & Windows soon GET IT
Prompts Kerberos Golden Ticket Forgery Detector

security analyst security skill risk: medium

Kerberos Golden Ticket Forgery Detector

The prompt provides prerequisites, steps, and expected output for detecting Golden Ticket forgery by analyzing Windows Event IDs 4768 and 4769 for RC4 encryption, missing TGT reque…

SKILL 4 files · 2 folders

SKILL.md
---
name: detecting-golden-ticket-forgery
description: "Detect Kerberos Golden Ticket forgery by analyzing Windows Event ID 4769 for RC4 encryption downgrades (0x17),"
---
# Detecting Golden Ticket Forgery

## Overview

A Golden Ticket attack (MITRE ATT&CK T1558.001) involves forging a Kerberos Ticket Granting Ticket (TGT) using the krbtgt account NTLM hash, granting unrestricted access to any service in the Active Directory domain. This skill detects Golden Ticket usage by analyzing Event ID 4769 for RC4 encryption type (0x17) in environments enforcing AES, identifying tickets with abnormal lifetimes exceeding domain policy, correlating TGS requests with missing corresponding TGT requests (Event ID 4768), and detecting krbtgt password age anomalies.


## When to Use

- When investigating security incidents that require detecting golden ticket forgery
- When building detection rules or threat hunting queries for this domain
- When SOC analysts need structured procedures for this analysis type
- When validating security monitoring coverage for related attack techniques

## Prerequisites

- Windows Domain Controller with Kerberos audit logging enabled
- Splunk or Elastic SIEM ingesting Windows Security event logs
- Python 3.8+ for offline event log analysis
- Knowledge of domain Kerberos encryption policy (AES vs RC4)

## Steps

1. Audit domain Kerberos encryption policy to establish AES-only baseline
2. Forward Event IDs 4768 and 4769 to SIEM platform
3. Detect RC4 (0x17) encryption in TGS requests where AES is enforced
4. Identify TGS requests without corresponding TGT requests (forged ticket indicator)
5. Alert on ticket lifetimes exceeding MaxTicketAge domain policy
6. Monitor krbtgt account password age and last reset date
7. Correlate findings with host/user context for risk scoring

## Expected Output

JSON report with Golden Ticket indicators including RC4 downgrades, orphaned TGS requests, abnormal ticket lifetimes, and risk-scored alerts with MITRE ATT&CK technique mapping.

REQUIRED CONTEXT

  • Windows Security event logs (Event IDs 4768/4769)
  • domain Kerberos encryption policy

EXPECTED OUTPUT

Format
json
Schema
json · Golden Ticket indicators, RC4 downgrades, orphaned TGS requests, abnormal ticket lifetimes, risk-scored alerts, MITRE ATT&CK technique mapping
Constraints
  • include RC4 downgrades, orphaned TGS requests, abnormal ticket lifetimes, risk-scored alerts
  • include MITRE ATT&CK technique mapping

SUCCESS CRITERIA

  • Detect RC4 encryption downgrades
  • Identify TGS requests without corresponding TGT
  • Alert on ticket lifetimes exceeding policy
  • Monitor krbtgt password age
  • Correlate findings with host/user context

CAVEATS

Dependencies
  • Windows Domain Controller with Kerberos audit logging enabled
  • Splunk or Elastic SIEM ingesting Windows Security event logs
  • Python 3.8+ for offline event log analysis
  • Knowledge of domain Kerberos encryption policy (AES vs RC4)

QUALITY

OVERALL
0.78
CLARITY
0.90
SPECIFICITY
0.85
REUSABILITY
0.65
COMPLETENESS
0.80

USAGE

Copy the prompt above and paste it into your AI of choice — Claude, ChatGPT, Gemini, or anywhere else you're working. Replace any placeholder sections with your own context, then ask for the output.

MORE FOR SECURITY ANALYST