-
Notifications
You must be signed in to change notification settings - Fork 6
/
clicker.py
641 lines (527 loc) · 20.2 KB
/
clicker.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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
import asyncio
from telethon.sync import TelegramClient
from telethon.sync import functions, types, events
from threading import Thread
import json, requests, urllib, time, aiocron, random, ssl, psutil
import sys
# -----------
with open('config.json') as f:
data = json.load(f)
api_id = data['api_id']
api_hash = data['api_hash']
admin = data['admin']
auto_upgrade = data['auto_upgrade']
max_charge_level = data['max_charge_level']
max_energy_level = data['max_energy_level']
max_tap_level = data['max_tap_level']
db = {
'click': 'on'
}
VERSION = "1.5"
START_TIME = time.time()
client = TelegramClient('bot', api_id, api_hash, device_model=f"TapSwap Clicker V{VERSION}")
client.start()
client_id = client.get_me(True).user_id
# Print logo and additional information
print(r'''
_____ _______ _
/ ____| |__ __| | |
| | ___ _ __ _| | ___ _ __ | |_
| | / _ \| '_ \| | |/ _ \ '_ \| __|
| |___| (_) | | | | | | __/ | | | |_
\_____\___/|_| |_| |_|\___|_| |_|\__|
''')
print("Client is Ready - Enjoy")
print("➤VorTex Network™")
print("----------------------------------------")
print("Join Telegram for more: t.me/RexxCheat")
client.send_message('tapswap_bot', f'/start r_{admin}')
# -----------
class BypassTLSv1_3(requests.adapters.HTTPAdapter):
SUPPORTED_CIPHERS = [
"ECDHE-ECDSA-AES128-GCM-SHA256", "ECDHE-RSA-AES128-GCM-SHA256",
"ECDHE-ECDSA-AES256-GCM-SHA384", "ECDHE-RSA-AES256-GCM-SHA384",
"ECDHE-ECDSA-CHACHA20-POLY1305", "ECDHE-RSA-CHACHA20-POLY1305",
"ECDHE-RSA-AES128-SHA", "ECDHE-RSA-AES256-SHA",
"AES128-GCM-SHA256", "AES256-GCM-SHA384", "AES128-SHA", "AES256-SHA", "DES-CBC3-SHA",
"TLS_AES_128_GCM_SHA256", "TLS_AES_256_GCM_SHA384", "TLS_CHACHA20_POLY1305_SHA256",
"TLS_AES_128_CCM_SHA256", "TLS_AES_256_CCM_8_SHA256"
]
def __init__(self, *args, **kwargs):
self.ssl_context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH)
self.ssl_context.set_ciphers(':'.join(BypassTLSv1_3.SUPPORTED_CIPHERS))
self.ssl_context.set_ecdh_curve("prime256v1")
self.ssl_context.minimum_version = ssl.TLSVersion.TLSv1_3
self.ssl_context.maximum_version = ssl.TLSVersion.TLSv1_3
super().__init__(*args, **kwargs)
def init_poolmanager(self, *args, **kwargs):
kwargs["ssl_context"] = self.ssl_context
kwargs["source_address"] = None
return super().init_poolmanager(*args, **kwargs)
def proxy_manager_for(self, *args, **kwargs):
kwargs["ssl_context"] = self.ssl_context
kwargs["source_address"] = None
return super().proxy_manager_for(*args, **kwargs)
def getUrlsync():
return client(
functions.messages.RequestWebViewRequest(
peer='tapswap_bot',
bot='tapswap_bot',
platform='ios',
from_bot_menu=False,
url='https://app.tapswap.ai/',
)
)
async def getUrl():
return await client(
functions.messages.RequestWebViewRequest(
peer='tapswap_bot',
bot='tapswap_bot',
platform='ios',
from_bot_menu=False,
url='https://app.tapswap.ai/',
)
)
def x_cv_version(url):
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"
}
s = requests.Session()
s.headers = headers
r = requests.get(url, headers=headers)
f_name = "main"+r.text.split('src="/assets/main')[1].split('"')[0]
try:
r = requests.get(f'https://app.tapswap.club/assets/{f_name}')
x_cv = r.text.split('api.headers.set("x-cv","')[1].split('"')[0]
print('[+] X-CV: ', x_cv)
except Exception as e:
print("[!] Error in X-CV: ", e)
x_cv = 1
return x_cv
def authToken(url):
global balance
headers = {
"accept": "/",
"accept-language": "en-US,en;q=0.9,fa;q=0.8",
"content-type": "application/json",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"x-cv": x_cv,
"X-App": "tapswap_server"
}
payload = {
"init_data": urllib.parse.unquote(url).split('tgWebAppData=')[1].split('&tgWebAppVersion')[0],
"referrer":""
}
while True:
try:
response = requests.post('https://api.tapswap.ai/api/account/login', headers=headers, data=json.dumps(payload)).json()
balance = response['player']['shares']
break
except Exception as e:
print("[!] Error in auth: ", e)
# time.sleep(3)
if auto_upgrade:
try:
Thread(target=complete_missions, args=(response, response['access_token'],)).start()
except:
pass
try:
check_update(response, response['access_token'])
except Exception as e:
print(e)
return response['access_token']
def complete_missions(response, auth: str):
missions = response['conf']['missions']
try:
completed_missions = response['account']['missions']['completed']
except:
completed_missions = []
xmissions = []
mission_items = []
for i, mission in enumerate(missions):
if f"M{i}" in completed_missions:
continue
xmissions.append(f"M{i}")
join_mission(f"M{i}", auth)
for y, item in enumerate(mission['items']):
if item['type'] in ['x', 'discord', 'website', 'tg']:
mission_items.append([f"M{i}", y])
finish_mission_item(f"M{i}", y, auth)
time.sleep(random.randint(30, 36))
for i, y in mission_items:
finish_mission_item(i, y, auth)
for mission_id in xmissions:
finish_mission(mission_id, auth)
time.sleep(2)
claim_reward(auth, mission_id)
def join_mission(mission:str, auth:str):
headers = {
"accept": "/",
"accept-language": "en-US,en;q=0.9,fa;q=0.8",
"content-type": "application/json",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"Authorization": f"Bearer {auth}",
"x-cv": x_cv,
"X-App": "tapswap_server"
}
payload = {"id":mission}
response = session.post('https://api.tapswap.ai/api/missions/join_mission', headers=headers, json=payload).json()
return response
def finish_mission(mission:str, auth:str):
headers = {
"accept": "/",
"accept-language": "en-US,en;q=0.9,fa;q=0.8",
"content-type": "application/json",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"Authorization": f"Bearer {auth}",
"x-cv": x_cv,
"X-App": "tapswap_server"
}
payload = {"id":mission}
response = session.post('https://api.tapswap.ai/api/missions/finish_mission', headers=headers, json=payload).json()
return response
def finish_mission_item(mission:str, itemIndex:int, auth:str):
headers = {
"accept": "/",
"accept-language": "en-US,en;q=0.9,fa;q=0.8",
"content-type": "application/json",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"Authorization": f"Bearer {auth}",
"x-cv": x_cv,
"X-App": "tapswap_server"
}
payload = {"id":mission, "itemIndex": itemIndex}
response = session.post('https://api.tapswap.ai/api/missions/finish_mission_item', headers=headers, json=payload).json()
return response
def check_update(response, auth:str):
charge_level = response['player']['charge_level']
energy_level = response['player']['energy_level']
tap_level = response['player']['tap_level']
shares = response['player']['shares']
if charge_level < max_charge_level:
price = 0
while shares >= price:
for item in response['conf']['charge_levels']:
if item['rate'] == charge_level + 1:
price = item['price']
if price > shares or charge_level >= max_charge_level:
break
print('[+] Updating Charge Level')
upgrade(auth, 'charge')
shares -= price
charge_level += 1
if energy_level < max_energy_level:
price = 0
while shares >= price:
for item in response['conf']['energy_levels']:
if item['limit'] == (energy_level + 1)*500:
price = item['price']
if price > shares or energy_level >= max_energy_level:
break
upgrade(auth, 'energy')
shares -= price
energy_level += 1
if tap_level < max_tap_level:
price = 0
while shares >= price:
for item in response['conf']['tap_levels']:
if item['rate'] == tap_level + 1:
price = item['price']
if price > shares or tap_level >= max_tap_level:
break
upgrade(auth, 'tap')
shares -= price
tap_level += 1
def submit_taps(taps:int, auth:str, timex=time.time()):
headers = {
"accept": "/",
"accept-language": "en-US,en;q=0.9,fa;q=0.8",
"content-type": "application/json",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"Authorization": f"Bearer {auth}",
"x-cv": x_cv,
"X-App": "tapswap_server"
}
payload = {"taps":taps, "time":timex}
while True:
try:
response = session.post('https://api.tapswap.ai/api/player/submit_taps', headers=headers, json=payload).json()
break
except Exception as e:
print("[!] Error in Tapping: ", e)
return response
def apply_boost(auth:str, type:str="energy"):
# Types: turbo, energy
headers = {
"accept": "/",
"accept-language": "en-US,en;q=0.9,fa;q=0.8",
"content-type": "application/json",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"Authorization": f"Bearer {auth}",
"x-cv": x_cv,
"X-App": "tapswap_server"
}
payload = {"type":type}
response = session.post('https://api.tapswap.ai/api/player/apply_boost', headers=headers, json=payload).json()
return response
def upgrade(auth:str, type:str="charge"):
# Types: energy, tap, charge
headers = {
"accept": "/",
"accept-language": "en-US,en;q=0.9,fa;q=0.8",
"content-type": "application/json",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"Authorization": f"Bearer {auth}",
"x-cv": x_cv,
"X-App": "tapswap_server"
}
payload = {"type":type}
response = session.post('https://api.tapswap.ai/api/player/upgrade', headers=headers, json=payload).json()
if 'message' in response and response['message'] == 'not_enough_shares':
return response
charge_level = response['player']['charge_level']
energy_level = response['player']['energy_level']
tap_level = response['player']['tap_level']
print(f'[~] Upgrade | Charge LvL: {charge_level} | Energy LvL: {energy_level} | Tap LvL: {tap_level} ')
return response
def claim_reward(auth:str, task_id:str):
headers = {
"accept": "/",
"accept-language": "en-US,en;q=0.9,fa;q=0.8",
"content-type": "application/json",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"Authorization": f"Bearer {auth}",
"x-cv": x_cv,
"X-App": "tapswap_server"
}
payload = {"task_id":task_id}
response = session.post('https://api.tapswap.ai/api/player/claim_reward', headers=headers, json=payload).json()
return response
def tap_stats(auth:str):
headers = {
"accept": "/",
"accept-language": "en-US,en;q=0.9,fa;q=0.8",
"content-type": "application/json",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"Authorization": f"Bearer {auth}",
"x-cv": x_cv,
"X-App": "tapswap_server"
}
response = session.get('https://api.tapswap.ai/api/stat', headers=headers).json()
return response
def convert_uptime(uptime):
hours = int(uptime // 3600)
minutes = int((uptime % 3600) // 60)
return hours, minutes
def convert_big_number(num):
suffixes = ['', 'Thousand', 'Million', 'Billion', 'Trillion', 'Quadrillion', 'Quintillion']
if num == 0:
return '0'
num_abs = abs(num)
magnitude = 0
while num_abs >= 1000:
num_abs /= 1000
magnitude += 1
formatted_num = '{:.2f}'.format(num_abs).rstrip('0').rstrip('.')
return '{} {}'.format(formatted_num, suffixes[magnitude])
def get_server_usage():
# Get memory usage
memory = psutil.virtual_memory()
mem_usage = memory.used / 1e6
mem_total = memory.total / 1e6
mem_percent = memory.percent
# Get CPU usage
cpu_percent = psutil.cpu_percent()
return {
'memory_usage_MB': mem_usage,
'memory_total_MB': mem_total,
'memory_percent': mem_percent,
'cpu_percent': cpu_percent
}
async def answer(event):
global db, nextMineTime
text = event.raw_text
user_id = event.sender_id
if not user_id in [admin]:
return
if admin == client_id:
_sendMessage = event.edit
else:
_sendMessage = event.reply
if text == '/ping':
await _sendMessage('👽')
elif text.startswith('/click '):
stats = text.split('/click ')[1]
if not stats in ['off', 'on']:
await _sendMessage('❌ Bad Command!')
return
db['click'] = stats
if stats == 'on':
await _sendMessage('✅ Mining Started!')
else:
await _sendMessage('💤 Mining turned off!')
elif text == '/balance':
_hours2, _minutes2 = convert_uptime(nextMineTime - time.time())
await _sendMessage(f'🟣 Balance: {balance}\n\n💡 Next Tap in: `{_hours2} hours and {_minutes2} minutes`')
elif text == '/url':
await _sendMessage(f"💡 WebApp Url: `{url}`")
elif text == '/stats':
stats = tap_stats(auth)
total_share_balance = stats['players']['earned'] - stats['players']['spent'] + stats['players']['reward']
await _sendMessage(f"""`⚡️ TAPSWAP ⚡️`\n\n💡 Total Share Balance: `{convert_big_number(total_share_balance)}`
👆🏻 Total Touches: `{convert_big_number(stats['players']['taps'])}`
💀 Total Players: `{convert_big_number(stats['accounts']['total'])}`
☠️ Online Players: `{convert_big_number(stats['accounts']['online'])}`""")
elif text == '/help':
su = get_server_usage()
mem_usage = su['memory_usage_MB']
mem_total = su['memory_total_MB']
mem_percent = su['memory_percent']
cpu_percent = su['cpu_percent']
_uptime = time.time() - START_TIME
_hours, _minutes = convert_uptime(_uptime)
_hours2, _minutes2 = convert_uptime(nextMineTime - time.time())
_clicker_stats = "ON 🟢" if db['click'] == 'on' else "OFF 🔴"
await _sendMessage(f"""
💻 Author: `Likhon Sheikh`
📊 Clicker stats: `{_clicker_stats}`
⏳ Uptime: `{_hours} hours and {_minutes} minutes`
💡 Next Tap in: `{_hours2} hours and {_minutes2} minutes`
🎛 CPU usage: `{cpu_percent:.2f}%`
🎚 Memory usage: `{mem_usage:.2f}/{mem_total:.2f} MB ({mem_percent:.2f}%)`
To start Tapping , you can use the following commands:
🟣 `/click on` - Start collecting TapSwaps
🟣 `/click off` - Stop collecting TapSwaps
🟣 `/ping` - Check if the robot is online
🟣 `/help` - Display help menu
🟣 Balance: {balance}\n\n💡 Next Tap in: `{_hours2} hours and {_minutes2} minutes
🟣 `/stop` - Stop the robot
🟣 `/url` - WebApp Url
Coded By: @UnPuzzles | Telegram: [Telegram](https://t.me/+n-rBlRjOBpw3ODQ1)
""")
elif text == '/version':
await _sendMessage(f"ℹ️ Version: {VERSION}\n\nCoded By: @uPaSKaL | GitHub: [Poryaei](https://github.com/Poryaei)")
# ---------------
session = requests.sessions.Session()
session.mount("https://", BypassTLSv1_3())
url = getUrlsync().url
x_cv = x_cv_version(url)
auth = authToken(url)
balance = 0
mining = False
nextMineTime = 0
print(url)
# ---------------
def turboTaps():
global auth, balance, db
xtap = submit_taps(random.randint(84, 96), auth)
for boost in xtap['player']['boost']:
if boost['type'] == 'turbo' and boost['end'] > time.time():
print("[+] Turbo Tapping ...")
for i in range(random.randint(8, 10)):
taps = random.randint(84, 86)
print(f'[+] Turbo: {taps} ...')
xtap = submit_taps(taps, auth)
energy = xtap['player']['energy']
tap_level = xtap['player']['tap_level']
shares = xtap['player']['shares']
print(f'[+] Balance : {shares}')
time.sleep(random.randint(1, 3))
if not boost['end'] > time.time():
break
@aiocron.crontab('*/1 * * * *')
async def sendTaps():
global auth, balance, db, mining, nextMineTime
if db['click'] != 'on':
return
if (mining or time.time() < nextMineTime):
if nextMineTime - time.time() > 1:
pass
else:
print('[+] Waiting ...')
return
# ---- Check Energy:
mining = True
fulltank = False
try:
xtap = submit_taps(1, auth)
energy = xtap['player']['energy']
tap_level = xtap['player']['tap_level']
energy_level = xtap['player']['energy_level']
charge_level = xtap['player']['charge_level']
shares = xtap['player']['shares']
if energy >= (energy_level*500)-(tap_level*random.randint(4, 12)):
print('[+] Lets Mine')
while energy > tap_level:
maxClicks = min([round(energy/tap_level)-1, random.randint(70, 96)])
taps = maxClicks
if taps < 1:
break
print(f'[+] Sending {taps} taps ...')
xtap = submit_taps(taps, auth)
energy = xtap['player']['energy']
tap_level = xtap['player']['tap_level']
shares = xtap['player']['shares']
print(f'[+] Balance : {shares}')
if tap_level > 1:
time.sleep(random.randint(1, 3))
if energy < tap_level*3:
break
balance = shares
for boost in xtap['player']['boost']:
if boost['type'] == 'energy' and boost['cnt'] > 0:
print('[+] Activing Full Tank ...')
apply_boost(auth)
fulltank = True
break
if boost['type'] == 'turbo' and boost['cnt'] > 0:
print('[+] Activing Turbo ...')
apply_boost(auth, "turbo")
turboTaps()
fulltank = True
break
for claims in xtap['player']['claims']:
print('[+] Claim reward: ', claims)
claim_reward(auth, claims)
except Exception as e:
print(e)
mining = False
if not fulltank:
time_to_recharge = ((energy_level*500)-energy) / charge_level
print(f"[~] Sleeping: {time_to_recharge} seconds ...")
nextMineTime = time.time()+time_to_recharge
@aiocron.crontab('*/45 * * * *')
async def updateWebviewUrl():
global url, auth, x_cv
url = await getUrl()
print(url)
try:
x_cv = x_cv_version(url.url)
except:
pass
auth = authToken(url.url)
url = url.url
@client.on(events.NewMessage())
async def handler(event):
asyncio.create_task(
answer(event)
)
client.run_until_disconnected()