⭐ This repo has not been maintained since 2019 but will being receiving updates again soon. ⭐
This web application provides a restful API for your desktop and other applications licensing needs.
- Backend re-write in Go
- Frontend re-write with VueJS
Aside from the python module requirements listed in requirements.txt, the following is required:
- Python 3.6 or later.
- PostgreSQL (or other SQLAlchemy supported backend)
This software should be used from a viritualenv environment.
virtualenv venv
source venv/bin/activate
pip3 install -U -r requirements.txt
Then edit the config:
mv keyserv/config.example.py keyserv/config.py
Make sure you set SECRET_KEY
to a randomly generated value, then change SQLALCHEMY_DATABASE_URI
to the URI for the database you create below.
The following commands will create a suitable database for the keyserver to use.
su - postgres
createuser keyserver
createdb -O keyserver keyserver
This creates a user and password on the command line. Currently there's no user creation available in the user interface.
export FLASK_APP=keyserver.py
flask create-user username password
- Create an Application at the
/add/app
URL. - Create a Key at the
/add/key
URL. Activations set to-1
means unlimited activations
Used to check if a key is valid. Your application should exit if the response code is not 201
.
A response of 404
means the key does not exist. This endpoint only accepts the GET method.
404 response:
{"result": "failure", "error": "invalid key"}
201 OK response:
{"result": "ok"}
Arguments:
token
- The token of the key to check forapp_id
- Required ID of the application attempting to activate. An app-specific support message will be included in the response body if the response failed.machine
- The NetBIOS or domain name of the machineuser
- The name of the currently logged in userhwid
- The samehwid
provided during /api/activate (see below)
Used to activate the application. If successful, the number of remaining activations will decrement
by one. After activation, your application should store the token in an obscure location and use the
/api/check
endpoint each time it starts up. This endpoint only supports the POST method.
404 Invalid Key response:
{"result": "failure", "error": "invalid activation token", "support_message": "call 555-555-5555 for support or email [email protected]"}
410 Out of Activations response:
{"result": "failure", "error": "key is out of activations", "support_message": "visit https://example.com/ for support"}
201 Activation Successful response:
{"result": "ok", "remainingActivations": 1}
The number of remaining activations will be returned in the JSON payload. -1
indicates unlimited
activations.
Arguments:
token
- The token of the key to check forapp_id
- Required ID of the application attempting to activate. An app-specific support message will be included in the response body if the response failed. The ID is provided when an application is createdmachine
- The NetBIOS or domain name of the machineuser
- The name of the currently logged in userhwid
- Something that identifies the machine this token is being activated on. This should not be stored on the client side but should be unique for each client and should be generated on the client machine (MAC address, etc.)
Example:
curl localhost:5001/api/activate -X POST -d token=2SZRHXZBNB3GUCHM375FTB8DJ -d machine=ICEBREAKER -d user=sam
{
"result": "ok",
"remainingActivations": "9"
}
The database schema is likely to change as this software is still young. Appropriate ALTER TABLE
queries will come with the commit message.
- Please run this software behind HTTPS, otherwise keys can be spoofed. Use Qualys SSL Labs to verify. I recommend setting up HTTP Public Key Pinning - otherwise a bogus CA root can be issued to also spoof an instance of your domain. Setting up HPKP is not within the scope of this project.
- Keys can be shared between machines, if disallowing this is important to you, use a different product. I am working on a way to seed activations via a mini-key-server client library.
- Client-side library (in progress)