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.

  • _e____b@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    11 months ago

    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 😅

    • Max-P@lemmy.max-p.me
      link
      fedilink
      arrow-up
      4
      ·
      11 months ago

      Basically just have each sets of credentials in a script, and whenever you need to use something that needs a key, you source the script you need first.

      Then each of those scripts are something like

      export MY_API_KEY="$(bw get password whatever)"