aboutsummaryrefslogtreecommitdiff
path: root/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'constants.py')
-rw-r--r--constants.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/constants.py b/constants.py
new file mode 100644
index 0000000..4489d98
--- /dev/null
+++ b/constants.py
@@ -0,0 +1,27 @@
+"""Constants for refactored script."""
+PASSLIST = (
+ "password=",
+ "Password=",
+ "pass=",
+ "Pass=",
+ "pwd=",
+ "PWD=",
+ "secret=",
+)
+USERLIST = (
+ "user=",
+ "User=",
+ "username=",
+ "Username=",
+ "usr=",
+ "login=",
+ "Login=",
+ "name=",
+ "Name=",
+ "email=",
+ "Email=",
+ "auth",
+ "Auth",
+ "log=",
+ "Log=",
+)