Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API authentification #10

Open
Maxou44 opened this issue Feb 27, 2019 · 8 comments
Open

API authentification #10

Maxou44 opened this issue Feb 27, 2019 · 8 comments
Labels
enhancement New feature or request

Comments

@Maxou44
Copy link
Member

Maxou44 commented Feb 27, 2019

Introduce a handshake between the load balancer and the transcoder (based on a secret ?), actually someone can register as transcoder on your laod balancer, it sucks a bit for the security 😒

@drouarb
Copy link
Member

drouarb commented Feb 27, 2019

Maybe use a JWT to sign the request

@Maxou44
Copy link
Member Author

Maxou44 commented Feb 27, 2019

JWT can be great solution to be sure the request wasn't edited but I don't see how it could help us to know if it's a "real transcoder" instead of someone trying to call the API?
It's necessary to have a secret shared between transcoders and the load balancer no?

@drouarb
Copy link
Member

drouarb commented Feb 27, 2019

I’m not sure but I think since JWT use a HMAC signature, we can sign a query with a shared secret, it prevent from sending the token directly in query, also we can force to have a date header to prevent someone reusing the query if he stole it with a MITM Attack, finally, it prevents from editing the content of the request

@davidjameshowell
Copy link

Has any plans been made on if this will be executed in the future? Even a simple password handshake would be nice in the interim.

@Maxou44
Copy link
Member Author

Maxou44 commented Apr 15, 2019

It's on the roadmap, no ETA at the moment, feel free to make a PR 👌

@Maxou44 Maxou44 added the enhancement New feature or request label Apr 19, 2019
@magn2o
Copy link

magn2o commented May 28, 2019

I've been tinkering with something (yet unreleased) to this effect within my Docker containers, wherein an environment variable is set containing a list of whitelisted transcoder IPs (TRANSCODE_WHITELIST=) that will populate iptables rules on startup. Perhaps something similar could be introduced within the load balancer? It could simply check all incoming transcoder connections against the whitelist before accepting them?

@Maxou44
Copy link
Member Author

Maxou44 commented May 29, 2019

I think token authentification is a best solution to easily support upscale and downscale

@magn2o
Copy link

magn2o commented May 29, 2019

Still goofing around so no PR yet, but here's rudimentary proof-of-concept for shared authentication: UnicornLoadBalancer, UnicornTranscoder.

A token can either be specified (env SERVER_AUTH) or it will be automatically generated at startup.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants