From bf91b0bc7c8495204b01e5283d0e9b64d7080da4 Mon Sep 17 00:00:00 2001 From: dntyfate <43454154+dntyfate@users.noreply.github.com> Date: Sun, 29 Jun 2025 23:20:48 -0400 Subject: [PATCH] feat(timecracker): make timecracker compatible to python 3 --- extra-scripts/timecrack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra-scripts/timecrack.py b/extra-scripts/timecrack.py index c362e13..b7b8ebf 100755 --- a/extra-scripts/timecrack.py +++ b/extra-scripts/timecrack.py @@ -57,7 +57,7 @@ def main(): """) argparser.add_argument('hashes', type=FileType('r'), help='Output of timeroast.py') - argparser.add_argument('dictionary', type=FileType('r'), help='Line-delimited password dictionary') + argparser.add_argument('dictionary', type=FileType('r', encoding='latin-1'), help='Line-delimited password dictionary') args = argparser.parse_args() crackcount = 0