← Back to SOC feed Coverage →

KiRBi ticket for mimikatz

yara LOW Yara-Rules
communitycredential-theft
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Yara-Rules →
Retrieved: 2026-07-02T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies adversaries leveraging Mimikatz to extract and replay Kerberos tickets, a technique often used to establish persistence or move laterally within an Active Directory environment without triggering standard authentication alerts. Proactively hunting for these specific KiRBi ticket patterns in Azure Sentinel is critical because low-severity signals can mask sophisticated credential theft campaigns that rely on legitimate-looking ticket reuse rather than brute-force attacks.

YARA Rule

rule mimikatz_kirbi_ticket
{
	meta:
		description		= "KiRBi ticket for mimikatz"
		author			= "Benjamin DELPY (gentilkiwi); Didier Stevens"

	strings:
		$asn1			= { 76 82 ?? ?? 30 82 ?? ?? a0 03 02 01 05 a1 03 02 01 16 }
		$asn1_84		= { 76 84 ?? ?? ?? ?? 30 84 ?? ?? ?? ?? a0 84 00 00 00 03 02 01 05 a1 84 00 00 00 03 02 01 16 }

	condition:
		$asn1 at 0 or $asn1_84 at 0
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the KiRBi ticket for mimikatz detection rule, including suggested filters or exclusions:

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/MALW_kirbi_mimikatz.yar