from os import name as sistem
from subprocess import check_output
# HWID Yakala
if sistem == 'nt':
benim_hwid = check_output('wmic csproduct get uuid').decode().split('\n')[1].strip()
else:
try:
from GPUtil import getGPUs
except ModuleNotFoundError:
from os import system
system("pip3 install gputil")
system("clear")
if ekran_kartlari := getGPUs():
benim_hwid = ekran_kartlari[0].uuid[4:].upper()
else:
benim_hwid = check_output(['cat', '/var/lib/dbus/machine-id']).decode().strip().upper()
# Çevrimiçi Sorgu
from requests import get
istek = get('Kontrol URL')
# HWID Kontrolü
if benim_hwid not in istek.text:
print(f'[!] {benim_hwid} | HWID Bulunamadı..')
exit()
# Yazılımın Devamı
print('Merhaba Dünya..') Python Yazılımlarınız HWID ile Lisanslama Kodu
2
●522
- 17-02-2022, 21:30:59
- 17-02-2022, 21:43:44Flask ile site yapıp oradan lisans yönetimini çok kolay bir şekilde yapabilirler , Flask Dökümantasyon : Tıkla