← Library
splApache-2.0from splunk/security_content

Kerberos TGT Request Using RC4 Encryption

The following analytic detects a Kerberos Ticket Granting Ticket (TGT) request using RC4-HMAC encryption (type 0x17) by leveraging Event 4768. This encryption type is outdated and its presence may indicate an OverPass The Hash attack. Monitoring this activity is crucial as it can signify credential theft, allowing adversaries to authenticate to the Kerberos Distribution Center (KDC) using a stolen NTLM hash. If confirmed malicious, this could enable unauthorized access to systems and resources, potentially leading to lateral movement and further compromise within the network.

Quality
67
FP risk
Forks
0
Views
0
Rule sourcedetections/endpoint/kerberos_tgt_request_using_rc4_encryption.yml
`wineventlog_security` EventCode=4768 TicketEncryptionType=0x17 ServiceName!=*$
  | stats count min(_time) as firstTime max(_time) as lastTime
    BY ServiceName src_ip dest
  | `security_content_ctime(firstTime)`
  | `security_content_ctime(lastTime)`
  | `kerberos_tgt_request_using_rc4_encryption_filter`