STIGhubSTIGhub
STIGsRMF ControlsCompare
STIGhub— A free STIG search and compliance tool·STIGs updated 3 days ago
Powered by Pylon·Privacy·Terms·© 2026 Beacon Cloud Solutions, Inc.
← Back to MongoDB Enterprise Advanced 4.x Security Technical Implementation Guide

V-252150

CAT I (High)

MongoDB must enforce approved authorizations for logical access to information and system resources in accordance with applicable access control policies.

Rule ID

SV-252150r960792_rule

STIG

MongoDB Enterprise Advanced 4.x Security Technical Implementation Guide

Version

V1R4

CCIs

CCI-000213

Discussion

MongoDB must enforce approved authorizations for logical access to information and system resources in accordance with applicable access control policies.

Check Content

The MongoDB administrator must ensure that additional application access control is enforced. 

Review the system documentation to determine the required levels of protection for MongoDB server securables by type of login. 

Review the permissions actually in place on the server. If the actual permissions do not match the documented requirements, this is a finding.

Run MongoDB command to view roles and privileges in a particular database:

 use database
 db.getRoles(
    {
      rolesInfo: 1,
      showPrivileges:true,
      showBuiltinRoles: true
    }
)

Fix Text

Use 
createRole(), 
updateRole(), 
dropRole(), 
grantRole() statements 
to add and remove permissions on MongoDB serverl securables, bringing them into line with the documented requirements.

MongoDB commands for role management can be found here:
https://docs.mongodb.com/v4.4/reference/method/js-role-management/