I have a script that makes various API calls. This script will be run unassisted, so I need to store the login credentials to these and other services in a local config file.
I'm pretty sure it's a horrible idea to store this sensitive data in plaintext in a .txt file. How can I do this more securely?
I saw a similar question but the answers were very C# specific. How to securely save username/password (local)?