Spring Boot Misconfiguration: MongoDB credentials stored in the properties file
Invicti detected that the Spring Boot web application is storing MongoDB credentials in plain text in the properties files via spring.data.mongodb.password
. It's not recommended to store plain text passwords in configuration files.
An attacker that is able to read the properties files has access to all the credentials stored in this file and could use this information to conduct further attacks.
It's recommended to encrypt the credentials using a library like Jasypt. By using Jasypt, you can provide encryption for the property sources and the application can decrypt the encrypted properties and retrieve the original values.