From a34207399524a6288fbea9eed7cdff2633d43457 Mon Sep 17 00:00:00 2001 From: Zach Date: Sun, 11 Feb 2018 10:04:49 -0500 Subject: [PATCH] Add Juniper IVE hash ID from hashcat wiki example Fixes Issue #26 --- hashid.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hashid.py b/hashid.py index f0deb5b..21bcd75 100755 --- a/hashid.py +++ b/hashid.py @@ -740,7 +740,12 @@ Prototype( regex=re.compile(r'^\$pdf\$[24]\*[34]\*128\*[0-9-]{1,5}\*1\*(16|32)\*[a-f0-9]{32,64}\*32\*[a-f0-9]{64}\*(8|16|32)\*[a-f0-9]{16,64}$', re.IGNORECASE), modes=[ - HashInfo(name='PDF 1.4 - 1.6 (Acrobat 5 - 8)', hashcat=10500, john='pdf', extended=False)]) + HashInfo(name='PDF 1.4 - 1.6 (Acrobat 5 - 8)', hashcat=10500, john='pdf', extended=False)]), + Prototype( + regex=re.compile(r'^3u\+U[A-Za-z0-9+/=]+$'), + modes=[ + HashInfo(name='Juniper IVE', hashcat=501, john=None, extended=False)]) + ]