Skip to content

Instantly share code, notes, and snippets.

@alficles
Created October 5, 2017 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alficles/a375f64b563993b608e69ec5a75a13be to your computer and use it in GitHub Desktop.
Save alficles/a375f64b563993b608e69ec5a75a13be to your computer and use it in GitHub Desktop.
URI Signing Plugin README

URI Signing Plugin

This remap plugin implements the draft URI Signing protocol documented here: https://tools.ietf.org/html/draft-ietf-cdni-uri-signing-12 .

It takes a single argument: the name of a config file that contains key information.

Nota bene: Take care in ordering the plugins. In general, this plugin should be first on the remap line. This is for two reasons. First, if no valid token is present, it is probably not useful to continue processing the request in future plugins. Second, and more importantly, the signature should be verified before any other plugins modify the request. If another plugin drops or modifies the query string, the token might be missing entirely by the time this plugin gets the URI.

Config

The config file should be a JSON object that maps issuer names to JWK-sets. Exactly one of these JWK-sets must have an additional member indicating the renewal key.

{
  "Kabletown URI Authority": {
    "renewal_kid": "Second Key",
    "keys": [
      {
        "alg": "HS256",
        "kid": "First Key",
        "kty": "oct",
        "k": "Kh_RkUMj-fzbD37qBnDf_3e_RvQ3RP9PaSmVEpE24AM"
      },
      {
        "alg": "HS256",
        "kid": "Second Key",
        "kty": "oct",
        "k": "fZBpDBNbk2GqhwoB_DGBAsBxqQZVix04rIoLJ7p_RlE"
      }
    ]
  }
}

If there is not precisely one renewal key, the plugin will not load.

Although the kid and alg parameters are optional in JWKs generally, both members must be present in keys used for URI signing.

Usage

The URI signing plugin will block all requests that do not bear a valid JWT, as defined by the URI Signing protocol. Clients that do not present a valid JWT will receive a 403 Forbidden response, instead of receiving content.

Tokens will be found in either of these places:

  • A query parameter named URISigningPackage. The value must be the JWT.
  • A cookie named URISigningPackage. The value of the cookie must be the JWT.

Path parameters will not be searched for JWTs.

Supported Claims

The following claims are understood:

  • iss: Must be present. The issuer is used to locate the key for verification.
  • sub: Validated last, after key verification. Only uri-regex is supported!
  • exp: Expired tokens are not valid.
  • iat: May be present, but is not validated.
  • cdniv: Must be missing or 1.
  • cdnistt: If present, must be 1.
  • cdniets: If cdnistt is 1, this must be present and non-zero.

Unsupported Claims

These claims are not supported. If they are present, the token will not validate:

  • aud
  • nbf
  • jti

In addition, the sub containers of uri, uri-pattern, and uri-hash are not supported.

Token Renewal

If the cdnistt and cdniets claims are present, the token will be renewed. The new token will be returned via a Set-Cookie header as a session cookie.

However, instead of setting the expiration to be cdniets seconds from the expiration of the previous cookie, it is set to cdniets seconds from the time it was validated. This is to prevent a crafty client from repeatedly renewing tokens in quick succession to create a super-token that lasts long into the future, thereby circumventing the intent of the exp claim.

JOSE Header

The JOSE header of the JWT should contain a kid parameter. This is used to quickly select the key that was used to sign the token. If it is provided, only the key with a matching kid will be used for validation. Otherwise, all possible keys for that issuer must be tried, which is considerably more expensive.

Building

To build from source, you will need these libraries installed:

… as well as the gcc toolchain.

Run make and the uri_signing.so file will appear in the current directory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment