Almost every program that we run has access to the environment, so nothing stops them from curling our credentials to some nefarious server.

Why don't we put credentials in files and then pass them to the programs that need them? Maybe coupled with some mechanism that prevents executables from reading any random file except those approved.

you are viewing a single comment's thread
view the rest of the comments
[–] 33 points 3 years ago (2 children)

I have a rule that credentials in environment variables are to only ever be loaded as needed via some sort of secrets manager, optionally adding a wrapper script to do so transparently.

The whole point of passing secrets as environment variables is to avoid having things in files in plain and in known locations easy to scrape up by any malware.

Now we have people going full circle and slapping those into a .env file.

  • source
  • hideshow 4 child comments
  • [–] 3 points 3 years ago (2 children)

    But how do you authenticate to your secret manager? How do you prevent evil scripts from also doing this?

  • source
  • parent
  • hideshow 4 child comments
  • [–] 2 points 3 years ago (1 child)

    I'd be very thankful for an example of your setup. I'm using Bitwardern for browser-related password management, but for convenience scripts I load the credentials as env vars at login through .bash_profile 😅

  • source
  • parent
  • hideshow 2 child comments