is hwid in cloud (authentification)

PHOTO EMBED

Tue Sep 27 2022 13:17:04 GMT+0000 (Coordinated Universal Time)

Saved by @milan104 #python

hwid = str(subprocess.check_output(
    'wmic csproduct get uuid')).split('\\r\\n')[1].strip('\\r').strip()
data = requests.get(
    'https://gist.githubusercontent.com/rishav394/z/raw/x')
if hwid in data.text:
    print('Authenticated!')
    auth = True
else:
    print(hwid + ' was not found on the server.\nNot authorised!')
content_copyCOPY

https://stackoverflow.com/questions/38328176/getting-a-unique-hardware-id-with-python