Python
0
Вклад в тег
def check_hardware_hwid():
hwid = str(str(subprocess.check_output('wmic csproduct get uuid')).strip().replace(r"\r", "").split(r"\n")[1].strip())
r = requests.get("https://pastebin.com/raw/fC1Tqs18")
if hwid in r.text:
print("Access granted...")
else:
print("Error! HWID Not I Database!")
print("Please contact @mwsde in Telegram. HWID: " + hwid)
os.system('pause >NUL')