-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontrol.py
226 lines (178 loc) · 5.38 KB
/
control.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
import os
import shutil
import sys
from concurrent.futures import ThreadPoolExecutor, wait
from glob import glob
from time import sleep
import requests
from fake_headers import Headers
os.system("")
class bcolors:
HEADER = "\033[95m"
OKBLUE = "\033[94m"
OKCYAN = "\033[96m"
OKGREEN = "\033[92m"
WARNING = "\033[93m"
FAIL = "\033[91m"
ENDC = "\033[0m"
BOLD = "\033[1m"
UNDERLINE = "\033[4m"
print(
bcolors.OKGREEN
+ """
____
| _ \ _ __ _____ ___ _
| |_) | '__/ _ \ \/ / | | |
| __/| | | (_) > <| |_| |
|_| |_|_ \___/_/\_\\__, |_
/ ___| |__ ___|___/| | _____ _ __
| | | '_ \ / _ \/ __| |/ / _ \ '__|
| |___| | | | __/ (__| < __/ |
\____|_| |_|\___|\___|_|\_\___|_|
"""
+ bcolors.ENDC
)
print(
bcolors.OKCYAN
+ """
[ GitHub : https://github.com/yuceltoluyag/GoodProxy ]
"""
+ bcolors.ENDC
)
checked = {}
cancel_all = False
def backup():
try:
shutil.copy("GoodProxy.txt", "ProxyBackup.txt")
print(
bcolors.WARNING
+ "GoodProxy.txt backed up in ProxyBackup.txt"
+ bcolors.ENDC
)
except Exception:
pass
print("", file=open("GoodProxy.txt", "w"))
def clean_exe_temp(folder):
try:
temp_name = sys._MEIPASS.split("\\")[-1]
except Exception:
temp_name = None
for f in glob(os.path.join("temp", folder, "*")):
if temp_name not in f:
shutil.rmtree(f, ignore_errors=True)
def load_proxy():
proxies = []
filename = "raw.txt"
if not os.path.isfile(filename) and filename[-4:] != ".txt":
filename = f"{filename}.txt"
try:
with open(filename, encoding="utf-8") as fh:
loaded = [x.strip() for x in fh if x.strip() != ""]
except Exception as e:
print(bcolors.FAIL + str(e) + bcolors.ENDC)
input("")
sys.exit()
for lines in loaded:
if lines.count(":") == 3:
split = lines.split(":")
lines = f"{split[2]}:{split[-1]}@{split[0]}:{split[1]}"
proxies.append(lines)
return proxies
def main_checker(proxy_type, proxy, position):
if cancel_all:
raise KeyboardInterrupt
checked[position] = None
try:
proxy_dict = {
"http": f"{proxy_type}://{proxy}",
"https": f"{proxy_type}://{proxy}",
}
header = Headers(headers=False).generate()
agent = header["User-Agent"]
headers = {
"User-Agent": f"{agent}",
}
response = requests.get(
"https://www.youtube.com/", headers=headers, proxies=proxy_dict, timeout=30
)
status = response.status_code
if status != 200:
raise Exception(status)
print(
bcolors.OKBLUE
+ f"Worker {position+1} | "
+ bcolors.OKGREEN
+ f"{proxy} | GOOD | Type : {proxy_type} | Response : {status}"
+ bcolors.ENDC
)
print(f"{proxy}|{proxy_type}", file=open("GoodProxy.txt", "a"))
except Exception as e:
try:
e = int(e.args[0])
except Exception:
e = ""
print(
bcolors.OKBLUE
+ f"Worker {position+1} | "
+ bcolors.FAIL
+ f"{proxy} | {proxy_type} | BAD | {e}"
+ bcolors.ENDC
)
checked[position] = proxy_type
def proxy_check(position):
sleep(2)
proxy = proxy_list[position]
if "|" in proxy:
splitted = proxy.split("|")
main_checker(splitted[-1], splitted[0], position)
else:
main_checker("http", proxy, position)
if checked[position] == "http":
main_checker("socks4", proxy, position)
if checked[position] == "socks4":
main_checker("socks5", proxy, position)
def main():
global cancel_all
cancel_all = False
pool_number = [i for i in range(total_proxies)]
with ThreadPoolExecutor(max_workers=threads) as executor:
futures = [executor.submit(proxy_check, position) for position in pool_number]
done, not_done = wait(futures, timeout=0)
try:
while not_done:
freshly_done, not_done = wait(not_done, timeout=5)
done |= freshly_done
except KeyboardInterrupt:
print(
bcolors.WARNING
+ "Hold on!!! Allow me a moment to finish the running threads"
+ bcolors.ENDC
)
cancel_all = True
for future in not_done:
_ = future.cancel()
_ = wait(not_done, timeout=None)
raise KeyboardInterrupt
except IndexError:
print(
bcolors.WARNING
+ "Number of proxies are less than threads. Provide more proxies or less threads. "
+ bcolors.ENDC
)
if __name__ == "__main__":
clean_exe_temp(folder="proxy_check")
backup()
try:
threads = int(100)
print(bcolors.OKBLUE + "Threads (recommended = 100): " + bcolors.ENDC)
except Exception:
threads = 100
proxy_list = load_proxy()
# removing empty & duplicate proxies
proxy_list = list(set(filter(None, proxy_list)))
total_proxies = len(proxy_list)
print(bcolors.OKCYAN + f"Total unique proxies : {total_proxies}" + bcolors.ENDC)
try:
main()
except KeyboardInterrupt:
sys.exit()