Git Product home page Git Product logo

acme-cert-tool's Introduction

acme-cert-tool

Simple one-stop tool to manage X.509/TLS certs and all the ACME CA authorization stuff with minimum dependencies.

Should only work on Linux/*BSD/OSX and possibly WSL, but not Windows Server OSes.

Main features

  • P-384 (secp384r1) ECC keys and certs are supported and the default, with RSA also supported as a fallback option where still necessary (e.g. certs for old clients that can't do ECC).
  • Can issue multiple certificate for diff key types in one command.
  • Single python3 script implementation, only dependent on cryptography.io module.
  • Does not use openssl command-line tools nor ever requires user to run them.
  • Designed with automated non-interactive "setup cert, auto-renewal and forget" operation in mind, all with a single command if possible.
  • Does not do anything with httpd or any other daemons and their configuration.
  • Uses "ACME v2" protocol supported by Let's Encrypt since after April 2018.

Can generate/use/roll-over account keys (ec-384/rsa-2048/rsa-4096, pem pkcs8 or openssl/pkcs1), register/query/deactivate accounts, generate configurable X.509 CSRs (ec-384/rsa-2048/rsa-4096 keys, pem openssl/pkcs1 for certs and keys), sign these through ACME CA.

Hook scripts can be used at multiple points to integrate script into whatever setup (e.g. sync challenge files, reload httpd, process keys, introduce delays, etc), see ./acme-cert-tool.py --hook-list for more info on these.

Usage example

% ./acme-cert-tool.py --debug -gk le-staging.acc cert-issue \
   le-staging.cert.pem /srv/www/.well-known/acme-challenge mydomain.com

EC P-384 (default) account key (along with some metadata, as comments) will be stored in "le-staging.acc" file (note: account key has nothing to do with certificate), certificate (chain) and its key (also P-384 by default) in "le-staging.cert.pem" file.

Can be re-run to generate new certificate there (i.e. renew) with the same account key and domain authorization (-g/--gen-key-if-missing does not regen key files).

To use non-staging server with "legit" intermediate (be sure to check ToS and limits first!), simply add "-s le" there.

When configuring Web Server after that, it should use resulting *.pem as both certificate chain and key (see also -s/--split-key-file option).

Run ./acme-cert-tool.py -h to get more information on all supported commands and options, and e.g. ./acme-cert-tool.py cert-issue -h to see info and options for a specific command.

Installation

Install python3 (3.7+) and cryptography module:

# pacman -S python python-cryptography

Download and run the script:

% curl -O https://raw.githubusercontent.com/mk-fg/acme-cert-tool/master/acme-cert-tool.py
% chmod +x acme-cert-tool.py
% ./acme-cert-tool.py --help

Unless some errors pop-up immediately, everything is installed correctly and ready to use.

There is no need to run this script as root, use -m/--mode, --challenge-file-mode options and ACLs (setfacl -m d:...) to share files between different uids/gids.

Bugs and Vulnerabilities

Ones that I'm aware of wrt either ACME protocol or this specific implementation are listed here, let me know if there are any other relevant problems.

  • Critical vulnerability in JSON Web Encryption (2017-03-13)

    An Invalid Curve Attack on JWE ECDH-ES key agreement.
    Does not affect ACME protocol, as ECDH-ES is not used there at all.
  • Chaining Remote Web Vulnerabilities to Abuse Let's Encrypt (2017-08-29)

    Not strictly a protocol vulnerability, but more of a note on how leaving something like poor path permissions or insecure site uploads which can drop files to e.g. /var/www/htdocs/.well-known/acme-challenge can lead to someone else issuing valid certs for the site for phishing purposes or such - beware.

  • ACME TLS-SNI-01 validation vulnerability (2018-01-12)

    Does not affect this app, as it only uses http-01 validation.
    TLS-SNI-01 itself was immediately disabled due to vulnerability to such attacks.
  • CAA Rechecking Incident (2020-02-29)

    Server-side issue with Let's Encrypt. Revocation of ~3mil certs was planned, but was cancelled when it became apparent that they won't get updated in time.

    Shows that you probably should use -e/--contact-email option if possible, though then again, they didn't go through with the revocation, so maybe not.

  • ACME certificate providers
    • Let's Encrypt

      Original public Certificate Authority, issuing certificates for websites via ACME protocol to anyone at no cost.

      Supports IETF v2 version of ACME protocol, as described in RFC 8555.

    • ZeroSSL - another cert provider.
  • RFC 8555 describing ACME protocol
  • Let's Encrypt "Chain of Trust" page

    Links to LE root and intermediate certificates, which should be supplied in resulting PEM files already, and usually shipped in browsers too.

  • ACME client list

    List of clients compatible with Let's Encrypt and similar ACME CA services.

  • certbot

    Official Let's Encrypt client, has a lot of options and plugins to e.g. mess with httpd configuration files, fairly heavyweight.

  • acme-tiny

    200-line Python (2/3) ACME client, main source of inspiration behind this one.

    Fairly bare-bones, have to be supplemented with openssl cli stuff to generate CSRs, relies on parsing openssl cli output, lacks (as of 2017-02-05) elliptic curve key support, etc.

  • easy-rsa

    Good set of scripts to easily setup and maintain local X.509 PKI (e.g. that has nothing to do with global TLS trust roots) - i.e. create CA, intermediates, client/server certs - all with one or two trivial commands, very configurable.

  • Web TLS setup "Best Practices" checklists (updated every few months):
  • EdDSA (ed25519) support info:

Last updated on 2019-10-07, please open an issue if you notice any outdated info/links.

acme-cert-tool's People

Contributors

mk-fg avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.