Skip to main content

A stateless API proxy

Project description

Magic API Proxy

This is a stateless API proxy that allows creation and use of access-limited API tokens.

Basically, it's identity and access management for API tokens.

Why is this useful?

GitHub's API tokens (or other APIs, like DigitalOcean's) do not allow fine-grained control over which actions a token can perform (see this Dear GitHub issue). For example, you basically have to create a token that has full control over a repository to allow a token to just apply labels to issues.

This can be problematic. When you have many jobs, processes, and/or bots interacting with the GitHub API you increase the likelihood that a token could be compromised and tokens with broad permissions have very high consequences.

This proxy allows you to create API tokens with fine-grained permissions (a magic token) and then talk to an API using those magic tokens through a proxy. The proxy validates the magic token is allows to perform the requested action and then forwards the request to the API using the real API token.

What does stateless mean?

This proxy requires no backing storage and stores all of its state in the magic token itself. Although the plugin system permits to add a stateful layer if you so wish. e.g. allowing a token to create a record on a DNS provider, and delete it afterwards, but not delete any other record. TODO: document plugin system

What? How?

The proxy uses asymmetric cryptography (a public and private key pair) and JWTs to encode its state into the magic token.

Each magic token is a simple JWT signed by the proxy's private key with these claims:

{
  "iat": 1541616032,
  "exp": 1699296032,
  "token": "[long encrypted key]",
  "allowed": [
    "GET /user",
    "GET /repos/theacodes/nox/issues"
  ]
}

The token claim is an encrypted version of the raw API token. It's encrypted using the proxy's public key, so that only the proxy itself can decrypt it (using its private key).

The allowed claim determines what the magic token has access to. This proxy has a basic, rudimentary scope implementation described below

The JWT is generated and signed by the proxy itself using its private key. This means the contents can not be tampered with without invalidating the JWT.

Scoping

By default, this proxy has a simple scope strategy using the format:

METHOD /url/pattern

Where METHOD can be GET, POST, PUT, etc. and /url/pattern can be any regular expression that's used to check the URL.

For instance, to create a token that has access to any repository's issues in someorg, you could do:

GET /repos/someorg/.+?/issues

Usage

TODO

Disclaimer

This is was adaptaed from an unofficial inside-Google project, experimental. This is not a magic bullet for security. You assume all risks when using this project.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

magic-api-proxy-0.1.14.tar.gz (18.1 kB view details)

Uploaded Source

Built Distribution

magic_api_proxy-0.1.14-py3-none-any.whl (21.5 kB view details)

Uploaded Python 3

File details

Details for the file magic-api-proxy-0.1.14.tar.gz.

File metadata

  • Download URL: magic-api-proxy-0.1.14.tar.gz
  • Upload date:
  • Size: 18.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for magic-api-proxy-0.1.14.tar.gz
Algorithm Hash digest
SHA256 a152f14d62e631d440fa94412eb5b931b8172d72d0bdd6ebf501c5cc81a0210a
MD5 41dccd3384cb05af38a7362258735950
BLAKE2b-256 de99a9ceca12836b8ca24667a2132c85beca704191dcfaf4de5103c35f94188f

See more details on using hashes here.

File details

Details for the file magic_api_proxy-0.1.14-py3-none-any.whl.

File metadata

File hashes

Hashes for magic_api_proxy-0.1.14-py3-none-any.whl
Algorithm Hash digest
SHA256 df626f0756e62fc89e592c86d468e2a4bff9efe93cfac2a624252b6165a8a6de
MD5 0d2590367863a0de3030f856d4530009
BLAKE2b-256 61570146b6102468475fbf727eb574d0beefd15458664c18c6e7dbf465b77fb4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page