From fdfc3f222c480cb42bf8927c763ff01117de7127 Mon Sep 17 00:00:00 2001 From: Touhid M Shaikh Date: Thu, 19 Nov 2020 22:43:40 +0530 Subject: [PATCH] updated kirbi2john.py due to "/usr/bin/env python -tt" shebang was not running to fix this I have removed the '-tt' from shebeng --- kirbi2john.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kirbi2john.py b/kirbi2john.py index 92f17fe..f99ab60 100755 --- a/kirbi2john.py +++ b/kirbi2john.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 -tt +#!/usr/bin/env python3 # Based on the Kerberoast script from Tim Medin to extract the Kerberos tickets # from a kirbi file. # Modification to parse them into the JTR-format by Michael Kramer (SySS GmbH)