-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_proxy.py
268 lines (230 loc) · 8.65 KB
/
run_proxy.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
import asyncio
import aiohttp
import time
import uuid
import cloudscraper
from fake_useragent import UserAgent
import re
from datetime import datetime, timezone, timedelta
import requests
from dateutil import parser
from colorama import init, Fore, Style
import itertools
import threading
import sys
import pyfiglet
from colorama import Fore
# Inisialisasi colorama
init(autoreset=True)
text = pyfiglet.figlet_format("Martin Si Hacker Sunda Awkokwko")
print(Fore.YELLOW + text)
# Banner
print(f"{Fore.CYAN}[+]==========================[+]")
print(f"{Fore.CYAN}[+]===NODEPAY PROXY SCRIPT===[+]")
print(f"{Fore.CYAN}[+]==========MADE BY=========[+]")
print(f"{Fore.CYAN}[+]==MARTIN SI HACKER SUNDA==[+]")
print(f"{Fore.CYAN}[+]==========================[+]")
# Constants
PING_INTERVAL = 1
RETRIES = 60
# OLD Domain API
# PING API: https://nodewars.nodepay.ai / https://nw.nodepay.ai | https://nw2.nodepay.ai | IP: 54.255.192.166
# SESSION API: https://api.nodepay.ai | IP: 18.136.143.169, 52.77.170.182
# NEW HOST DOMAIN
# "SESSION": "https://api.nodepay.org/api/auth/session",
# "PING": "https://nw.nodepay.org/api/network/ping"
# Testing | Found nodepay real ip address :P | Cloudflare host bypassed!
DOMAIN_API_ENDPOINTS = {
"SESSION": [
# http://18.136.143.169/api/auth/session / rolling back just for auth
"https://api.nodepay.ai/api/auth/session"
],
"PING": [
#"PING": "http://54.255.192.166/api/network/ping"
"http://52.77.10.116/api/network/ping",
"http://13.215.134.222/api/network/ping"
]
}
CONNECTION_STATES = {
"CONNECTED": 1,
"DISCONNECTED": 2,
"NONE_CONNECTION": 3
}
status_connect = CONNECTION_STATES["NONE_CONNECTION"]
browser_id = None
account_info = {}
last_ping_time = {}
def uuidv4():
return str(uuid.uuid4())
def valid_resp(resp):
if not resp or "code" not in resp or resp["code"] < 0:
raise ValueError("Invalid response")
return resp
async def render_profile_info(proxy, token):
global browser_id, account_info
try:
np_session_info = load_session_info(proxy)
if not np_session_info:
browser_id = uuidv4()
response = await call_api(DOMAIN_API_ENDPOINTS["SESSION"][0], {}, proxy, token)
valid_resp(response)
account_info = response["data"]
if account_info.get("uid"):
save_session_info(proxy, account_info)
await start_ping(proxy, token)
else:
handle_logout(proxy)
else:
account_info = np_session_info
await start_ping(proxy, token)
except Exception as e:
error_message = str(e)
if any(phrase in error_message for phrase in [
"sent 1011 (internal error) keepalive ping timeout; no close frame received",
"500 Internal Server Error"
]):
remove_proxy_from_list(proxy)
return None
else:
return proxy
async def call_api(url, data, proxy, token):
user_agent = UserAgent(os=['windows', 'macos', 'linux'], browsers='chrome')
random_user_agent = user_agent.random
headers = {
"Authorization": f"Bearer {token}",
"Content-Type": "application/json",
"User-Agent": random_user_agent,
"Accept": "application/json",
"Accept-Language": "en-US,en;q=0.5",
"Referer": "https://app.nodepay.ai",
}
try:
scraper = cloudscraper.create_scraper()
response = scraper.post(url, json=data, headers=headers, proxies={
"http": proxy, "https": proxy}, timeout=30)
response.raise_for_status()
return valid_resp(response.json())
except Exception as e:
raise ValueError(f"Failed API call to {url}")
async def start_ping(proxy, token):
try:
while True:
await ping(proxy, token)
await asyncio.sleep(PING_INTERVAL)
except asyncio.CancelledError:
pass
except Exception as e:
pass
async def ping(proxy, token):
global last_ping_time, RETRIES, status_connect
last_ping_time[proxy] = time.time()
try:
data = {
"id": account_info.get("uid"),
"browser_id": browser_id,
"timestamp": int(time.time())
}
response = await call_api(DOMAIN_API_ENDPOINTS["PING"][0], data, proxy, token)
if response["code"] == 0:
# Ekstrak hanya alamat IP dari proxy
ip_address = re.search(r'(?<=@)[^:]+', proxy)
if ip_address:
print(f"{get_internet_time()}| Nodepay | - {Fore.GREEN}Ping : {response.get('msg')}, Skor IP: {response['data'].get('ip_score')}, Proxy IP: {ip_address.group()}")
RETRIES = 0
status_connect = CONNECTION_STATES["CONNECTED"]
else:
handle_ping_fail(proxy, response)
except Exception as e:
handle_ping_fail(proxy, None)
def handle_ping_fail(proxy, response):
global RETRIES, status_connect
RETRIES += 1
if response and response.get("code") == 403:
handle_logout(proxy)
else:
remove_proxy_from_list(proxy)
status_connect = CONNECTION_STATES["DISCONNECTED"]
def handle_logout(proxy):
global status_connect, account_info
status_connect = CONNECTION_STATES["NONE_CONNECTION"]
account_info = {}
save_status(proxy, None)
def load_proxies(proxy_file):
try:
with open(proxy_file, 'r') as file:
proxies = file.read().splitlines()
return proxies
except Exception as e:
raise SystemExit("Exiting due to failure in loading proxies")
def save_status(proxy, status):
pass
def save_session_info(proxy, data):
data_to_save = {
"uid": data.get("uid"),
"browser_id": browser_id
}
pass
def load_session_info(proxy):
return {}
def is_valid_proxy(proxy):
return True
def remove_proxy_from_list(proxy):
pass
def get_internet_time():
try:
response = requests.get('http://worldtimeapi.org/api/timezone/Asia/Jakarta')
response.raise_for_status()
current_time = response.json()['datetime']
# Menggunakan dateutil.parser untuk parsing datetime dengan zona waktu
return parser.isoparse(current_time).astimezone(timezone(timedelta(hours=7))).strftime('%Y-%m-%d %H:%M:%S %Z')
except Exception:
# Tidak mencetak pesan kesalahan
return datetime.now(timezone(timedelta(hours=7))).strftime('%Y-%m-%d %H:%M:%S %Z')
def loading_animation():
for c in itertools.cycle(['|', '/', '-', '\\']):
if not loading:
break
sys.stdout.write(f'\r{Fore.YELLOW}Proses... {c}')
sys.stdout.flush()
time.sleep(0.1)
sys.stdout.write('\r')
async def main():
global loading
loading = True
loading_thread = threading.Thread(target=loading_animation)
loading_thread.start()
all_proxies = load_proxies('local_proxies.txt')
try:
with open('tokens.txt', 'r') as token_file:
tokens = token_file.read().splitlines()
except FileNotFoundError:
print(f"{get_internet_time()} - {Fore.RED}File tokens.txt tidak ditemukan. Pastikan file tersebut ada di direktori yang benar.")
exit()
if not tokens:
print(f"{get_internet_time()} - {Fore.RED}Token tidak boleh kosong. Keluar dari program.")
exit()
# Menggunakan semua proxy dengan token yang tersedia
token_proxy_pairs = [(tokens[i % len(tokens)], proxy) for i, proxy in enumerate(all_proxies)]
tasks = []
for token, proxy in token_proxy_pairs:
if is_valid_proxy(proxy):
task = asyncio.create_task(render_profile_info(proxy, token))
tasks.append(task)
# print(f"{get_internet_time()} - Task started for token: {token}")
# Hentikan animasi loading setelah semua tugas dimulai
loading = False
loading_thread.join()
while True:
results = await asyncio.gather(*tasks, return_exceptions=True)
for result in results:
if isinstance(result, Exception):
print(f"{get_internet_time()} - {Fore.RED}Task resulted in an error")
else:
print(f"{get_internet_time()} - {Fore.GREEN}Task completed successfully")
await asyncio.sleep(10)
if __name__ == '__main__':
try:
asyncio.run(main())
except (KeyboardInterrupt, SystemExit):
print(f"{get_internet_time()} - {Fore.YELLOW}Program terminated by user.")
loading = False