POLAR
Pannello di controllo centralizzato per la gestione delle licenze software.
Validazione HWIDVerifica hardware fingerprint SHA-256
Licenze Lifetime o a tempoScadenza configurabile per ogni utente
Revoca istantaneaRimozione permanente con un click
POLAR LICENSE CONSOLE v2.0

Accedi al pannello

Inserisci le credenziali di amministratore per continuare.

Dashboard
caricamento…
Totale
Attive
Scadute
Revocate

Crea Nuova Licenza

Etichetta unica per questa licenza
Le stringhe grezze vengono auto-hashate
Numero di giorni o lifetime
Come ottenere l'HWID del client?
PowerShell
Python
Da Minecraft
$macs = (Get-NetAdapter | Where-Object {$_.MacAddress} |
         Sort-Object MacAddress |
         ForEach-Object {$_.MacAddress -replace '-',''});
$raw  = ($macs -join ':') + ':' +
        [System.Environment]::OSVersion.Platform +
        [System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture +
        $env:USERNAME +
        [System.Environment]::ProcessorCount;
$bytes = [System.Text.Encoding]::UTF8.GetBytes($raw);
$hash  = [System.Security.Cryptography.SHA256]::Create().ComputeHash($bytes);
($hash | ForEach-Object {$_.ToString('x2')}) -join ''
Esegui in PowerShell sulla macchina del client. Restituisce direttamente l'hash SHA-256 da 64 caratteri.
📋 Copia
import hashlib, os, platform, subprocess

def get_macs():
    macs = set()
    try:
        out = subprocess.check_output(['getmac','/fo','csv','/nh'],
                                      text=True, stderr=subprocess.DEVNULL)
        for line in out.splitlines():
            m = line.strip().strip('"').split('"')[0].replace('-','')
            if len(m) == 12:
                macs.add(m.upper())
    except Exception:
        pass
    return sorted(macs)

macs = get_macs()
raw  = ':'.join(macs) + ':' + platform.system() + \
       platform.machine() + os.getlogin() + str(os.cpu_count())
print(hashlib.sha256(raw.encode()).hexdigest())
Esegui con python hwid.py sulla macchina del client. Richiede Python 3.
📋 Copia
Metodo più semplice — nessun comando necessario:
  1. Il client lancia Minecraft con il mod installato.
  2. Apre la ClickGUI (RSHIFT).
  3. Se la licenza non è attiva appare l'overlay con l'HWID.
  4. Copia il valore e incollalo nel campo HWID sopra.
L'HWID mostrato è già il hash SHA-256 da 64 caratteri — non serve elaborarlo.

Revoca Licenza

Hash hex da 64 char = ricerca per HWID · altrimenti per nome

Tutte le Licenze

# Nome HWID Creata Scadenza Stato Azioni