-
Notifications
You must be signed in to change notification settings - Fork 1
/
unlimited_warp.py
58 lines (45 loc) · 1.8 KB
/
unlimited_warp.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
import json
import datetime
import time , requests , random , string
import urllib
from pyfiglet import Figlet
from rainbowtext import text
from colorama import Fore
def rand_number():
return str(random.randint(1,999))
def rand_string(number):
text = string.ascii_letters + string.digits
result= ''.join(random.choice(text) for ch in range(number))
return result
session = requests.Session()
url = "https://api.cloudflareclient.com/v0a%s/reg" % rand_number()
def warp_unlimited(id_code):
inst = rand_string(22)
body = {"key": "{}=".format(rand_string(43)),
"install_id": inst,
"fcm_token": "{}:APA91b{}".format(inst, rand_string(134)),
"referrer": id_code,
"warp_enabled": False,
"locale": "es_US"}
data = json.dumps(body).encode('utf8')
header = {'Content-Type': 'application/json; charset=UTF-8',
'User-Agent': 'okhttp/3.12.1'
}
try:
req = urllib.request.Request(url , data , header)
resp = urllib.request.urlopen(req)
except urllib.error.HTTPError:
time.sleep(5)
banner = Figlet(font="whimsy").renderText("Warp OP")
print (text(banner))
print (Fore.RED + "[$] Powered by Team HH [Hello Hackers]")
print (Fore.GREEN + "[$] Created by @AnukarOP")
print (Fore.LIGHTMAGENTA_EX + "[&] Warp Plus Unlimited Script :p ")
print (Fore.YELLOW + "╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾╼╾") ; code_id = input(Fore.CYAN + "[+] Please Enter Your Client ID : ")
while True:
try:
warp_unlimited(code_id)
print ( Fore.GREEN + "Success ! You Got 1GB Warp + || Script by @AnukarOP \n" + Fore.MAGENTA + "Please Wait 7 Second !")
time.sleep(7)
except KeyboardInterrupt:
print (Fore.Red + "Stopped ! ")