|
|
|
|
|
by jesterpm
1508 days ago
|
|
My bigger concern with credentials in environment variables is that environment variables are broadly accessed through may different frameworks, libraries, etc. If you can convince a library to give you an arbitrary (or all) environment variables, your credentials are leaked. The developer of that particular library may have never even considered that environment variables might contain sensitive data. PHP's phpinfo() function comes to mind immediately: https://www.php.net/manual/en/function.phpinfo.php |
|