• 17-02-2022, 21:30:59
    #1
    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..')
  • 17-02-2022, 21:43:44
    #2
    Python Coder
    Flask ile site yapıp oradan lisans yönetimini çok kolay bir şekilde yapabilirler , Flask Dökümantasyon : Tıkla
  • 18-02-2022, 01:26:05
    #3
    yanıtları şifrelemeyi unutmadan kullanmayın