開発者は、ユーザー名とパスワードを使用して次のサービスを認証する Web アプリケーションを開発しています。ユーザー資格情報は、アプリケーションでいつでも使用できる必要があります。開発者は、自動化コードで使用される認証資格情報を格納するための安全な方法を選択して実装する必要があります。 セキュリティ リスクを最小限に抑えるには、どのパスワード処理方法を使用する必要がありますか?
正解:B
Storing the username and password in a separate configuration file can potentially expose the credentials to unauthorized users if the file is not properly secured. It is generally more secure to store sensitive information, such as passwords, in a secure storage system, such as a vault, rather than in a configuration file or in code.