14 lines
516 B
Python
14 lines
516 B
Python
password = 'xXx!69!xXx'
|
|
email = 'testing@gmail.com'
|
|
strings = ['red', 'bob', 'admin', 'alex', 'testing', 'test', 'lol', 'yes', 'dragon', 'bad']
|
|
commonNames = ['csrf', 'auth', 'token', 'verify', 'hash']
|
|
tokenPattern = r'^[\w\-_+=/]{14,256}$'
|
|
|
|
headers = { # default headers
|
|
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
|
|
'Accept-Language': 'en-US,en;q=0.5',
|
|
'Accept-Encoding': 'gzip,deflate',
|
|
'Connection': 'close',
|
|
'DNT': '1',
|
|
'Upgrade-Insecure-Requests': '1',
|
|
} |