From 53c6c6eb9475afdbe170f9b16d5a155bc7f57527 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Mon, 24 Apr 2023 17:12:50 +0200 Subject: [PATCH] md5analy works in iterate mode --- src/md5-analyzer.py | 40 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 36 insertions(+), 4 deletions(-) diff --git a/src/md5-analyzer.py b/src/md5-analyzer.py index 5c02e35..f98d31e 100755 --- a/src/md5-analyzer.py +++ b/src/md5-analyzer.py @@ -5,20 +5,52 @@ A small script to help analyze the md5 hash function. @author Christoph J. Scherr @license MIT @source: https://git.cscherr.de/PlexSheep/python-dhbw/src/branch/master/src/md5-analyzer.py +TODO do I need to implement md5 by myself for the assignment? """ import argparse import hashlib def main(): parser = argparse.ArgumentParser(prog="md5-analyzer", description='md5 analyzer for a cryptography assignment') - parser.add_argument('--hash', type=str, + parser.add_argument('-i', '--input', type=str, help='an input that should be hashed.') + parser.add_argument('-a', '--print-all', action="store_true", + help="print all hashes in iterate mode") + parser.add_argument('-t', '--iterate', action="store_true", + help='iterate 0 to 999999 (chars), generate hashes for this, analyze it\'s hashes.') args = parser.parse_args() - if args.hash: + if args.iterate: + if not args.input: + args.input = "" + print('='*80) + hashlist = [] + max = 999999 + searchbytes = "0000" + for i in range(0, max + 1): + # max should be included, so +x for the counter + input = (args.input + str(i)) + hash = hashlib.md5(input.encode()) + # print only every 1000 lines for performance + if i % 1000 == 0 or args.print_all: + print("inp %s\t\t| out %s" % (input, hash.hexdigest())) + if hash.hexdigest()[0:4] == searchbytes: + hashlist.append((i, hash.hexdigest())) + print("^" * 80) + print('='*80) + for (index, hash) in hashlist: + print("ind %i\t\t| has %s" % (index, hash)) + print('='*80) + size_of_first_x = 2**16 + expected = size_of_first_x / max + print("found %d items.\nExpected %d (%f%%) from %d" % (len(hashlist), expected, expected / size_of_first_x, max)) + exit() + if args.input: print("Hash for '%s':\n%s" % ( - args.hash, - hashlib.md5(args.hash.encode()).digest().hex() + args.input, + hashlib.md5(args.input.encode()).digest().hex() )) + exit() + parser.print_usage()