Well with all the posting of wordlists, I haven’t had the time to actually develop any scripts. Sometimes “internet” really makes things easy. Anyhow the only thing I’ve done until now with scripting and wordlists is a quick snippet to extract all entries containing 8 characters or more. Just pipe the wordlist to it and save the output.
#!/usr/bin/env python #DiabloHorn - https://diablohorn.wordpress.com import sys import os import string #import fileinput #uncomment if needed if __name__ == "__main__": """ if for some reason it only returns single characters use this instead for n in fileinput.input() """ for n in sys.stdin: t = string.strip(n) if(len(t) >= 8): print t