Chia sẻ Get dung lượng data WARP+ CloudFlare không giới hạn


Đây là WARP+ CloudFlare cho điện thoại nha các bạn.
Cách 1: File tạo sẵn.

B1: Nhập ID của bạn (Bạn vào dấu ba gạch góc phải => More Settting => Diagnostics => Phần ID.
)
B2: Nhập dung lượng bạn muốn get.
Tận hưởng.
[https://get-bug-cloudflare.lvddong.repl.run/]
Cách 2:
[https://repl.it/]
Và các bạn copy paste code vào đây và Run:
HTML:
[import requests
import json
import datetime
import random
import string

referrer = input("Nhập ID của bạn: ")
timesToLoop = input("Nhập số GB muốn tăng: ")
retryTimes = 5


def genString(stringLength):
    letters = string.ascii_letters + string.digits
    return ''.join(random.choice(letters) for i in range(stringLength))


url = 'https://api.cloudflareclient.com/v0a745/reg'


def run():
    install_id = genString(11)
    body = {"key": "{}=".format(genString(42)),
            "install_id": install_id,
            "fcm_token": "{}:APA91b{}".format(install_id, genString(134)),
            "referrer": referrer,
            "warp_enabled": False,
            "tos": datetime.datetime.now().isoformat()[:-3] + "+07:00",
            "type": "Android",
            "locale": "zh-CN"}

    bodyString = json.dumps(body)

    headers = {'Content-Type': 'application/json; charset=UTF-8',
               'Host': 'api.cloudflareclient.com',
               'Connection': 'Keep-Alive',
               'Accept-Encoding': 'gzip',
               'User-Agent': 'okhttp/3.12.1'
               }

    r = requests.post(url, data=bodyString, headers=headers)
    return r


for i in range(int(timesToLoop)):
    result = run()
    if result.status_code == 200:
        print(i + 1, "OK")
    else:
        print(i + 1, "Error")
        for r in range(retryTimes):
            retry = run()
            if retry.status_code == 200:
                print(i + 1, "Retry #" + str(r + 1), "OK")
                break
            else:
                print(i + 1, "Retry #" + str(r + 1), "Error")
                if r == retryTimes - 1:

                    exit()]


Nguồn: Gocmod + Facebook

About the author

Nguyễn Minh Phương
"một sáng khi con tỉnh giấc
Mặt Trời chưa mọc đằng đông
cửa nhà chắn hết mưa giông
vỡ tan nằm im ngoài cửa"

Đăng nhận xét