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
[–] 70 points 3 years ago (2 children)

Environments are per-process. Every program can have its own environment, so don't inject secrets where they're not needed.

I'm using bubblewrap to restrict access to FS.

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

    The environment of other processes is readable in procfs.

    /proc/PID/environ

    Thanks to the permissions it's read-only, and only by the user with which the process runs, but it's still bad, I think

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

    Don't all programs run as the user anyways? That changes nothing on a single user machine

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

    A proper server should have one user per service.

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

    You don't login as service users, they're just a means of taking advantage of the user separation features. They have the login shell set to /bin/false typically.

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

    From a quick search I've just done, the major difference is that /bin/false can't return any text, the only thing it can do as specified via POSIX standards is return false.

    So if you set someone's shell to /bin/nologin there can be some text that says "You're not allowed shell access", similar to what happens if you try to SSH into say GitHub.

    Of course, for a service account that won't be operated by a person, that doesn't matter - so whichever one you use is just whichever the operator thought of first, most likely.

  • source
  • parent