-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmain.py
427 lines (360 loc) · 19.8 KB
/
main.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
import aiohttp
import asyncio
import base64
import datetime
import json
import random
import re
import ssl
import time
import uuid
import websockets
from loguru import logger
import pyfiglet
from websockets_proxy import Proxy, proxy_connect
logger.remove()
logger.add(
sink=lambda msg: print(msg, end=''),
format=(
"<green>{time:DD/MM/YY HH:mm:ss}</green> | "
"<level>{level:8} | {message}</level>"
),
colorize=True
)
# main.py
def print_header():
cn = pyfiglet.figlet_format("小草脚本")
print(cn)
print("{╔═╗╔═╦╗─╔╦═══╦═══╦═══╦═══╗")
print("{╚╗╚╝╔╣║─║║╔══╣╔═╗║╔═╗║╔═╗║")
print("{─╚╗╔╝║║─║║╚══╣║─╚╣║─║║║─║║")
print("{─╔╝╚╗║║─║║╔══╣║╔═╣╚═╝║║─║║")
print("{╔╝╔╗╚╣╚═╝║╚══╣╚╩═║╔═╗║╚═╝║")
print("{╚═╝╚═╩═══╩═══╩═══╩╝─╚╩═══╝")
print("{我的gihub:github.com/Gzgod")
print("{我的推特:推特雪糕战神@Hy78516012")
# 初始化头部信息
print_header()
# 使用的代理数量 /uid
def get_proxy_count():
while True:
try:
proxy_count = int(input("请输入你要使用的代理数量: "))
if proxy_count > 0:
return proxy_count
else:
print("请输入一个大于零的数字。")
except ValueError:
print("请输入有效的数字。")
ONETIME_PROXY = get_proxy_count()
DELAY_INTERVAL = 0.5
MAX_RETRIES = 3
FILE_UID = "uid.txt"
FILE_PROXY = "proxy.txt"
USERAGENTS = [
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.2365.57",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.2365.52",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.2365.46",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.2277.128",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.2277.112",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.2277.98",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.2277.83",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.2210.133",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.2210.121",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.2210.91"
]
HTTP_STATUS_CODES = {
200: "OK",
201: "Created",
202: "Accepted",
204: "No Content",
400: "Bad Request",
401: "Unauthorized",
403: "Forbidden",
404: "Not Found",
500: "Internal Server Error",
502: "Bad Gateway",
503: "Service Unavailable",
504: "Gateway Timeout"
}
# 读取UID和代理数量
def read_uid_and_proxy():
with open(FILE_UID, 'r') as file:
uid_count = sum(1 for line in file)
with open(FILE_PROXY, 'r') as file:
proxy_count = sum(1 for line in file)
return uid_count, proxy_count
uid_count, proxy_count = read_uid_and_proxy()
print()
print(f"UID: {uid_count}. 来自 {FILE_UID}。")
print(f"加载了 {proxy_count} 个代理。来自 {FILE_PROXY}。")
print(f"每个任务激活的代理数量: {ONETIME_PROXY} 个代理。")
print()
# 获取用户输入以处理代理失败
def get_user_input():
user_input = ""
while user_input not in ['yes', 'no']:
user_input = input("遇到特定失败时是否要移除代理 (yes/no)? ").strip().lower()
if user_input not in ['yes', 'no']:
print("无效输入。请输入 'yes' 或 'no'。")
return user_input == 'yes'
remove_on_all_errors = get_user_input()
print(f"您选择了: {'是' if remove_on_all_errors else '否'}, !\n")
# 默认使用 'extension' 节点类型
node_type = "extension"
def truncate_userid(user_id):
return f"{user_id[:3]}--{user_id[-3:]}"
def truncate_proxy(proxy):
pattern = r'([a-zA-Z0-9.-]+(?:\.[a-zA-Z]{2,})|(?:\d{1,3}\.){3}\d{1,3})'
match = re.search(pattern, proxy)
if match:
return match.group(0)
return '未定义'
def count_proxies(FILE_PROXY):
try:
with open(FILE_PROXY, 'r') as file:
proxies = file.readlines()
return len(proxies)
except FileNotFoundError:
logger.error(f"文件 {FILE_PROXY} 未找到!")
return 0
async def connect_to_wss(protocol_proxy, user_id):
device_id = str(uuid.uuid3(uuid.NAMESPACE_DNS, protocol_proxy))
random_user_agent = random.choice(USERAGENTS)
logger.info(f"UID: {truncate_userid(user_id)} | {node_type} | 生成设备ID: {device_id} | 代理: {truncate_proxy(protocol_proxy)}")
has_received_action = False
is_authenticated = False
total_proxies = count_proxies(FILE_PROXY)
while True:
try:
await asyncio.sleep(random.randint(1, 10) / 10)
custom_headers = {
"User-Agent": random_user_agent,
"Origin": "chrome-extension://lkbnfiajjmbhnfledhphioinpickokdi"
}
ssl_context = ssl.create_default_context()
ssl_context.check_hostname = False
ssl_context.verify_mode = ssl.CERT_NONE
urilist = [
"wss://proxy2.wynd.network:4444",
"wss://proxy2.wynd.network:4650"
]
uri = random.choice(urilist)
server_hostname = uri.split("://")[1].split(":")[0]
proxy = Proxy.from_url(protocol_proxy)
async with proxy_connect(
uri,
proxy=proxy,
ssl=ssl_context,
server_hostname=server_hostname,
extra_headers=custom_headers
) as websocket:
logger.success(f"UID: {truncate_userid(user_id)} | {node_type} | 成功连接到WS | uri: {uri} | 头部信息: {custom_headers} | 设备ID: {device_id} | 代理: {truncate_proxy(protocol_proxy)} | 剩余代理数量: {total_proxies}")
async def send_ping():
while True:
if has_received_action:
send_message = json.dumps({
"id": str(uuid.uuid4()),
"version": "1.0.0",
"action": "PING",
"data": {}
})
logger.debug(f"UID: {truncate_userid(user_id)} | {node_type} | 发送PING消息 | 数据: {send_message}")
await asyncio.sleep(DELAY_INTERVAL)
await websocket.send(send_message)
logger.info(f"UID: {truncate_userid(user_id)} | {node_type} | 已发送PING | 数据: {send_message}")
rand_sleep = random.uniform(10, 30)
logger.info(f"UID: {truncate_userid(user_id)} | {node_type} | 下次PING在 {rand_sleep:.2f} 秒后,!")
await asyncio.sleep(rand_sleep)
await asyncio.sleep(DELAY_INTERVAL)
send_ping_task = asyncio.create_task(send_ping())
try:
while True:
if is_authenticated and not has_received_action:
logger.info(f"UID: {truncate_userid(user_id)} | {node_type} | 已认证 | 等待PING门开启以获取 HTTP请求")
response = await websocket.recv()
message = json.loads(response)
logger.info(f"UID: {truncate_userid(user_id)} | {node_type} | 接收到消息 | 数据: {message}")
if message.get("action") == "AUTH":
auth_response = {
"id": message["id"],
"origin_action": "AUTH",
"result": {
"browser_id": device_id,
"user_id": user_id,
"user_agent": random_user_agent,
"timestamp": int(time.time()),
"device_type": "extension",
"version": "4.26.2",
"extension_id": "lkbnfiajjmbhnfledhphioinpickokdi"
}
}
logger.debug(f"UID: {truncate_userid(user_id)} | {node_type} | 发送AUTH | 数据: {auth_response}")
await asyncio.sleep(DELAY_INTERVAL)
await websocket.send(json.dumps(auth_response))
logger.success(f"UID: {truncate_userid(user_id)} | {node_type} | 已发送AUTH | 数据: {auth_response}")
is_authenticated = True
elif message.get("action") in ["HTTP_REQUEST", "OPEN_TUNNEL"]:
has_received_action = True
request_data = message["data"]
headers = {
"User-Agent": custom_headers["User-Agent"],
"Content-Type": "application/json; charset=utf-8"
}
async with aiohttp.ClientSession() as session:
async with session.get(request_data["url"], headers=headers) as api_response:
content = await api_response.text()
encoded_body = base64.b64encode(content.encode()).decode()
status_text = HTTP_STATUS_CODES.get(api_response.status, "")
http_response = {
"id": message["id"],
"origin_action": message["action"],
"result": {
"url": request_data["url"],
"status": api_response.status,
"status_text": status_text,
"headers": dict(api_response.headers),
"body": encoded_body
}
}
logger.info(f"UID: {truncate_userid(user_id)} | {node_type} | 打开PING访问 | 数据: {http_response}")
await asyncio.sleep(DELAY_INTERVAL)
await websocket.send(json.dumps(http_response))
logger.success(f"UID: {truncate_userid(user_id)} | {node_type} | 已发送PING访问 | 数据: {http_response}")
elif message.get("action") == "PONG":
pong_response = {"id": message["id"], "origin_action": "PONG"}
logger.debug(f"UID: {truncate_userid(user_id)} | {node_type} | 发送PONG | 数据: {pong_response}")
await asyncio.sleep(DELAY_INTERVAL)
await websocket.send(json.dumps(pong_response))
logger.success(f"UID: {truncate_userid(user_id)} | {node_type} | 已发送PONG | 数据: {pong_response}")
except websockets.exceptions.ConnectionClosedError as e:
logger.error(f"UID: {truncate_userid(user_id)} | {node_type} | 连接关闭错误 | 代理: {truncate_proxy(protocol_proxy)} | 错误: {str(e)} | 剩余代理数量: {total_proxies}")
await asyncio.sleep(DELAY_INTERVAL)
finally:
await websocket.close()
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | WebSocket连接已关闭 | 代理: {truncate_proxy(protocol_proxy)} | 剩余代理数量: {total_proxies}")
send_ping_task.cancel()
await asyncio.sleep(DELAY_INTERVAL)
break
except Exception as e:
logger.error(f"UID: {truncate_userid(user_id)} | {node_type} | 代理 {truncate_proxy(protocol_proxy)} 出现错误 ➜ {str(e)} | 剩余代理数量: {total_proxies}")
error_conditions = [
"403 Forbidden",
"Host unreachable",
"Empty host component",
"Invalid scheme component",
"[SSL: WRONG_VERSION_NUMBER]",
"invalid length of packed IP address string",
"Empty connect reply",
"Device creation limit exceeded",
"[Errno 111] Could not connect to proxy",
"sent 1011 (internal error) keepalive ping timeout; no close frame received"
]
skip_proxy = [
"Proxy connection timed out: 60",
"407 Proxy Authentication Required",
"Invalid port component"
]
if any(error_msg in str(e) for error_msg in skip_proxy):
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 由于错误跳过代理 ➜ {truncate_proxy(protocol_proxy)} | 剩余代理数量: {total_proxies}")
return "skip"
if remove_on_all_errors:
if any(error_msg in str(e) for error_msg in error_conditions):
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 由于错误移除代理 ➜ {truncate_proxy(protocol_proxy)} | 剩余代理数量: {total_proxies}")
remove_proxy_from_list(protocol_proxy)
return None
else:
if "Device creation limit exceeded" in str(e):
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 由于错误移除代理 ➜ {truncate_proxy(protocol_proxy)} | 剩余代理数量: {total_proxies}")
remove_proxy_from_list(protocol_proxy)
return None
await asyncio.sleep(DELAY_INTERVAL)
continue
async def main():
with open(FILE_UID, 'r') as file:
user_ids = file.read().splitlines()
with open(FILE_PROXY, 'r') as file:
all_proxies = file.read().splitlines()
if len(all_proxies) < ONETIME_PROXY * len(user_ids):
logger.error(f"代理数量不足以每个用户ID提供 {ONETIME_PROXY} 个代理。")
return
random.shuffle(all_proxies)
proxy_allocation = {
user_id: all_proxies[i * ONETIME_PROXY: (i + 1) * ONETIME_PROXY]
for i, user_id in enumerate(user_ids)
}
retry_count = {}
for user_id, proxies in proxy_allocation.items():
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 使用的代理总数: {len(proxies)}")
await asyncio.sleep(DELAY_INTERVAL)
tasks = {}
for user_id, proxies in proxy_allocation.items():
for proxy in proxies:
retry_count[(proxy, user_id)] = 0
await asyncio.sleep(DELAY_INTERVAL)
task = asyncio.create_task(connect_to_wss(proxy, user_id))
tasks[task] = (proxy, user_id)
while True:
done, pending = await asyncio.wait(tasks.keys(), return_when=asyncio.FIRST_COMPLETED)
for task in done:
try:
result = task.result()
failed_proxy, user_id = tasks[task]
if result == "skip":
retry_count[(failed_proxy, user_id)] += 1
if retry_count[(failed_proxy, user_id)] > MAX_RETRIES:
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 达到最大重试次数(跳过代理): {truncate_proxy(failed_proxy)}。")
continue
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 跳过代理: {truncate_proxy(failed_proxy)}")
available_proxies = list(set(all_proxies) - set(proxy_allocation[user_id]))
if available_proxies:
new_proxy = random.choice(available_proxies)
proxy_allocation[user_id].append(new_proxy)
retry_count[(new_proxy, user_id)] = retry_count[(failed_proxy, user_id)]
await asyncio.sleep(DELAY_INTERVAL)
new_task = asyncio.create_task(connect_to_wss(new_proxy, user_id))
tasks[new_task] = (new_proxy, user_id)
logger.success(f"UID: {truncate_userid(user_id)} | {node_type} | 替换跳过的代理 {truncate_proxy(failed_proxy)} 为 {truncate_proxy(new_proxy)}")
else:
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 没有可用的代理进行替换。")
elif result is None:
retry_count[(failed_proxy, user_id)] += 1
if retry_count[(failed_proxy, user_id)] > MAX_RETRIES:
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 达到最大重试次数(错误代理): {truncate_proxy(failed_proxy)}。")
proxy_allocation[user_id].remove(failed_proxy)
continue
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 移除并替换失败的代理: {truncate_proxy(failed_proxy)}")
proxy_allocation[user_id].remove(failed_proxy)
available_proxies = list(set(all_proxies) - set(proxy_allocation[user_id]))
if available_proxies:
new_proxy = random.choice(available_proxies)
proxy_allocation[user_id].append(new_proxy)
retry_count[(new_proxy, user_id)] = retry_count[(failed_proxy, user_id)]
await asyncio.sleep(DELAY_INTERVAL)
new_task = asyncio.create_task(connect_to_wss(new_proxy, user_id))
tasks[new_task] = (new_proxy, user_id)
logger.success(f"UID: {truncate_userid(user_id)} | {node_type} | 替换失败的代理: {truncate_proxy(failed_proxy)} 为: {truncate_proxy(new_proxy)}")
else:
logger.warning(f"UID: {truncate_userid(user_id)} | {node_type} | 没有可用的代理进行替换。")
except Exception as e:
logger.error(f"UID: {truncate_userid(user_id)} | {node_type} | 处理任务时发生错误: {str(e)}")
finally:
tasks.pop(task)
active_proxies = [proxy for _, proxy in tasks.values()]
for user_id, proxies in proxy_allocation.items():
for proxy in set(proxies) - set(active_proxies):
new_task = asyncio.create_task(connect_to_wss(proxy, user_id))
tasks[new_task] = (proxy, user_id)
def remove_proxy_from_list(proxy):
with open(FILE_PROXY, "r+") as file:
lines = file.readlines()
file.seek(0)
for line in lines:
if line.strip() != proxy:
file.write(line)
file.truncate()
if __name__ == '__main__':
try:
asyncio.run(main())
except (KeyboardInterrupt, SystemExit):
logger.info(f"用户终止程序。\n")