Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: import os import MySQLdb db = MySQLdb.connect(host="localhost", # your host, usually localhost user="test", # your username passwd="test", # your password db="test") # name of the data base mysqlTable = 'test' pathToRoot = '/path/to/root' subDirsToIgnore = [] fileNameSubstringsToIgnore = ['bindings','license','.doc','test.html'] cur = db.cursor() filesList = Source: http://pastebin.com/raw.php?i=AJ822RZM
↧