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 |
|---|---|---|---|---|---|---|---|---|
| π No license keys found. Click Key Generator to create one! β‘ | ||||||||
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 |
|---|---|---|---|---|
| π± No HWID device signatures registered yet. Devices will auto-register on first run. π | ||||
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) | Linked Accounts & Keys | Action |
|---|---|---|---|---|
| π« No active referral codes generated yet. Use the generator to create one! | ||||
1-CLICK PROTECTOR
ZERO OFFLINE BYPASS
100% ONLINE CONTROL
1-Click Python Script Protector & Auto-Injector
Upload ANY Python script (like star.py or your custom tool) β our panel will automatically inject the Star Key Authentication System and generate a secure, protected .py file controlled 100% from this panel!
Drag & Drop your .py script here
or browse from your computer / phone (.py files supported)
Manual Integration Guide
Prefer manual integration? 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)