diff --git a/JWTCrack.py b/JWTCrack.py index 3e2c2ac..c167ef6 100755 --- a/JWTCrack.py +++ b/JWTCrack.py @@ -57,5 +57,5 @@ def partition(items, count): for result in executor.map(try_secrets, partition(wordlist, int(math.ceil(len(wordlist) / float(args.threads))))): if result: - print colored('Success! [' + result + ']', 'green') + print (colored('Success! [' + result + ']', 'green')) break diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..51b039f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +termcolor +PyJWT