- python >= 3.7
- gnupg2
- libnss3 (linux/windows)
- security (MacOS)
A mutual TLS (mTLS) system for authenticating users to services that need to be on the internet, but should only be accessible to users that specifically need it. This should be used as a initial security measure on top of normal login to handle multi-factor authentication.
The client generates a Certificate Signing Request (CSR) and use web of trust to ensure user has authentication to recieve a short-lived client certificate. Short-lived certificates have a default timeout of 18 hours, but can be expanded per need.
This system uses some of the base NSS primitives found in base tools for the associted operating systems.
This project currently works in the following OSes:
- Linux (Arch/Debian/Ubuntu tested)
- MacOS
This project is based on the whitepapers for Beyond Corp, which is Googles Zero Trust Security Model.
Mutual TLS is a sub-category of Mutual Authentication, where the client and server, or server and server are verifying the identity of one another to ensure that both parties should be allowed to access the requested information.
Creating services that inheritely trust no one unless specifically authorized. This provides the basis for a zero trust, multi-factor authentication scheme while also timeboxing access to the requested service in case of compromise or loss of access keys.
This uses 2 certificate stores within your system. The primary is held at ~/.pki/nssdb
which is the default nssdb that
most of the OS trusts. A secondary nssdb will exist within .mozilla/firefox/
which is a firefox specific nssdb and is
required to interface with any mozilla products. There are slightly different commands that are required depending on
the operating system.
To list certificates via the commandline on Linux:
certutil -L -d ~/.pki/nssdb
To verify a certificate via the commandline on Linux:
certutil -V -u C -d ~/.pki/nssdb -n '<Server> - <name>@<host>'
A Root certificate is required for this. The CLI will by default pull the Root CA and install it into your Trust Store as a Trusted Root Certificate.
$ git clone https://github.com/drGrove/mtls-cli
$ make build
# If you'd like to install directly into ~/.local/bin you can also use
$ make install
There are signed binaries that are shipped along with each release. To use a binary you can do the following:
$ VERSION=<version> (ex. VERSION=v0.8.0)
$ wget https://github.com/drGrove/mtls-cli/releases/download/$VERSION/mtls-$VERSION.tar.gz
$ tar zxvf mtls-$VERSION.tar.gz
$ cd mtls
$ sha256sum mtls && cat mtls.sha256sum
$ gpg --recv-keys C92FE5A3FBD58DD3EC5AA26BB10116B8193F2DBD
$ gpg --verify --trust-model always mtls.sig
# From there you can install the binary wherever you'd like in your path
Configuring mtls is done via a config.ini
. There is an example in the repo here.
You'll need a similar base configuration:
[DEFAULT]
name=John Doe
email[email protected]
; PGP Fingerprint
fingerprint=XXXXXXXX
country=US
state=CA
locality=Mountain View
organization=myhost
Then for each server you'd like to connect to you can create a section for that service.
[myserver]
email[email protected]
url=https://certauth.myserver.com
The url
should match the base URL of the Certificate Authority you'll connect to. This will allow mtls
to make the
requests to generate your client certificate.
Once configured and provided access by a Certificate Authority Administrator you will be able to begin creating certificates for yourself. By default the lifetime of your certificate is 18 hours. But Certificate Authorities are able to set their own minimum and maximum lifetime. Speak to a certificate authority administrator about their settings.
$ mtls -s myserver certificate create
If you're certificate has become compromised you can revoke your certificate prior to it's expiration. Certificate Authority Administrators can also expire certificates if they feel that you've been compromised or if they belive you should no longer have access to the services.
You have a few options as far a certificate revoke goes.
$ mtls -s myserver certificate revoke --serial <Certificate Serial Number>
To get a certificate name, it will follow the following convention: ISSUER - USER@HOSTNAME
. On the first connection to
a Certificate Authority, you're ~/.config/mtls/config.ini
for a particular server will be updated to provide the
issuer name as found in the Root CA Certificate. You can also find this by running certutil -L -d ~/.pki/nssdb
or
viewing the certificate in chrome or firefox
$ mtls -s myserver certicate revoke --name <name>
NOTE: This will revoke all certificates related to a particular fingerprint
$ mtls -s myserver certificate revoke --fingerprint <fingerprint>
Administration of the mtls
can be done via the CLI as well. Administrators can add and remove users as they see fit
but currently an administator needs to be removed individually from both trust stores.
$ mtls -s myserver user add --fingeprint FINGERPRINT
This will poll pgp.mit.edu by default and return a list of PGP keys if more than 1 valid PGP key is returned. You can
query any keyserver via the --keyserver KEYSERVER_URL
flag
$ mtls -s myserver user add --email [email protected]
$ mtls -s myserver user remove --fingeprint FINGERPRINT
This will poll pgp.mit.edu by default and return a list of PGP keys if more than 1 valid PGP key is returned. You can
query any keyserver via the --keyserver KEYSERVER_URL
flag
$ mtls -s myserver user remove --email [email protected]
$ mtls -s myserver user add --fingeprint FINGERPRINT --admin
This will poll pgp.mit.edu by default and return a list of PGP keys if more than 1 valid PGP key is returned. You can
query any keyserver via the --keyserver KEYSERVER_URL
flag
$ mtls -s myserver user add --email [email protected] --admin
$ mtls -s myserver user remove --fingeprint FINGERPRINT --admin
This will poll pgp.mit.edu by default and return a list of PGP keys if more than 1 valid PGP key is returned. You can
query any keyserver via the --keyserver KEYSERVER_URL
flag
$ mtls -s myserver user remove --email [email protected] --admin
- make
- pip
- pipenv
- gnupg
- libnss (certutil/pk12util on linux/windows, security on MacOS)
To begin development run the following commands:
make setup
mkdir ~/.config/mtls
cp config.ini.example config.ini
NOTE: You will need to add a server to communicate with. The URL must have a scheme.
You can run without compiling by using:
make run SERVICE=myservice
To build a binary:
make build
NOTE: This will output to an mtls folder within the root of the project. This folder has been gitignored and only artifacts of the build belong in this directory