aboutsummaryrefslogtreecommitdiff

Cashier

Cashier is a SSH Certificate Authority (CA).

OpenSSH supports authentication using SSH certificates. Certificates contain a public key, identity information and are signed with a standard SSH key.

Unlike ssh keys, certificates can contain additional information: - Which user(s) may use the certificate - When the certificate is valid from - When the certificate expires - Permissions

Other benefits of certificates: - Unlike keys certificates don't need to be distributed to every machine - the sshd just needs to trust the key that signed the certificate. - This also works for host keys - machines can get new (signed) host certs which clients can authenticate. No more blindly typing "yes". - Certificates can be revoked.

See also the CERTIFICATES section of ssh-keygen(1)

How it works

The user wishes to ssh to a production machine.

They run a command which opens the CA site (e.g. https://sshca.exampleorg.com) in a browser and they login.

The CA displays a token which the user copies.

The user provides the token to the client. The client generates a new ssh key-pair.

The client sends the ssh public key to the CA along with the token.

The CA verifies the token and signs the public key with the signing key and returns the signed certificate.

The client receives the certificate and loads it and the private key into the ssh agent.

The user can now ssh to the production machine, and continue to ssh to any machine that trusts the CA signing key until the certificate is revoked or expires or is removed from the agent.

Installing

Stable versions can be obtained from the release page. Releases contain both static and dynamically linked executables. Statically linked executables do not have sqlite support.

Note that installing using standard Go tools is possible, but the master branch should be considered unstable.

The server requires a configuration file (sample config).

See the configuration section for more detail.

Docker

A docker image is available. Example usage:

docker run -it --rm -p 10000:10000 --name cashier -v ${PWD}:/cashier nsheridan/cashier

Requirements

Server

Go 1.10 or 1.11, though it may work with earlier versions.

Client

  • Go 1.10 or 1.11 or later, though it may work with earlier versions.
  • OpenSSH 5.6 or newer.
  • A working SSH agent (note that the GPG agent does not handle certificates)

Note: Cashier has only been tested on macOS and Linux.

Configuration

Configuration is divided into different sections: server, auth, ssh, and aws.

server

  • address : string. IP address to listen on. If unset the server listens on all addresses.
  • port : int. Port to listen on.
  • user : string. User to which the server drops privileges to. Note Dropping privileges might not work as expected as some threads may retain their privileges due to the limitations of the Go runtime.
  • cookie_secret: string. Authentication key for the session cookie. This can be a secret stored in a vault using the form /vault/path/key e.g. /vault/secret/cashier/cookie_secret.
  • csrf_secret: string. Authentication key for CSRF protection. This can be a secret stored in a vault using the form /vault/path/key e.g. /vault/secret/cashier/csrf_secret.
  • http_logfile: string. Path to the HTTP request log. Logs are written in the Common Log Format. The only valid destination for logs is a local file path.

github

  • oauth_client_id : string. Oauth Client ID.
  • oauth_client_secret : string. Oauth secret.
  • oauth_callback_url : string. URL that the Oauth provider will redirect to after user authorisation. The path is hardcoded to "/auth/callback" in the source.
  • users_whitelist : array of strings. Optional list of whitelisted GitHub usernames.
  • orgs_whitelist : array of strings. Optional list of whitelisted GitHub orgs.

ssh

  • signing_key: string. Path to the certificate signing ssh private key. Use ssh-keygen to create the key and store it somewhere safe. See also the note on files above.
  • additional_principals: array of string. By default certificates will have one principal set - the username portion of the requester's email address. If additional_principals is set, these will be added to the certificate e.g. if your production machines use shared user accounts.
  • max_age: string. If set the server will not issue certificates with an expiration value longer than this, regardless of what the client requests. Must be a valid Go time.Duration string.
  • permissions: array of string. Specify the actions the certificate can perform. See the -O option to ssh-keygen(1) for a complete list. e.g. permissions = ["permit-pty", "permit-port-forwarding", force-command=/bin/ls", "source-address=192.168.0.0/24"]

Usage

Cashier comes in two parts, a cli and a server.
The server is configured using a HCL configuration file - example.

For the server you need the following: - A new ssh private key. Generate one using ssh-keygen - e.g. ssh-keygen -f ssh_ca - this is your CA signing key. At this time Cashier supports RSA, ECDSA and Ed25519 keys. Important This key should be kept safe - ANY ssh key signed with this key will be able to access your machines. - OAuth (Google or GitHub) credentials. You may also need to set the callback URL when creating these.

Using cashier client

Once the server is up and running you'll need to configure your client.
The client is configured using either a HCL configuration file - example - or command-line flags.

  • --ca CA server (default "http://localhost:10000").
  • --config Path to config file (default "~/.cashier.conf").
  • --key_size Key size. Ignored for ed25519 keys (default 2048).
  • --key_type Type of private key to generate - rsa, ecdsa or ed25519 (default "rsa").
  • --key_file_prefix Prefix for filename for SSH keys and cert (optional, no default). The public key is put in a file with id_<id>.pub appended to it; the public cert file in a file with id_<id>-cert.pub appended to it. The private key is stored in a file with id_<id> appended to it. is taken from the id stored on the server.
  • --validity Key validity (default 24h).

Running the cashier cli tool will open a browser window at the configured CA address. The CA will redirect to the auth provider for authorisation, and redirect back to the CA where the access token will printed.
Copy the access token. In the terminal where you ran the cashier cli paste the token at the prompt.
The client will then generate a new ssh key-pair and send the public part to the server (along with the access token).
Once signed the client will install the key and signed certificate in your ssh agent. When the certificate expires it will be removed automatically from the agent.

If you set key_file_prefix then the public key and public cert will be written to the files that start with key_file_prefix and end with .pub and -cert.pub respectively.

In your ssh_config you can load these for a given host with the IdentityFile and CertificateFile. However prior to OpenSSH version 7.2p1 the latter option didn't exist. In that case you could specify ~/.ssh/some-identity as your IdentityFile and OpenSSH would look in ~/.ssh/some-identity.pub and ~/.ssh/some-identity-cert.pub.

Starting with 7.2p1 the two options exist in the ssh_config and you'll need to use the full paths to them. Note that like these ssh_config options, the key_file_prefix supports tilde expansion.

Configuring SSH

The ssh client needs no special configuration, just a running ssh-agent.
The ssh server needs to trust the public part of the CA signing key. Add something like the following to your sshd_config:

TrustedUserCAKeys /etc/ssh/ca.pub

where /etc/ssh/ca.pub contains the public part of your signing key.

Future Work

  • Host certificates - only user certificates are supported at present.

Contributing

Pull requests are welcome but forking Go repos can be a pain. This is a good guide to forking and creating pull requests for Go projects.
Dependencies are vendored with govendor.