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 5 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to MongoDB Enterprise Advanced 7.x Security Technical Implementation Guide

V-265942

CAT II (Medium)

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

Rule ID

SV-265942r1028817_rule

STIG

MongoDB Enterprise Advanced 7.x Security Technical Implementation Guide

Version

V1R1

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

To verify that authentication and Role-Based Access Controls (RBAC) is configured correctly and restrictions are being enforced, create a test user and a custom role, and then confirm expected operations:

Once authenticated as a DBA administrator, use db.createUser() to create an additional user.

The following operation adds a user "myTester" to the test database who has read-only access on the test database:

> use test
> db.createUser(
   {
      user: "myTester", pwd: <password>,
      roles: [
         { role: "read", db: "test" }
      ]
    }
 )

Log out and then back in as the "test" database user. Issue the following to attempt to write to the test database with a read-only privilege:

> use test
> db.testCollection.insertOne( { x: 1 } )

This operation will fail with an error similar to the following:

"MongoServerError":"not authorized on test to execute command"{
   "insert":"testCollection",
   "documents":[
      {
         "x":1,
         "_id":"ObjectId(""6500b96d1114d3a3ba7dda39"")"
      }
   ],
   "ordered":true,
   "lsid":{
      "id":"UUID(""6cb3b9af-1ddc-446c-b0e0-bc9bf22807fa"")"
   },
   "$db":"test"
}

If the operation does not fail, this is a finding.

Fix Text

Locate a machine that can access the MongoDB Security Checklist here: https://www.mongodb.com/docs/v7.0/administration/security-checklist/

Review the MongoDB Security Checklist.

Follow the procedures to enable MongoDB access control here: https://www.mongodb.com/docs/v7.0/tutorial/enable-authentication/#enable-access-control