Skip to content

Instantly share code, notes, and snippets.

@tsangtmc
tsangtmc / Password_Complexity_Score.py
Last active August 29, 2015 14:06
Rates a list of passwords based on complexity, prints out list with rating for each password
###########################################################
# 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 #
@tsangtmc
tsangtmc / Generate_Expression.py
Created May 13, 2014 17:33
Targeted TrueCrypt Brute Forcer (TTBF)
###########################################################
# 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 (tsangtmc@gmail.com) #
###########################################################
brute_list = raw_input("Enter the string you would like to generate a expression for:")
length = len(brute_list)