Cryptographic key containers such as keystores should have good security practices, among them:
- The Secretkey and Keystore should be in protected environments.
- The secrets should be aligned with strong password policies (do not use default passwords).
- The Secretkey should not be stored in the source code.
- Passwords to access the Keystore should not be the same as the private password.
Get access to the private keys of the debugging certificates to test the application and understand its operation to generate new attack vectors.
Implement good security practices against Keystore containers.
- Do not store secrets in the source code.
- Change default passwords.
Authenticated attacker from intranet.
⌚ 30 minutes.
Default score using CVSS 3.1. It may change depending on the context of the src.
Default score using CVSS 4.0. It may change depending on the context of the src.
Password access is correctly and unique for all services
server:
port: 8443
ssl:
key-store: classpath:keystore.jks
key-store-password: password.secret
A service is configured with a default password
server:
port: 8443
ssl:
key-store: classpath:keystore.jks
key-store-password: "password"