Rule ID
SV-279342r1179447_rule
Version
V1R1
CCIs
If MongoDB were to allow any user to make changes to database structure or logic, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process. Accordingly, only qualified and authorized individuals shall be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications. Unmanaged changes that occur to the database software libraries or configuration can lead to unauthorized or compromised installations.
For each database in MongoDB, run the following command to obtain the roles:
use <database>
db.getRoles(
{
rolesInfo: 1,
showPrivileges:true,
showBuiltinRoles: true
}
)
Run the following command to the roles assigned to users:
use admin
db.system.users.find()
Analyze the output and if any roles or users have unauthorized access, this is a finding. This will vary on an application basis.Use the following commands to remove unauthorized access to a MongoDB database: db.revokePrivilegesFromRole() db.revokeRolesFromUser() MongoDB commands for role management can be found here: https://www.mongodb.com/docs/v8.0/reference/method/js-role-management/