Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Password Policy: Known Passwords Check Proposal: Difference between revisions

From MoodleDocs
(Created page with "= Status = Very initial stage - project proposal. = Introduction = Moodle 4.0 supports "Password policy" configurable in Site Administration under Security -> Site security...")
 
No edit summary
Line 7: Line 7:
Moodle 4.0 supports "Password policy" configurable in Site Administration under Security -> Site security settings.
Moodle 4.0 supports "Password policy" configurable in Site Administration under Security -> Site security settings.


The following checks can be applied to measure the password quality:


* Password length
* Digits
* Lowercase letters
* Uppercase letters
* Non-alphanumeric characters
* Consecutive identical characters
* Password rotation limit
NIST Special Publication 800-63B, "Digital Identity Guidelines"
https://pages.nist.gov/800-63-3/sp800-63b.html#memsecretver
When processing requests to establish and change memorized secrets, verifiers SHALL compare the prospective secrets against a list that contains values known to be commonly-used, expected, or compromised. For example, the list MAY include, but is not limited to:
    Passwords obtained from previous breach corpuses.
    Dictionary words.
    Repetitive or sequential characters (e.g. ‘aaaaaa’, ‘1234abcd’).
    Context-specific words, such as the name of the service, the username, and derivatives thereof.
If the chosen secret is found in the list, the CSP or verifier SHALL advise the subscriber that they need to select a different secret, SHALL provide the reason for rejection, and SHALL require the subscriber to choose a different value.


= Approach =
= Approach =

Revision as of 15:04, 27 April 2022

Status

Very initial stage - project proposal.

Introduction

Moodle 4.0 supports "Password policy" configurable in Site Administration under Security -> Site security settings.

The following checks can be applied to measure the password quality:

  • Password length
  • Digits
  • Lowercase letters
  • Uppercase letters
  • Non-alphanumeric characters
  • Consecutive identical characters
  • Password rotation limit

NIST Special Publication 800-63B, "Digital Identity Guidelines"

https://pages.nist.gov/800-63-3/sp800-63b.html#memsecretver

When processing requests to establish and change memorized secrets, verifiers SHALL compare the prospective secrets against a list that contains values known to be commonly-used, expected, or compromised. For example, the list MAY include, but is not limited to:

   Passwords obtained from previous breach corpuses.
   Dictionary words.
   Repetitive or sequential characters (e.g. ‘aaaaaa’, ‘1234abcd’).
   Context-specific words, such as the name of the service, the username, and derivatives thereof.

If the chosen secret is found in the list, the CSP or verifier SHALL advise the subscriber that they need to select a different secret, SHALL provide the reason for rejection, and SHALL require the subscriber to choose a different value.

Approach

Unresolved issues/ideas

Tasks