STIGhubSTIGhub
STIGsRMF ControlsCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • RMF Controls
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 3 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to MongoDB Enterprise Advanced 3.x Security Technical Implementation Guide

V-221192

CAT II (Medium)

MongoDB must enforce access restrictions associated with changes to the configuration of MongoDB or database(s).

Rule ID

SV-221192r961461_rule

STIG

MongoDB Enterprise Advanced 3.x Security Technical Implementation Guide

Version

V2R3

CCIs

CCI-001813

Discussion

Failure to provide logical access restrictions associated with changes to configuration may have significant effects on the overall security of the system. When dealing with access restrictions pertaining to change control, it should be noted that any changes to the hardware, software, and/or firmware components of the information system can potentially have significant effects on the overall security of the system. Accordingly, only qualified and authorized individuals should be allowed to obtain access to system components for the purposes of initiating changes, including upgrades and modifications.

Check Content

Review the security configuration of the MongoDB database(s).

If unauthorized users can start the mongod or mongos processes or edit the MongoDB configuration file (default location: /etc/mongod.conf), this is a finding. 

If MongoDB does not enforce access restrictions associated with changes to the configuration of the database(s), this is a finding.

To assist in conducting reviews of permissions, the following MongoDB commands describe permissions of databases and users: 

Permissions of concern in this respect include the following, and possibly others: 
- any user with a role of userAdminAnyDatabase role or userAdmin role 
- any database or with a user have a role or privilege with "C" (create) or "w" (update) privileges that are not necessary

MongoDB commands to view roles in a particular database: 
db.getRoles( { rolesInfo: 1, showPrivileges:true, showBuiltinRoles: true })

Fix Text

Prereq: To view a user's roles, must have the "viewUser" privilege.
https://docs.mongodb.com/v3.4/reference/privilege-actions/ 

Connect to MongoDB.

For each database, identify the user's roles for the database. 

use <database> 
db.getUser("[username]") 

The server will return a document with the user's roles. 

To revoke a user's role from a database use the db.revokeRolesFromUser() method.
https://docs.mongodb.com/v3.4/reference/method/db.revokeRolesFromUser/

To grant a role to a user use the db.grantRolesToUser() method. https://docs.mongodb.com/v3.4/reference/method/db.grantRolesToUser/