Total Keys
0
Active Users
0
Devices Bound
0
Referral Codes
0
Interactive 3D Key Card
Hover 3D TiltSTAR-VIP-8888-9999
PLAN TIER
VVIP MASTER
DEVICE LIMIT
1 / 1 HWID
Auto-locked to Client Hardware ID
Live Audit Activity Logs
Real-time Client RequestsLoading activity logs...
| Key Code | Tier | Duration | Expires At | Device HWID Ratio | Creator | Status | Note | Actions |
|---|---|---|---|---|---|---|---|---|
| Loading keys... | ||||||||
Key Generator Studio
Output License Keys
Device Hardware ID (HWID) Tracker
Monitor active client PCs and reset HWID locks| Key Code | Registered HWID Signatures | Usage Ratio | Last IP | Action |
|---|---|---|---|---|
| Loading HWID device registry... | ||||
Owner Referral Code Generator
Generate referral codes for users to sign up and create accounts.
Active Owner Referral Codes
| Referral Code | Role Granted | Uses (Used / Max) | Action |
|---|---|---|---|
| Loading referral codes... | |||
Python Integration Guide for star.py
Place star_key_auth.py in your project directory and add this verification check at the start of your script:
from star_key_auth import StarKeyAuth
# Cloudflare Pages Domain URL
API_URL = "https://star-key-panel.pages.dev"
# Initialize Key Authentication
auth = StarKeyAuth(api_url=API_URL)
# Authenticate client key (checks HWID and expiration)
if auth.authenticate():
print(f"[✓] License Validated! Tier: {auth.plan_tier} | Days Left: {auth.remaining_days}")
# Run your main Python code logic (star.py)
else:
print("[✕] License Check Failed. Exiting.")
exit(1)