-
-
Notifications
You must be signed in to change notification settings - Fork 469
Expand file tree
/
Copy pathconfig.py
More file actions
18 lines (13 loc) 路 624 Bytes
/
Copy pathconfig.py
File metadata and controls
18 lines (13 loc) 路 624 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import random
VPN_COUNTRIES = ["TR", "US-C", "US", "US-W", "CA", "CA-W", "FR", "DE", "NL", "NO", "RO", "CH", "GB", "HK"]
SELECTED_COUNTRY = random.choice(VPN_COUNTRIES)
FACEBOOK_HEADERS = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',
}
FACEBOOK_POST_URL = 'https://www.facebook.com/login.php'
TWITTER_LOGIN_URL = 'https://twitter.com/login/'
TWITTER_DATA_URL = 'https://twitter.com/settings/your_twitter_data'
GMAIL_SMTP_SERVER = 'smtp.gmail.com'
GMAIL_SMTP_PORT = 587
RANDOM_NUMBERS = [1, 2, 3, 4]
WORDLIST_DIR = "wordlist/"