Cis Mongodb 3.2 Benchmark
Cis Mongodb 3.2 Benchmark
1 | P a g e
Table of Contents
Overview ...................................................................................................................................................................... 4
Intended Audience .............................................................................................................................................. 4
Consensus Guidance ........................................................................................................................................... 4
Typographical Conventions ............................................................................................................................ 5
Scoring Information ............................................................................................................................................ 5
Profile Definitions ................................................................................................................................................ 6
Acknowledgements ............................................................................................................................................. 7
Recommendations .................................................................................................................................................... 8
1 Installation and Patching .............................................................................................................................. 8
1.1 Ensure the appropriate MongoDB software version/patches are installed
(Scored) .......................................................................................................................................................... 8
2 Authentication ................................................................................................................................................ 10
2.1 Ensure that authentication is enabled for MongoDB databases (Scored) .............. 10
2.2 Ensure that MongoDB does not bypass authentication via the localhost exception
(Scored) ....................................................................................................................................................... 12
2.3 Ensure authentication is enabled in the sharded cluster (Scored) ............................ 14
2.4 Ensure an industry standard authentication mechanism is used (Scored) ........... 16
3 Access Control ................................................................................................................................................ 18
3.1 Ensure that role-based access control is enabled and configured appropriately
(Scored) ....................................................................................................................................................... 18
3.2 Ensure that MongoDB only listens for network connections on authorized
interfaces (Scored) ................................................................................................................................. 20
3.3 Ensure that MongoDB is run using a non-privileged, dedicated service account
(Scored) ....................................................................................................................................................... 22
3.4 Ensure that each role for each MongoDB database is needed and grants only the
necessary privileges (Scored) ............................................................................................................ 24
3.5 Review User-Defined Roles (Scored) ...................................................................................... 26
3.6 Review Superuser/Admin Roles (Scored) ............................................................................ 28
4 Data Encryption ............................................................................................................................................. 30
4.1 Ensure TLS or SSL protects all network communications (Scored) .......................... 30
2 | P a g e
4.2 Ensure Federal Information Processing Standard (FIPS) is enabled (Scored) ..... 32
5 Auditing ............................................................................................................................................................. 34
5.1 Ensure that system activity is audited (Scored) ................................................................ 34
5.2 Ensure that audit filters are configured properly (Scored) .......................................... 36
5.3 Ensure that logging captures as much information as possible (Not Scored) ...... 38
5.4 Ensure that new entries are appended to the end of the log file (Not Scored) .... 40
6 Operating System Hardening ................................................................................................................... 41
6.1 Mongodb Database Running with Least Privileges (Scored) ....................................... 41
6.2 Ensure that MongoDB uses a non-default port (Scored) ............................................... 43
6.3 Ensure that operating system resource limits are set for MongoDB (Not Scored)
......................................................................................................................................................................... 44
6.4 Ensure that server-side scripting is disabled if not needed (Not Scored) .............. 46
6.5 Ensure The 'test' database is not installed (Not Scored) ................................................ 47
7 File Permissions ............................................................................................................................................. 48
7.1 Ensure that key file permissions are set correctly (Scored) ......................................... 48
7.2 Ensure that database file permissions are set correctly (Scored) ............................. 50
Appendix: Change History ................................................................................................................................. 53
3 | P a g e
Overview
This document, CIS MongoDB Benchmark, provides prescriptive guidance for establishing a
secure configuration posture for MongoDB version 3.2. This guide was tested against
MongoDB 3.2 running on Ubuntu Linux 14.04, but applies to other linux distributions as
well. To obtain the latest version of this guide, please visit
http://benchmarks.cisecurity.org. If you have questions, comments, or have identified
ways to improve this guide, please write us at [email protected].
Intended Audience
This document is intended for system and application administrators, security specialists,
auditors, help desk, and platform deployment personnel who plan to develop, deploy,
assess, or secure solutions that incorporate MongoDB.
Consensus Guidance
This benchmark was created using a consensus review process comprised of subject matter
experts. Consensus participants provide perspective from a diverse set of backgrounds including
consulting, software development, audit and compliance, security research, operations,
government, and legal.
Each CIS benchmark undergoes two phases of consensus review. The first phase occurs during
initial benchmark development. During this phase, subject matter experts convene to discuss,
create, and test working drafts of the benchmark. This discussion occurs until consensus has been
reached on benchmark recommendations. The second phase begins after the benchmark has been
published. During this phase, all feedback provided by the Internet community is reviewed by
the consensus team for incorporation in the benchmark. If you are interested in participating in
the consensus process, please visit https://community.cisecurity.org.
4 | P a g e
Typographical Conventions
The following typographical conventions are used throughout this guide:
Convention Meaning
Stylized Monospace font Used for blocks of code, command, and script examples. Text
should be interpreted exactly as presented.
Monospace font Used for inline code, commands, or examples. Text should be
interpreted exactly as presented.
<italic font in brackets> Italic texts set in angle brackets denote a variable requiring
substitution for a real value.
Italic font Used to denote the title of a book, article, or other publication.
Note Additional information or caveats
Scoring Information
A scoring status indicates whether compliance with the given recommendation impacts the
assessed target's benchmark score. The following scoring statuses are used in this benchmark:
Scored
Failure to comply with "Scored" recommendations will decrease the final benchmark score.
Compliance with "Scored" recommendations will increase the final benchmark score.
Not Scored
Failure to comply with "Not Scored" recommendations will not decrease the final benchmark
score. Compliance with "Not Scored" recommendations will not increase the final benchmark
score.
5 | P a g e
Profile Definitions
The following configuration profiles are defined by this Benchmark:
Items in this profile apply to MongoDB running on Linux and intend to:
This profile extends the “Level 1 - MongoDB on Linux” profile. Items in this profile
apply to MongoDB running on Linux and exhibit one or more of the following
characteristics:
6 | P a g e
Acknowledgements
This benchmark exemplifies the great things a community of users, vendors, and subject matter
experts can accomplish through consensus collaboration. The CIS community thanks the entire
consensus team with special recognition to the following individuals who contributed greatly to
the creation of this guide:
Author
Vinesh Redkar Security Consultant
Contributor
Chris Bielinski
Philippe Langlois, Center for Internet Security
Pralhad Chaskar
Editor
Karen Scarfone
Tim Harrison CISSP, ICP, Center for Internet Security
7 | P a g e
Recommendations
1 Installation and Patching
This section provides guidance on ensuring that the MongoDB software is up to date to
eliminate easily avoidable vulnerabilities.
Description:
The MongoDB installation version, along with the patch level, should be the most recent
that is compatible with the organization's operational needs.
Rationale:
Using the most recent MongoDB software version along with all applicable patches helps
limit the possibilities for vulnerabilities in the software. The installation version and/or
patches applied should be selected according to the needs of the organization. At minimum,
the software version should be supported.
Note: As of October 2016, only MongoDB versions 3.0 and 3.2 are still supported.
8 | P a g e
Audit:
Run the following command from within the MongoDB shell to determine if the MongoDB
software version complies with your organization’s operational needs:
> db.version()
Remediation:
Default Value:
References:
1. http://docs.mongodb.org/manual/tutorial/upgrade-revision/
2. https://docs.mongodb.com/manual/release-notes/
3. https://www.mongodb.com/download-center#community
4. https://www.mongodb.com/support-policy
CIS Controls:
9 | P a g e
2 Authentication
This section contains recommendations for requiring authentication before allowing access
to the MongoDB database.
Description:
This setting ensures that all clients, users, and/or servers are required to authenticate
prior to being granted access to the MongoDB database.
Rationale:
Failure to authenticate clients, users, and/or servers can enable unauthorized access to the
MongoDB database and can prevent tracing actions back to their sources.
Audit:
Run the following command to verify whether authentication is enabled (Auth value set to
True) on the MongoDB server.
10 | P a g e
Remediation:
• Create the system user administrator, ensuring that its password meets organizationally-
defined password complexity requirements.
use admin
db.createUser(
{
user: "siteUserAdmin",
pwd: "password",
roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]
}
)
Default Value:
Not configured
References:
1. https://www.mongodb.com/blog/post/improved-password-based-authentication-
mongodb-30-scram-explained-part-1
2. https://www.owasp.org/index.php/Authentication_Cheat_Sheet
CIS Controls:
11 | P a g e
2.2 Ensure that MongoDB does not bypass authentication via the
localhost exception (Scored)
Profile Applicability:
Description:
MongoDB should not be set to bypass authentication via the localhost exception. The
localhost exception allows you to enable authorization before creating the first user in the
system.
Note: This recommendation only applies when there are no users created in the MongoDB
instance.
Rationale:
Disabling this exception will prevent unauthorized local access to the MongoDB database. It
will also ensure traceability of each database activity to a specific user.
Audit:
To verify the localhost exception is disabled, run the following command to ensure that
enableLocalhostAuthBypass is set to 0 (false):
Remediation:
setParameter:
enableLocalhostAuthBypass: false
Default Value:
Not configured
References:
1. http://docs.mongodb.org/manual/core/authentication/#localhost-exception
12 | P a g e
Notes:
The --setParameter option on the command line may also be used to configure this;
however, having it in the config file may provide greater confidence that this setting is
configured correctly in every instance.
CIS Controls:
13 | P a g e
Description:
Authentication is enabled in a sharded cluster when keyfiles are created and configured for
all components. This ensures that every client that accesses the cluster must provide
credentials, to include MongoDB instances that access each other within the cluster.
Rationale:
Audit:
Run the following command to verify that the keyfile parameter is configured:
Remediation:
keyFile = /srv/mongodb/keyfile
• When starting the component, set --keyFile option, which is an option for both mongos
instances and mongod instances. Set the --keyFile to the key file’s path.
14 | P a g e
Default Value:
Not configured
References:
1. http://docs.mongodb.org/v2.2/administration/sharded-clusters/
CIS Controls:
15 | P a g e
Description:
Rationale:
Audit:
To verify the authentication mechanism in use for MongoDB, run the following commands:
Remediation:
security:
clusterAuthMode: x509
net:
ssl:
mode: requireSSL
PEMKeyFile: <path to TLS/SSL certificate and key PEM file>
CAFile: <path to root CA PEM file>
See the reference section for a link to a detailed procedure for generating the PEMKeyFile
and CAFile.
16 | P a g e
security:
authorization: enabled
setParameter:
authenticationMechanisms: GSSAPI
storage:
dbPath: /opt/mongodb/data
See the reference section for a link to a detailed procedure for establishing the Kerberos
service principal and keytab file.
References:
1. https://docs.mongodb.com/v3.2/tutorial/configure-x509-client-authentication/
2. https://docs.mongodb.com/v3.2/tutorial/control-access-to-mongodb-with-kerberos-
authentication/
3. https://docs.mongodb.com/v3.2/core/kerberos/#kerberos-service-principal
4. https://docs.mongodb.com/v3.2/core/kerberos/#keytab-files
Notes:
Configuring the X.509 certificate and deploying Kerberos is beyond the scope of the
document.
CIS Controls:
17 | P a g e
3 Access Control
This section contains recommendations for restricting access to MongoDB systems.
Description:
Rationale:
When properly implemented, RBAC enables users to carry out a wide range of authorized
tasks by dynamically regulating their actions according to flexible functions. This allows an
organization to control employees’ access to all database tables through RBAC.
Audit:
Connect to MongoDB with the appropriate privileges and run the following command:
> db.getUser()
> db.getRole()
Verify that the appropriate role or roles have been configured for each user.
18 | P a g e
Remediation:
References:
1. http://docs.mongodb.org/manual/tutorial/manage-users-and-roles/
CIS Controls:
19 | P a g e
Description:
Ensuring that MongoDB runs in a trusted network environment involves limiting the
network interfaces on which MongoDB instances listen for incoming connections. Any
untrusted network connections should be dropped by MongoDB.
Rationale:
This configuration blocks connections from untrusted networks, leaving only systems on
authorized and trusted networks able to attempt to connect to the MongoDB. If not
configured, this may lead to unauthorized connections from untrusted networks to
MongoDB.
Audit:
1. Verify that network exposure is limited, review the settings in the MongoDB
configuration file:
iptables –L
Remediation:
Configure the MongoDB configuration file to limit its exposure to only the network
interfaces on which MongoDB instances should listen for incoming connections.
Default Value:
Not configured
20 | P a g e
References:
1. http://docs.mongodb.org/manual/tutorial/configure-linux-iptables-firewall/
2. http://docs.mongodb.org/manual/tutorial/configure-windows-netsh-firewall/
CIS Controls:
21 | P a g e
Description:
The MongoDB service should not be run using a privileged account such as 'root' because
this unnecessarily exposes the operating system to high risk.
Rationale:
Using a non-privileged, dedicated service account restricts the database from accessing the
critical areas of the operating system which are not required by the MongoDB. This will
also mitigate the potential for unauthorized access via a compromised, privileged account
on the operating system.
Audit:
Run the following command to get listing of all mongo instances, the PID number, and the
PID owner.
Remediation:
Default Value:
Not configured
22 | P a g e
References:
1. http://docs.mongodb.org/manual/tutorial/manage-users-and-roles/
CIS Controls:
23 | P a g e
3.4 Ensure that each role for each MongoDB database is needed and
grants only the necessary privileges (Scored)
Profile Applicability:
Description:
Reviewing all roles periodically and eliminating unneeded roles as well as unneeded
privileges from necessary roles helps minimize the privileges that each user has.
Rationale:
Although role-based access control (RBAC) has many advantages for regulating access to
resources, over time some roles may no longer be needed, and some roles may grant
privileges that are no longer needed.
Audit:
Perform the following command to view all roles on the database on which the command
runs, including both built-in and user-defined roles, as well as the privileges granted by
each role. Ensure that only necessary roles are listed and only the necessary privileges are
listed for each role.
db.runCommand(
{
rolesInfo: 1,
showPrivileges: true,
showBuiltinRoles: true
}
)
Remediation:
To revoke specified privileges from the user-defined role on the database where the
command is run. The revokePrivilegesFromRole command has the following syntax:
{
revokePrivilegesFromRole: "<role>",
privileges:
[
{ resource: { <resource> }, actions: [ “<action>", ... ] },
...
],
}
24 | P a g e
References:
1. https://docs.mongodb.com/v3.2/reference/method/db.revokePrivilegesFromRole/
2. https://docs.mongodb.com/v3.2/reference/command/revokePrivilegesFromRole/#dbcmd.r
evokePrivilegesFromRole
Notes:
You must have the dropRole action on a database to drop a role from that database.
CIS Controls:
25 | P a g e
Description:
Reviewing all roles periodically and removing all users from those roles who do not need to
belong to them helps minimize the privileges that each user has.
Rationale:
Although role-based access control (RBAC) has many advantages for regulating access to
resources, over time some users may be assigned to roles that are no longer necessary,
such as a user changing jobs within the organization. Users who have excessive privileges
pose unnecessary risk to the organization.
Audit:
Check each role for each database using one of the following commands.
To specify a role from the current database, specify the role by its name:
Remediation:
To remove a user from one or more roles on the current database, use the following
command:
use <dbName>
db.revokeRolesFromUser( "<username>", [ <roles> ])
References:
1. https://docs.mongodb.com/manual/reference/method/db.revokeRolesFromUser/
2. https://docs.mongodb.com/manual/reference/command/rolesInfo/
3. https://docs.mongodb.com/manual/reference/privilege-actions/#authr.revokeRole
26 | P a g e
Notes:
Logged-in user must have the revokeRole action on a database to revoke a role on that
database. Also, roleInfo works for both user-defined roles and built-in roles.
CIS Controls:
27 | P a g e
Description:
Roles provide several advantages that make it easier to manage privileges in a database
system. Security administrators can control access to their databases in a way that mirrors
the structure of their organizations (they can create roles in the database that map directly
to the job functions in their organizations). The assignment of privileges is simplified.
Instead of granting the same set of privileges to each individual user in a particular job
function, the administrator can grant this set of privileges to a role representing that job
function and then grant that role to each user in that job function.
Rationale:
Reviewing the Superuser/Admin roles within a database helps minimize the possibility of
privileged unwanted access.
Audit:
Superuser roles provide the ability to assign any user any privilege on any database,
which means that users with one of these roles can assign themselves any privilege on any
database:
28 | P a g e
Remediation:
use <dbName>
db.revokeRolesFromUser( "<username>", [ <roles> ])
References:
1. https://docs.mongodb.com/v3.0/reference/built-in-roles/#built-in-roles
2. https://docs.mongodb.com/manual/reference/method/db.revokeRolesFromUser/
CIS Controls:
29 | P a g e
4 Data Encryption
This section contains recommendations for securing data at rest (stored) and data in
motion (transiting) for MongoDB.
Description:
Use TLS or SSL to protect all incoming and outgoing connections. This should include using
TLS or SSL to encrypt communication between mongod and mongos components of a
MongoDB client as well as between all applications and MongoDB.
Rationale:
Audit:
To verify that the server requires SSL or TLS use (net.ssl.mode value set to requireSSL),
run one of the following commands:
cat /etc/mongos.conf | grep –A20 ‘net’ | grep –A10 ‘ssl’ | grep ‘mode’
Remediation:
Configure MongoDB servers to require the use of SSL or TLS to encrypt all MongoDB
network communications.
To implement SSL or TLS to encrypt all MongoDB network communication, perform the
following steps:
30 | P a g e
In the configuration file /etc/mongod.conf, set the PEMKeyFile option to the certificate
file’s path and then start the component with this command:
ssl:
mode: requireSSL
PEMKeyFile: /etc/ssl/mongodb.pem
CAFile: /etc/ssl/ca.pem
Or
mongod --sslMode requireSSL --sslPEMKeyFile /etc/ssl/mongodb.pem --sslCAFile
/etc/ssl/ca.pem
Default Value:
Not configured
References:
1. http://docs.mongodb.org/manual/tutorial/configure-ssl/
Notes:
Value Description
preferSSL Connections between servers use TLS/SSL. For incoming connections, the
server accepts both TLS/SSL and non-TLS/non-SSL.
requireSSL The server uses and accepts only TLS/SSL encrypted connections.
CIS Controls:
31 | P a g e
Description:
The Federal Information Processing Standard (FIPS) is a computer security standard used
to certify software modules and libraries that encrypt and decrypt data securely. You can
configure MongoDB to run with a FIPS 140-2 certified library for OpenSSL.
Rationale:
FIPS is industry standard that dictates how data should be encrypted in rest and during
transmission.
Audit:
To verify that the server uses FIPS Mode (net.ssl.FIPSMode value set to true), run
following commands:
To verify FIPS mode is running, check the server log file for a message that FIPS is active:
32 | P a g e
Remediation:
Configuring FIPS mode, ensure that your certificate is FIPS compliant. Run mongod or
mongos instance in FIPS mode.
Make changes to configuration file, to configure your mongod or mongos instance to use
FIPS mode, shut down the instance and update the configuration file with the following
setting:
net:
ssl:
FIPSMode: true
Start mongod or mongos instance with a configuration file.
Default Value:
Not configured
References:
1. https://docs.mongodb.com/v3.2/tutorial/configure-fips/
CIS Controls:
33 | P a g e
5 Auditing
This section contains recommendations related to configuring audit logging in MongoDB.
Description:
Track access and changes to database configurations and data. MongoDB Enterprise
includes a system auditing facility that can record system events (e.g. user operations,
connection events) on a MongoDB instance. These audit records permit forensic analysis
and allow administrators to verify proper controls.
Rationale:
System level logs can be handy while troubleshooting an operational problem or handling a
security incident.
Audit:
To verify that system activity is being audited for MongoDB, run the following command to
confirm the auditLog.destination value is set correctly:
Remediation:
Set the value of auditLog.destination to the appropriate value from the following
options:
syslog
console
To enable auditing and print audit events to standard output (i.e., stdout)
34 | P a g e
Json File
To enable auditing and print audit events to a file in JSON format. Printing audit events to
file in JSON format degrades server performance more than printing to a file in BSON
format.
Bson File
To enable auditing and print audit events to a file in BSON binary format
Default Value:
Not configured
References:
1. http://docs.mongodb.org/manual/tutorial/configure-auditing/
CIS Controls:
6.2 – Ensure Audit Log Settings Support Appropriate Log Entry Formatting
Validate audit log settings for each hardware device and the software installed on it,
ensuring that logs include a date, timestamp, source addresses, destination addresses, and
various other useful elements of each packet and/or transaction. Systems should record
logs in a standardized format such as syslog entries or those outlined by the Common
Event Expression initiative. If systems cannot generate logs in a standardized format, log
normalization tools can be deployed to convert logs into such a format.
35 | P a g e
Description:
MongoDB Enterprise supports auditing of various operations. When enabled, the audit
facility, by default, records all auditable operations as detailed in Audit Event Actions,
Details, and Results. To specify which events to record, the audit feature includes the --
auditFilter option. This check is only for Enterprise editions.
Rationale:
All operations carried out on the database are logged. This helps in backtracking and
tracing any incident that occurs.
Audit:
To verify that audit filters are configured on MongoDB as per the organization’s
requirements, run the following command:
Remediation:
Default Value:
Not configured
References:
1. https://docs.mongodb.com/manual/reference/audit-message/
2. https://docs.mongodb.com/manual/tutorial/configure-audit-filters/
36 | P a g e
CIS Controls:
6.2 – Ensure Audit Log Settings Support Appropriate Log Entry Formatting
Validate audit log settings for each hardware device and the software installed on it,
ensuring that logs include a date, timestamp, source addresses, destination addresses, and
various other useful elements of each packet and/or transaction. Systems should record
logs in a standardized format such as syslog entries or those outlined by the Common
Event Expression initiative. If systems cannot generate logs in a standardized format, log
normalization tools can be deployed to convert logs into such a format.
37 | P a g e
Description:
• connection events
• authentication events
• replication sync activities
• evidence of some potentially impactful commands being run (eg: drop, dropIndexes,
validate)
This information should be logged whenever possible. This check is only for Enterprise
editions.
Rationale:
Audit:
To verify that the SystemLog.quiet option is disabled (value of False), run the following
command:
Remediation:
References:
1. https://docs.mongodb.com/manual/reference/configuration-options/#systemLog.quiet
38 | P a g e
CIS Controls:
6.2 – Ensure Audit Log Settings Support Appropriate Log Entry Formatting
Validate audit log settings for each hardware device and the software installed on it,
ensuring that logs include a date, timestamp, source addresses, destination addresses, and
various other useful elements of each packet and/or transaction. Systems should record
logs in a standardized format such as syslog entries or those outlined by the Common
Event Expression initiative. If systems cannot generate logs in a standardized format, log
normalization tools can be deployed to convert logs into such a format.
39 | P a g e
5.4 Ensure that new entries are appended to the end of the log file (Not
Scored)
Profile Applicability:
Description:
By default, new log entries will overwrite old entries after a restart of the mongod or
Mongols service. Enabling the systemLog.logAppend setting causes new entries to be
appended to the end of the log file rather than overwriting the existing content of the log
when the mongos or mongod instance restarts.
Rationale:
Allowing old entries to be overwritten by new entries instead of appending new entries to
the end of the log may destroy old log data that is needed for a variety of purposes.
Audit:
To verify that new log entries will be appended to the end of the log file after a restart
(systemLog.logAppend value set to true), run the following command:
Remediation:
References:
1. https://docs.mongodb.com/manual/reference/configuration-
options/#systemLog.logAppend
CIS Controls:
6.3 – Ensure Audit Logging Systems Are Not Subject to Loss (i.e. rotation/archive)
Ensure that all systems that store logs have adequate storage space for the logs generated
on a regular basis, so that log files will not fill up between log rotation intervals. The logs
must be archived and digitally signed on a periodic basis.
40 | P a g e
Description:
This setting ensures that monogd service run as least privilege user.
Rationale:
Anyone who has been a victim of viruses, worms, and other malicious software (malware)
will appreciate the security principle of “least privilege.” If all processes ran with the
smallest set of privileges needed to perform the user's tasks, it would be more difficult for
malicious and annoying software to infect a machine and propagate to other machines.
Audit:
Remediation:
Create a user which is only used for running Mongodb and directly related processes. This
user must not have administrative rights to the system.
41 | P a g e
CIS Controls:
42 | P a g e
Description:
Changing the port used by MongoDB makes it harder for attackers to find the database and
target it.
Rationale:
Standard ports are used in automated attacks and by attackers to verify which applications
are running on a server.
Audit:
To verify the port number used by MongoDB, execute the following command and ensure
that the port number is not 27017:
Remediation:
Change the port for MongoDB server to a number other than 27017.
Impact:
Hackers frequently scan IP addresses for commonly used ports, so it's not uncommon to
use a different port to "fly under the radar". This is just to avoid detection, other than that
there is no added safety by using a different port.
References:
1. https://docs.mongodb.com/manual/reference/default-mongodb-port/
CIS Controls:
43 | P a g e
6.3 Ensure that operating system resource limits are set for MongoDB
(Not Scored)
Profile Applicability:
Description:
Operating systems provide ways to limit and control the usage of system resources such as
threads, files, and network connections on a per-process and per-user basis
Rationale:
These ulimits prevent a single user from consuming too many system resources.
Audit:
To verify the resource limits set for MongoDB, run the following commands.
ps -ef|grep mongod
cat /proc/1322/limits
Remediation:
Every deployment may have unique requirements and settings. Recommended thresholds
and settings are particularly important for MongoDB deployments:
Restart the mongod and mongos instances after changing the ulimit settings to ensure that
the changes take effect.
44 | P a g e
Default Value:
Not configured
References:
1. https://docs.mongodb.com/manual/reference/ulimit/#recommended-ulimit-settings
45 | P a g e
Description:
MongoDB supports the execution of JavaScript code for certain server-side operations:
mapReduce, group, and $where. If you do not use these operations, server-side scripting
should be disabled.
Rationale:
If server-side scripting is not needed and is not disabled, this introduces unnecessary risk
that an attacker may take advantage of insecure coding.
Audit:
Remediation:
If server-side scripting is not required, disable it by using the --noscripting option on the
command line.
Default Value:
Enabled
CIS Controls:
46 | P a g e
Description:
The default MongoDB installation comes with an unused database called 'test'. It is
recommended that the test database be dropped.
Rationale:
The test database can be accessed by all users and can be used to consume system
resources. Dropping the test database will reduce the attack surface of the MongoDB
server.
Audit:
show dbs
Remediation:
use test
db.dropDatabase()
CIS Controls:
47 | P a g e
7 File Permissions
This section provides recommendations for setting permissions for the key file and the
database file.
7.1 Ensure that key file permissions are set correctly (Scored)
Profile Applicability:
Description:
The key file is used for authentication in the sharded cluster. Implementing proper file
permissions on the key file will prevent unauthorized access to it.
Rationale:
Protecting the key file strengthens authentication in the sharded cluster and prevents
unauthorized access to the MongoDB database.
Audit:
To verify the permissions for the MongoDB key file, run the following command:
Remediation:
Set the keyFile ownership to mongodb user and remove other permissions by executing
these commands:
48 | P a g e
Default Value:
Not configured
References:
1. https://docs.mongodb.com/v3.0/tutorial/enable-internal-authentication/
CIS Controls:
49 | P a g e
7.2 Ensure that database file permissions are set correctly (Scored)
Profile Applicability:
Description:
Rationale:
Audit:
To verify that the permissions for the MongoDB database file are configured securely, run
the following commands.
Use the database location as part of the following command to view and verify the
permissions set for the database file:
ls –l /var/lib/mongodb
Remediation:
Set ownership of the database file to mongodb user and remove other permissions using
the following commands:
Default Value:
Not configured
CIS Controls:
51 | P a g e
6.3 Ensure that operating system resource limits are set for
o o
MongoDB (Not Scored)
6.4 Ensure that server-side scripting is disabled if not needed (Not
o o
Scored)
6.5 Ensure The 'test' database is not installed (Not Scored) o o
7 File Permissions
7.1 Ensure that key file permissions are set correctly (Scored) o o
7.2 Ensure that database file permissions are set correctly (Scored) o o
52 | P a g e
53 | P a g e