Software Licensing & HWID Authentication Server
Self-hosted licensing backend designed for Windows applications, loaders, and developer tools. Includes hardware machine locking, self-serve HWID resets, Discord event webhooks, and automated Sellix/Stripe fulfillment.
// Send license key verification request std::string key = "MECA-VIP-DEMO-001"; std::string hwid = GetMachineGUID(); std::string sec = "BB_MECA_SECRET_KEY"; auto res = HttpPost("http://localhost:5000/api/v1/verify", { {"key", key}, {"hwid", hwid}, {"app_secret", sec} }); if (res["status"] == "success") { printf("[+] Auth Success: %s\n", res["duration"].c_str()); }
Features
Core backend capabilities included out of the box.
Hardware ID Locking
Binds keys to unique machine hardware on first activation. Protects against license sharing across multiple PCs.
Self-Serve HWID Resets
Configurable quota limits allowing users to migrate licenses to new machines without manual administrator intervention.
Discord Webhooks
Dispatches event logs directly to your Discord server for license activations, machine resets, bans, and purchases.
Sellix & Stripe Webhooks
Automated payment webhook handlers that generate and issue keys instantly upon checkout completion.
Memory Binary Streaming
Streams protected application payloads into memory via API so clients can decrypt and execute without writing to disk.
Anti-Tamper Reporting
Client security flag endpoint to report debugger presence (x64dbg, Cheat Engine) and trigger automated key bans.
Live API Tester
Send a real verification request to the running server.
Client Integration
Implementation examples for common languages.
Deployment Options
Choose between self-hosted deployment or managed server options.
Community (Self-Hosted)
- Full server source code
- Embedded SQLite database
- HWID locking and resets
- Local admin console
Developer Pro
- All Community features
- Sellix & Stripe store webhooks
- Discord webhook alerts
- Protected payload streaming
Enterprise
- All Developer Pro features
- Anti-debugger & VM detection hooks
- Multi-user role management
- Dedicated REST API tokens