Skip to content

DOCSP-48592 Security Landing Page #1064

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions source/security.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.. _node-security:

=========
Security
=========
================
Secure Your Data
================

.. contents:: On this page
:local:
Expand Down Expand Up @@ -30,5 +30,10 @@ Security
Overview
--------

MongoDB supports multiple mechanisms that you can use to authenticate your application.
This page contains code examples that show each of these mechanisms.
Learn how to set up security and authentication for your application
in the following sections:

- :ref:`Authentication <node-authentication>`
- :ref:`In-Use Encryption <node-fle>`
- :ref:`TLS Security Protocol <node-tls>`
- :ref:`SOCKS Proxy <node-socks>`
8 changes: 6 additions & 2 deletions source/security/authentication/scram.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ To learn more about the SCRAM version that MongoDB supports,
see the :manual:`SCRAM </core/security-scram/>` section of the {+mdb-server+}
manual.

.. _node-scram-sha-256:

SCRAM-SHA-256
-------------

Expand All @@ -109,8 +111,10 @@ following sample code.
.. literalinclude:: /code-snippets/authentication/sha256.js
:language: javascript

``SCRAM-SHA-1``
---------------
.. _node-scram-sha-1:

SCRAM-SHA-1
-----------

.. note::
``SCRAM-SHA-1`` is the default authentication method for MongoDB versions
Expand Down
Loading