-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Comments
Maybe use a JWT to sign the request |
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? |
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 |
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. |
It's on the roadmap, no ETA at the moment, feel free to make a PR 👌 |
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? |
I think token authentification is a best solution to easily support upscale and downscale |
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. |
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 😒
The text was updated successfully, but these errors were encountered: