SlideShare a Scribd company logo
Lead SecurityEngineer,MongoDB
Andreas Nilsson
#MongoDBWorld
Creating a single view:

Securing the Application
How can we make data accessible securely?
Securing the Application: Agenda
Securing a Database Access Control
Data Protection Auditing
The Art of Securing a System
“If you know the enemy and know yourself,
you need not fear the result of a hundred battles.
If you know yourself but not the enemy,
for every victory gained you will also suffer a defeat.
If you know neither the enemy nor yourself,
you will succumb in every battle.”
!
Sun Tzu, The Art of War 500 BC
Timeline
Plan and design securityas earlyas possible.
ImplementDesign Test Deploy
YES! NO!
Infrastructure matters
Access Control
ConfigureAuthentication andAuthorization.
ImplementDesign Test Deploy
Access Control
Authentication-Who areyou in MongoDB?
• Application user,administrator,backup job,

monitoring agent.
!
Authorization-What canyou do in MongoDB?
• CRUD operations,configure the database,

manage sharding,user management.
Enable Authentication
Built-in authentication methods
• Password challenge response
• x.509 certificates
Or integrate with existing authentication infrastructure
Enable Authorization
Design
• Determine which types of users exist in the system.
• Match the users to MongoDB roles.Create anycustomized roles.
Deployment
• Start/restart MongoDB with access control enabled.
• Create the desired users.
 Internal Access Control
Server-server authentication use shared keyfile or x.509.
Access Control - Field Level Redaction
Note: Need to understand the application better
Data Protection
Data in transit and data at rest.
ImplementDesign Test Deploy
Data Protection End to End
Data Protection - Transport Encryption
• Possible to protect client-server,server-server communications with SSL.
• Support for commerciallyand internallyissued x.509 certificates
• Possible to run the server in FIPS 140-2 mode.
• Support for mixed SSLand non-SSLclusters.
Data Protection - Transport Encryption
Encrypt communications (SSL)
Authenticate connections (x.509)
Data Protection - Encryption at rest
Alternatives
• Encrypt data client side
• Use partner solution for file and OS level encryption
!
Security Auditing
Monitor securityevents in the system.
ImplementDesign Test Deploy
Security Auditing
The Audit Log
• Securityevents can be written to either the console,the syslog 

or a file (JSON/BSON)
• By default, all events are written to audit log when enabled.
• Events include Authentication failures and some commands.
• Access control is not required for auditing.
• Theyare separate components.
Audit Log Properties
• Can filter based off of different criteria
– Action Type,TimeFrame,IPAddress/Port,Users
• Events Have Total Order Per Connection
• Audit Guarantees (AKAWrites/config)
– Audit event written to disk BEFORE writing to the journal
– Awrite will not complete before it has been audited
What did we talk about?
Securing a Database Access Control
Data Protection Auditing
Some last tips along the way…
1. Do not directlyexpose database servers to the Internet
2. Design and configure access control
3. Enable SSL
4. Disable anyunnecessaryinterfaces
5. Lock down database files and minimize account privileges
Next steps
• MongoDB SecurityManual-
http://docs.mongodb.org/manual/core/security-introduction/
!
• MongoDB SecurityWhitepaper-
http://info.mongodb.com/rs/mongodb/images/
MongoDB_Security_Architecture_WP.pdf
Lead SecurityEngineer,MongoDB
Andreas Nilsson
#MongoDBWorld
ThankYou

More Related Content

Creating a Single View Part 3: Securing Your Deployment