Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: #!/usr/bin/python import hashlib password = "ITERATIONS" salt = "FRENCH FRIES" hash = hashlib.md5(password+salt).hexdigest() while True: if hash == "51fee60b4c872144e1048514e847d788": break else: hash = hashlib.md5(hash).hexdigest() print hash Source: http://pastebin.com/raw.php?i=LpEJuqpC
↧