This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################################################### | |
# This script will simply take in a list of password then # | |
# print out the same list with a rating of the password # | |
# complexity after it (separated by a tab) # | |
# + keep in mind the rules are very simple # | |
# + keep in mind you need to edit the static paths # | |
# to your files # | |
# - Disclaimer - I'm not responsible for how you use this # | |
# this was created for personal usage and for educational # | |
# purposes # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################################################### | |
# This srcipt will simply produce expressions to be # | |
# used with config.py # | |
# - Disclaimer - I'm not responsible for how you use this # | |
# this was created for personal usage and for educational # | |
# purposes # | |
# CopyLeft Jason Tsang Mui Chung ([email protected]) # | |
########################################################### | |
brute_list = raw_input("Enter the string you would like to generate a expression for:") | |
length = len(brute_list) |