Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*[“‘][a-z0-9\-_\!\$]+[“‘]': """access-0.0.6.py Asks for username and password. Max. 3 consecutive attempts, with timeout between every 3 failed attempts. Quits after 9 failed attempts. Maarten Trimbos, 2015 """ import sys import time username = 'yourusernamehere' password = 'yourpasswordhere' timeout1 = 5 # first timeout in seconds timeout2 = 10 # second timeout […]
↧