slouchpie
Hi all,
Today I had a problem that I needed to persist API keys from a 3rd party. I wanted to persist them in an encrypted way and I documented what I came up with:
If any grizzled veterans on here have some spare time, please read what I have written and tell me one of:
-
I am about to be pwned and all my base captured if I don’t change something critical
-
I have taken an OK approach but it could be a lot better
-
I am a genius and you will give me a million dollars
Even if nobody reads it, maybe this will help somebody else with a similar problem in the future.
P.S. that website is still being built, so forgive any bad formatting.
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project.
My initial shotgu...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 8- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
Aetherus
If it’s a static key that never changes, you can just put it in a config file which only your service can read. If you feel the file system is not secure enough (for example, some dude steals your whole server), you can use LVM to encrypt the whole hard drive with a passphrase only you know.
slouchpie
That’s a good idea. My actual prod implementation is not revealed. I use the env var in the example for “ease of use”.
Encrypting the hard drive is always good advice!
dch
Nice post thanks!
It’s not clear what your “threat model” is (read https://www.usenix.org/system/files/1401_08-12_mickens.pdf for some helpful humour on this BTW).
My threat model is that due to some unexpected bug in our web stack (OS → reverse proxy →
container → phoenix+BEAM) the code & config files are exposed.
I don’t account for state-level actors (govt spies, etc) who can subvert datacenter controls and gain physical access to the servers, for example. We use separate environments and keys for dev/test vs prod, too.
In this scenario I can expect all of these to be exfiltrated (stolen):
The only thing I’d add to your approach is never to store the the actual key in the code or env vars, if possible.
My general approach for securing keys is as follows:
This doesn’t solve the problem but it does make it harder to subvert.
Personally, I prefer APIs where the authentication is added as an HTTP Header (like
Authorization: Bearer abc123deadcafe123as this can be injected outside the container, on valid outbound requests, by a reverse proxy. This way, the container can be spun up without network access at all, no root privileges, and no useful credentials. This puts a lot of trust in the reverse proxy, but it’s not in the direct path of an attacker, so we win a little bit more here. But in your case you have a (very nice) per-user API key so that doesn’t work.It’s also possible to have a key generated on the fly for each invocation of your program, but that’s advanced vault and may be overkill for your needs.
slouchpie
Thanks for the feedback. I don’t understand everything you have written so I bookmarked to read again over the weekend.
slouchpie
OK I understand this now. What deployment platform are you using? AWS?
dch
Very tin foil, we run our own custom setup outside AWS. I think, in total, over 7+ years, we’ve had less downtime than people using AWS have.
slouchpie
I am very interested in this. Are you able to provide details? I would like to know custom deployments, for similar “tin foil” reasons. Maybe you have a blog post or similar describing your setup?
slouchpie
JFYI I moved domain. New link is here: Symmetric Encryption with ExCrypto in Elixir/Phoenix<!-- --> | Peaceful Programming