Skip to content

Commit

Permalink
[DOCS] Updated README.md
Browse files Browse the repository at this point in the history
Signed-off-by: Torben Hansen <derhansen@gmail.com>
  • Loading branch information
derhansen committed Mar 30, 2023
1 parent f9c6b90 commit fb772d5
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions README.md
Expand Up @@ -11,17 +11,34 @@ This extension for TYPO3 CMS contains additional Password Policy validators for

#### Description:

This validator checks, if the given password is part of a known data breach on haveibeenpwned.com
This validator ensures, that the given password is not part of a known data breach on haveibeenpwned.com

#### Options:
#### Options:
* none


#### Usage example
#### Usage example

```
$GLOBALS['TYPO3_CONF_VARS']['SYS']['passwordPolicies']['default']['validators'][\Derhansen\AddPwdPolicy\PasswordPolicy\Validator\PwnedPasswordValidator::class] = [
'options' => [],
'excludeActions' => [],
];
```

### Does not contain username

#### Description:

This validator ensures, that the given password does not contain the users `username`.

#### Options:
* none

#### Usage example

```
$GLOBALS['TYPO3_CONF_VARS']['SYS']['passwordPolicies']['default']['validators'][\Derhansen\AddPwdPolicy\PasswordPolicy\Validator\NotUsernameValidator::class] = [
'options' => [],
'excludeActions' => [],
];
```

0 comments on commit fb772d5

Please sign in to comment.